cc2ecce7cfae50326d2e636a58421057ad777eea
[mono.git] / mono / metadata / ChangeLog
1
2 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3
4         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
5         the called function takes an object type argument. Fixes storing or
6         valuetypes across remoting as well as reducing memory usage.
7         * image.c, metadata-internals.h: remove now unused ldfld_remote and
8         stfld_remote wrapper caches.
9
10 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11
12         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
13         is not found.
14
15         * reflection.c (mono_image_register_token): New helper function to save
16         a token->object mapping.        
17
18         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
19         managed code.
20
21         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
22         one dimension arrays. Fixes #367670.
23         (mono_reflection_get_type_internal): Ditto.
24
25 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
26
27         * marshal.c: mono_load_remote_field_new() always returns object.
28         so use the proper signature (fixes bug #366445).
29
30 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
31         
32         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
33         add an 'inline_failure' flag instead.
34
35 2008-03-04  Mark Probst  <mark.probst@gmail.com>
36
37         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
38         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
39         contains the location of "this", used for exception handling.
40
41 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
42
43         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
44         their size on all platforms for perf reasons.
45
46 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
47
48         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
49         object-internal.h
50
51         * object-internal.h: Same.
52
53 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
54
55         * reflection.h: Fix the build I just broke.
56
57 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
58
59         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
60         Test if a token is valid, this remove explicit usage of 
61         MonoDynamicImage::tokens from the verifier code.
62
63         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
64
65         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
66         instead of direct access to MonoDynamicImage::tokens.
67
68 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
69
70         * verify.c (token_bounds_check): Fix the build I just broke.
71
72 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
73
74         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
75
76         * verify.c (verifier_load_method): Fixed the errors message.
77
78         * verify.c (mono_method_verify): Fixed a debug message.
79
80 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
81
82         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
83         mono-perfcounters.h, class-internals.h: support for predefined
84         writable counters, query of categories and counters, bugfixes.
85
86 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
87
88         * verify.c (do_refanytype): Verify the refanytype opcode.
89
90         * verify.c (mono_method_verify): Use do_refanytype.
91
92 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
93
94         * verify.c (do_mkrefany): Verify the mkrefany opcode.
95
96         * verify.c (mono_method_verify): Use do_mkrefany.
97
98 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
99
100         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
101         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
102         implementation.
103
104 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
105
106         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
107         the type load exception.
108
109 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
110
111         * verify.c: Added a few FIXME for method signatures
112
113         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
114         of mono_method_get_signature and get vararg call working. Removed unused
115         checks for return value.
116
117         * verify.c (do_refanyval): Verify the refanyval opcode.
118
119         * verify.c (mono_method_verify): Implemented verification of arglist and
120         use do_refanyval.
121
122 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
123
124         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
125         vtypes to marshal.c.
126
127         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
128         it works for AOT as well.
129
130 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
131
132         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
133         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
134         the system time is adjusted.
135
136 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
137
138         * icall.c, icall-def.h: use the new time functions (fixes the
139         non-monotonic behaviour of TickCount).
140
141 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
142
143         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
144         it breaks the build.
145         
146         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
147         cattr is not finished yet.
148
149 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
150
151         * verify.c: Proper token validation for field, method and type.
152
153 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
154
155         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
156
157         * loader.c (method_from_memberref): Generate type load error instead of method missing
158         if the type is not found.
159
160 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
161
162         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
163         some of the conversions caused the generation of a marshal directive exception.
164
165 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
166
167         verify.c: Report which exception should be thrown by the JIT.
168         Added a lot of FIXME notes.
169
170 2008-02-22  Mark Probst  <mark.probst@gmail.com>
171
172         * generic-sharing.c: Runtime generic context slots are not
173         instantiated on init anymore.  Instead, provide function to do the
174         instantiating on demand.
175
176         * class-internals.h: Added vtable to runtime generic context.
177         Macros for encoding direct and indirect slot offsets in one
178         guint32.
179
180 2008-02-21  Mark Probst  <mark.probst@gmail.com>
181
182         * object.c, generic-sharing.c: Moved some generic sharing code
183         from object.c to generic-sharing.c.
184
185         * generic-sharing.c: Added support for extensible runtime generic
186         context.
187
188         * metadata-internals.h: Two new hash tables in MonoImage for
189         extensible runtime generic context support.
190
191         * domain.c: Unregister generic vtables upon domain unloading.
192
193         * image.c: Destroy new hash tables upon image unloading.
194
195         * metadata.c: Unregister generic subclasses upon image unloading.
196
197         * class-internals.h: New data structure for runtime generic
198         context template.  New fields in the runtime generic context for
199         extensible part.
200
201         * Makefile.am: Added generic-sharing.c.
202
203 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
204
205         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
206         there is a pending loader exception, raise it.
207
208         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
209         same.
210
211         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
212         same.
213
214         Fixes #363450.
215
216 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
217
218         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
219
220         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
221         
222         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
223         ref-only requests for compatibility with MS.
224
225 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
226
227         * reflection.c (mono_custom_attrs_from_method): Don't silently
228         return an empty list for generic method instances.
229         (mono_custom_attrs_from_param): Likewise.
230
231 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
232             Raja R Harinath  <harinath@hurrynot.org>
233
234         Fix #354757
235         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
236         * class.c (mono_class_inflate_generic_method_full): Initialize it
237         when a fully-open method is instantiated.
238         * metadata.c (inflated_method_equal, inflated_method_hash): Update
239         to new field.
240         * reflection.c (inflate_mono_method): Don't create a temporary context.
241
242 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
243
244         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
245         Compute correct value, to prepare for imethod->reflection_info going away.
246
247 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
248
249         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
250
251 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
252
253         * verify.c: Implement skip visibility flag.
254
255 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
256
257         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
258         which contains an extra field to tell the kind of exception that should be thrown.
259
260         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
261
262 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
263
264         * loader.c (mono_method_get_param_names): Initialize 'klass' after
265         'method' is updated.
266
267 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
268
269         * class.c (mono_class_layout_fields): Set class->min_align for classes using
270         explicit layout as well. Fixes #360375.
271
272 2008-02-11  Geoff Norton  <gnorton@novell.com>
273
274         * loader.c: Guard and dereference against inflated generic methods
275
276 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
277
278         * class.c: Include Retargetable spec in assembly name.
279         * assembly.c: Always include PublicKeyToken spec in assembly name
280         (with value "null" if assembly is not signed), and include
281         Retargetable spec.
282         * icall-def.h: Added icall for Assembly.get_fullname.
283         * icall.c: Added icall returning the fullname of an assembly.
284
285 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
286
287         * class.c (mono_class_setup_vtable_general): Add a missing call to
288         mono_class_setup_methods () which is needed in the AOT case.
289
290 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
291
292         * verify.c (mono_type_get_stack_name): Added. Return the name for the
293         stack type of the given MonoType.
294
295         * verify.c (verify_type_compatibility_full): Handle the void type.
296
297         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
298         way stack merging works.
299
300         * verify.c (store_local): Improved verification message.
301
302         * verify.c (do_branch_op): If the merging is invalid, the method
303         is unverifiable and not invalid. Improved error message.
304
305         * verify.c (merge_stacks): Properly merge a boxed valuetype and
306         a reference type diferent than System.Object. Improved error
307         message.
308
309 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
310
311         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
312
313         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
314         type of an enum even if the argument is byref.
315
316         * verify.c: Replace all explicit uses of enumtype and enum_basetype
317         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
318
319         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
320
321         *verify.c (verify_type_compatibility_full): Make enum types
322         compatible with their base types.
323
324         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
325         types are compatible for the special case of a boxed valuetype and
326         System.Object.
327
328         * verify.c (verify_stack_type_compatibility): The function
329         is_compatible_boxed_valuetype was extracted from here.
330
331         * verify.c (push_arg): Only set ctx->has_this_store if the method
332         is not static.
333
334         * verify.c (do_ldelem): Fixed a typo in an error message and added
335         strict check for mixing int32 and native int as the array type
336         and ldelem type.
337
338         * verify.c (merge_stacks): Consider boxed valuetypes in the
339         compatibility checks.
340
341 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
342         * profiler.h: (MonoGCEvent): Added start-stop the world events.
343
344 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
345         *class.c: use_new_interface_vtable_code: renamed the env var to have
346         a "MONO_" prefix, and fix the logic to enable it by default.
347
348 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
349         *class.c:
350         mono_class_setup_vtable_general: rewrote the way in which interface
351         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
352         makes the code more maintainable.
353         For now the old code is still there, and can be activated setting
354         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
355
356 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
357
358         * verify.c: guarded some debug functions around and #ifdef.
359
360         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
361
362 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
363
364         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
365         changes for now since they seem to break too many things.
366
367 2008-02-05  Mark Probst  <mark.probst@gmail.com>
368
369         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
370         mono_marshal_find_nonzero_bit_offset): Added macro and function
371         for finding the byte- and bit-offset of a bitfield within a
372         struct.
373
374 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
375
376         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
377         (mono_marshal_get_struct_to_ptr): Ditto.
378
379         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
380         cctor_signature.
381
382 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
383
384         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
385         between methods for non-corlib types.
386
387 2008-02-02  Geoff Norton  <gnorton@novell.com>
388
389         * loader.c (mono_method_get_param_names): Populate the parameter name for 
390         generic parameters as well. (Fixes #342536)
391
392 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
393
394         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
395
396         * verify.c (do_invoke_method): Fix for calling with byref structs.
397
398         * verify.c (do_cast): push a boxed value type based on the type token and not
399         the type of stack.
400
401 2008-01-31  William Holmes  <billholmes54@gmail.com>
402
403         * process.c (process_module_string_read): Check the size returned form 
404           VerQueryValue to avoid out of memory exception. 
405
406 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
407
408         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
409         Handle properly modules which are not in the moduleref table. Fixes
410         #356938.
411
412 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
413
414         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
415         the dynamic case which is now in managed code.
416         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
417
418         * marshal.c (mono_string_to_bstr): Fix a warning.
419         (init_com_provider_ms): Ditto.
420
421         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
422
423         * exception.c (mono_get_exception_out_of_memory): New helper function.
424
425 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
426
427         * marshal.c: Add support for BSTR marshalling
428         using other COM systems.
429
430         Code is contributed under MIT/X11 license.
431
432 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
433
434         * object.c (mono_runtime_invoke_array): reverted previous
435         commit as it breaks the build.
436
437 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
438
439         * object.c (mono_runtime_invoke_array): Verify arguments for
440         invalid types. Fixes #348522.
441
442 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
443
444         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
445         non-final virtual calls using call. 
446
447         * verify.c (do_invoke): fixed some TODOs.
448
449         * verify.c (push_arg): set has_this_store for "ldarga 0".
450
451 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
452
453         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
454         which belong to an inflated class. Fixes #356531.
455
456 2008-01-26  Robert Jordan  <robertj@gmx.net>
457
458         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
459         which resort to FindFirstFile when a certain error condition
460         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
461         Code is contributed under MIT/X11 license.
462
463 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
464
465         * marshal.c (emit_marshal_string): Fix out string marshalling
466         to use specified encoding. Fixes #323900.
467
468         Code is contributed under MIT/X11 license.
469
470 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
471
472         * class.c (mono_class_inflate_generic_method_full): Don't modify
473         iresult->context after cache check.
474
475 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
476
477         * class.c (mono_class_inflate_generic_method_full): Change the
478         struct assignments to memcpy for better visibility and add some comments.
479
480 2008-01-23  Dick Porter  <dick@ximian.com>
481
482         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
483         procedure, and make it work on windows.
484
485 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
486
487         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
488         a MonoReflectionTypeBuilder since it is always of that type.
489
490         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
491
492         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
493
494         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
495         
496         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
497
498         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
499
500         * reflection.c (mono_reflection_create_runtime_class): Remove already created
501         instantiations from the type cache.
502
503 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
504
505         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
506
507         * verify.c (do_unbox_value): push a controled mutability managed pointer.
508
509 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
510
511         * verify.c (do_ldstr): added, verifies if the #US token is valid.
512
513         * verify.c (mono_method_verify): removed old TODO
514
515 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
516
517         * verify.c (do_newobj): add visibility check.
518
519 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
520
521         * verify.c (do_load_function_ptr): add visibility check.
522
523 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
524         *class.c:
525         mono_generic_class_get_class: hook profiler events.
526         mono_field_get_offset: added to support heap-shot in the new profiler.
527         *class.h: exported mono_field_get_offset.
528         * reflection.c:
529         mono_reflection_setup_internal_class: hook profiler events.
530
531 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
532
533         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
534         argument here too and use it to avoid checking for pending exceptions if 
535         possible.
536
537 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
538
539         * assembly.c (build_assembly_name): add arg for passing the assembly
540         flags. Do not consider a PublicKey with value "null" valid.
541         (mono_assembly_name_parse_full): added boolean argument that will be
542         set if the assembly name contains a PublicKeyToken spec. Added support
543         for the Retargetable spec for which only Yes or No are allowed as valid
544         value. Consider assembly name invalid if Retargetable spec is set, but
545         either version, culture or public key (token) are not specified.
546         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
547         with implementation in assembly.c.
548         * icall.c (fill_reflection_assembly_name): also copy assembly flags
549         from MonoAssemblyName.
550         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
551         introduced argument for mono_assembly_name_parse_full to know if the
552         assembly name has a PublicKeyToken spec, and if it has instruct
553         fill_reflection_assembly_name to use default value for keyToken (if
554         PublicKeyToken is null).
555
556 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
557
558         * verify.c (mono_method_verify): fixed ovf ops with
559         float values. They are unverifiable now.
560
561 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
562
563         * class.c (set_failure_from_loader_error): add BadImageException to the
564         list of exceptions that can cause a type to fail to load.
565
566         * class.c (mono_class_get_exception_for_failure): same.
567
568 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
569
570         * verify.c (in_any_exception_block): added, check if offset
571         is part of any exception handling clause.
572
573         * verify.c (get_stack_type): added VAR and MVAR types.
574
575         * verify.c (do_stobj): better error messages.
576
577         * verify.c (do_cpobj): added, check cpobj.
578
579         * verify.c (do_initobj): added, check initobj.
580
581         * verify.c (do_sizeof): added, check sizeof.
582
583         * verify.c (do_localloc): added, check localloc.
584
585         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
586
587 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
588
589         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
590         save_lmf/restore_lmf opcodes.
591
592         * threads.c (mono_threads_install_notify_pending_exc): New function to
593         install a callback notifying the JIT there is a pending exception on a thread.
594         (mono_thread_request_interruption): Call the new callback.
595         (mono_thread_get_and_clear_pending_exception): New function to return the
596         exception pending on a thread.
597
598         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
599         to turn off checking for pending exceptions.
600         (mono_marshal_get_native_wrapper): Ditto.
601
602 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
603
604         * threads-types.h: Get rid of the unnecessary extern declarations.
605
606 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
607
608         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
609         return field from parent class if not private.
610         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
611         returns fields from parent class if they are not private.
612         (method_nonpublic): added function to determine if a given method
613         should be considered non-public. Returns false for private methods
614         on parent class, and internal methods from parent on the 1.0 profile.
615         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
616         use method_nonpublic function to determine whether method should be
617         returned.
618         (property_accessor_public): use newly introduced method_nonpublic
619         function to determine whether accessor is non-public. 
620         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
621         event from parent class if not private. Only return static event if
622         Static flag is set, and only return static event from parent class if
623         FlattenHierarchy flag is set.
624         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
625         include non-private events from parent class.
626
627 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
628
629         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
630         warning.
631
632 2008-01-16  Wade Berrier <wberrier@novell.com>
633
634         * security.c: Add assembly.h header to appease some warnings
635
636 2008-01-16  Dick Porter  <dick@ximian.com>
637
638         * process.c (process_module_string_read): Remove trailing null
639         when saving string.
640
641 2008-01-16  Mark Probst  <mark.probst@gmail.com>
642
643         * class-internals.h: A new data structure describing the layout of
644         a runtime generic context (MonoRuntimeGenericContextTemplate).
645
646         * metadata-internals.h: Added a hash table to MonoDomain that maps
647         from open generic classes to their runtime generic context
648         templates.
649
650         * object.c: Building of the runtime generic context, including
651         proper handling of generic type arguments of superclasses.
652         Building of the runtime generic context according to the template.
653
654 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
655
656         * class.c (mono_class_setup_fields): Set field.count for generic instances.
657         Fixes #350856.
658
659         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
660         mono_portability_find_file (). Fixes #325466.
661         (mono_image_get_public_key): Fix a warning.
662
663 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
664
665         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
666         Fixes #353550.
667         (mono_class_from_name_case): Ditto.
668
669 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
670
671         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
672           common storage for the tables used in the System/NumberFormatter class.
673
674 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
675
676         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
677
678 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
679
680         * verify.c (get_boxable_mono_type): check if the token is valid.
681
682         * verify.c (set_stack_value): changed to add an error if an
683         invalid type is set on stack. Changed all callers due to signature change.
684
685         * verify.c (do_stobj): implement stobj validation.
686
687 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
688
689         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
690         set container->is_method, it was set earlier.
691
692         * metadata.c (type_in_image): Handle MVARs which belong to not finished
693         generic methods.
694
695         * reflection.c (mono_reflection_initialize_generic_parameter): Set
696         is_method of the generic container to TRUE for methods.
697
698 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
699
700         * metadata.c (type_in_image): Handle type parameters properly.
701
702         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
703         memory ownership of this structure.
704
705 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
706
707         * verify.c (get_boxable_mono_type): make typedref types been just
708         unverifiable. check for void type.
709
710         * verify.c (do_unbox_any): added, verify opcode unbox.any.
711
712         * verify.c (do_load_function_ptr): accept method spec tokens.
713
714 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
715
716         * marshal.c (mono_class_native_size): Always set *align even if this is called
717         recursively.
718
719 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
720
721         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
722         out-of-date.
723
724 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
725
726         * verify.c: removed some old unused tables. A huge bunch of small fixes
727         to things found while testing the verifier with mono basic.
728
729         * verify.c (dump_stack_value): dump null literal flag to.
730
731         * verify.c (verify_type_compatibility_full): fix comparison
732         for types that have a generic super type.
733
734         * verify.c (verify_stack_type_compatibility): fix compatibility
735         between null literals and reference types. fix compatibility between
736         boxed valuetypes and object. fix corner case test for enums.
737
738         * verify.c (do_cmp_op): proper verification of cgt.un in case
739         of reference types.
740
741         * verify.c (do_invoke_method): fix error message.
742
743         * verify.c (do_store_indirect
744
745         * verify.c (check_is_valid_type_for_field_ops): proper verification
746         of managed pointers to valuetypes and boxed valuetypes. proper verification
747         of null literals.
748
749         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
750         allow token to be a reference type.
751
752         * verify.c (do_cast): proper handling of boxes valuetypes.
753
754         * verify.c (do_stelem): proper handling of storing a boxed valuetype
755         in object[].
756
757         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
758         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
759         fixed the decoding of unbox_any
760
761 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
762
763         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
764
765 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
766
767         * verify.c (do_newobj): do delegate verification.
768
769         * verify.c (verify_delegate_compatibility): perform delegate
770         verification.
771
772         * verify.c (verify_ldftn_delegate): perform tests related to
773         ldftn delegates.
774
775         * verify.c (mono_delegate_signature_equal): perform the
776         slightly diferent signature comparison required by delegates.
777
778         * metadata.c (mono_metadata_type_equal_full): added and exported
779         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
780         allows signature only comparison.
781
782         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
783         as MONO_INTERNAL.
784
785 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
786
787         * verify.c: added a bunch of stack_slot_* functions to
788         make access to stack slot type easier. This is required to
789         allow optional flags, like null literal, boxed value and
790         this pointer.
791         All access paths to IlStackDesc::stype have been changed 
792         to use these new funcions.
793         Removed a bunch of unused functions and cleared all warnings.
794         This patch introduces the usage of the this pointer and 
795         boxed value flags.
796
797 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
798
799         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
800
801 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
802
803         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
804         match managed version.
805
806         * appdomain.c: Bump corlib version.
807         
808         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
809         argument.
810
811 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
812
813         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
814         Set public key token to zero-length byte array if assembly is not
815         strongnamed.
816
817 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
818
819         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
820         writing a vtype array elem.
821
822 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
823
824         * assembly.c (build_assembly_name): return FALSE if length of token is
825         not 16 (if not "null").
826         (mono_assembly_name_parse_full): return FALSE if value of version,
827         culture, token or key is 0.
828         * icall.c (fill_reflection_assembly_name): add boolean arguments to
829         specify whether public key and public key token must be set to default
830         value (zero-length byte array) if not available. Set versioncompat to
831         SameMachine. If public key is available or the default is set, then
832         set PublicKey flag.
833         (ves_icall_System_Reflection_Assembly_FillName): if no public key
834         is available, use empty byte array as default value. On the 2.0
835         profile, use default value for public key token if not set.
836         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
837         profile, use default value for public key if not set. On the 2.0
838         profile, use default value for public key token if not set.
839         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
840         default values for public key and public key token.
841
842 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
843
844         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
845         field to keep it in synch with the managed object.
846
847         * marshal.c (emit_marshal_object): Add support for byref marshalling of
848         delegates. Fixes #351520.
849
850         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
851         contains defined memory.
852         
853         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
854
855         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
856         
857         * sgen-gc.c (check_consistency): New helper function to do a consistency check
858         of the GC data structures.
859
860         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
861
862         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
863         
864         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
865         barrier.
866         (mono_array_clone_in_domain): Ditto.
867         (mono_array_clone_in_domain): Ditto.
868
869         * threads.c (start_wrapper): Register the thread start argument as a GC root.
870         (cache_culture): Use a write barrier.
871
872         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
873         (ves_icall_get_property_info): Ditto.
874
875         * object.h (MONO_STRUCT_SETREF): New macro.
876
877         * class-internals.h (MonoStats): Add some GC statistics.
878
879         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
880
881 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
882
883         * exception.c (mono_exception_from_name_two_strings):
884         Break from loop after method is found.
885
886 2008-01-04  Dick Porter  <dick@ximian.com>
887
888         * process.c (process_module_string_read): Rename variable to
889         reflect correct usage, after fixing bug 345972.
890
891 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
892
893         * verify.c (mono_type_create_fnptr_from_mono_method): 
894         created a MonoType function pointer instance to be used during
895         verification. The verifier releases this memory at end.
896
897         * verify.c (mono_method_is_constructor): extracted repeated
898         checks for constructor into a single class.
899
900         * verify.c (do_push_field): use new extracted method
901         for constructor check.
902
903         * verify.c (do_newobj): same.
904
905         * verify.c (do_ldftn): renamed to do_load_function_ptr
906         and make it verify ldvirtftn too.
907
908         * verify.c (mono_method_verify: proper verification
909         of ldvirtftn. release created MonoMethod instances.
910
911 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
912
913         * verify.c (token_bounds_check): added.
914
915         * verify.c (do_ldftn): added.
916
917         * verify.c (mono_method_verify): proper verificartion of ldftn.
918
919 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
920
921         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
922         than the table row count. It's the resposibility of the caller to
923         make the bounds check and raise the correct error.
924
925         * metadata.c (mono_metadata_decode_row_col): Same.
926
927         * loader.c (mono_get_method_from_token): perform bounds check
928         on token for methoddef table.
929
930 2007-12-29  Miguel de Icaza  <miguel@novell.com>
931
932         * icall.c
933         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
934         assert into a negative result, the managed code already coped with
935         that.
936
937         Some folks on Windows reported this error. 
938
939 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
940
941         * appdomain.c: Bump corlib version.
942         * icall.c:
943         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
944         CultureInfo.CreateCulture to create CultureInfo for name.
945         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
946         create CultureInfo for name. Fixes bug #347174.
947
948 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
949
950         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
951         flags.
952
953         * verify.c (is_valid_branch_instruction): allow branching to the
954         first instruction of the protected block.
955
956         * verify.c (is_valid_cmp_branch_instruction): same.
957
958         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
959         avoid double initialization.
960
961         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
962         detect which cases the eval stack should just be copied.
963
964         * verify.c (mono_method_verify): check if the eval stack
965         is empty when entering a protected block.
966
967 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
968
969         * verify.c: added is_clause_in_range, is_clause_inside_range,
970         is_clause_nested and verify_clause_relationship. They perform
971         the verifications stated in P1 12.4.2.7.
972
973         * verify.c (mono_method_verify): remove some unused variables,
974         add the new exception clause checks, add instruction border
975         checks for protected block start/end, improved some error 
976         messages and fixed a bug in the way invalid instruction access
977         is detected.
978
979 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
980
981         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
982         from GC 7.0 if available.
983
984         * object.c: Remove an unused define.
985         
986         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
987
988         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
989
990         * null-gc.c (mono_gc_make_descr_for_array): Implement.
991
992         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
993
994         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
995         to take the same arguments as the other make_descr functions.
996
997         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
998
999         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
1000         directly.
1001
1002         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
1003         mini.c.
1004
1005         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
1006         call to boehm-gc.c.
1007
1008         * boehm-gc.c (mono_gc_register_root): Fix a warning.
1009
1010         * null-gc.c (mono_gc_register_root): Fix a warning.
1011
1012         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
1013
1014         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
1015         (mono_gc_base_init): Call GC_init ().
1016
1017         * null-gc.c: Define mono_gc_register_root () as a no-op.
1018
1019         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
1020
1021 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
1022
1023         * verify.c: add prototype for merge_stacks at top
1024
1025         * verify.c (do_switch): added.
1026
1027         * verify.c (merge_stacks): on some cases the stack merging
1028         was not happening properly. Unequal stack sizes at merge
1029         points should be invalid.
1030
1031         * verify.c (mono_method_verify): added more debug info on stack state.
1032         verify switch properly.
1033
1034 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
1035
1036         * method-builder.h: New file, moved the mono_mb_ declarations here from 
1037         marshal.h.
1038
1039         * boehm-gc.c marshal.c: Include method-builder.h.
1040
1041         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
1042
1043         * marshal.c: Remove some code which is now in method-builder.c.
1044
1045 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
1046
1047         * method-builder.c: New file, extraction of the method builder functionality 
1048         from marshal.c.
1049
1050         * marshal.c: Move the mb functions into method-builder.c.
1051
1052         * marshal.h marshal.c: Export some mono_mb_... functions.
1053
1054         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
1055
1056         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
1057         the caller.
1058
1059         * class.c (mono_class_get_full): Check the token type in the dynamic case.
1060
1061         * loader.c (mono_field_from_token): Ditto.      
1062
1063         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
1064         type as well.
1065         
1066         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
1067         Fixes #342565.
1068
1069         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
1070         a helper function for setting it.
1071
1072         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
1073
1074         
1075         * assembly.c: Significally simplify code now that referenced assemblies are 
1076         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
1077
1078         * threads.h: Don't include  the internal threads-types.h header file. Fixes
1079         #349952.
1080
1081 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1082
1083         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
1084         instructions that were target of branches or are at protected block boundaries.
1085
1086         * verify.c (in_same_block): handle filter clauses.
1087
1088         * verify.c (is_valid_branch_instruction): added. checks the target of
1089         instructions br or brtrue/false.
1090
1091         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
1092         binary branch instructions such as beq and bge.
1093
1094         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
1095         and made it pin the instruction as been part of the exception block.
1096
1097         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
1098         of in_same_block.
1099
1100         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
1101         of in_same_block.
1102
1103         * verify.c (do_ret): ret from a protected block is unverifiable and
1104         not invalid.
1105
1106         * verify.c (do_static_branch): verify br and br.s instructions.
1107
1108         * verify.c (merge_stacks): add extra param to support detection
1109         of branches in the middle of instructions.
1110         
1111         * verify.c (mono_method_verify): verify branches and exception blocks
1112         that target the middle of instructions. Proper verification of br and br.s.
1113
1114 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
1115
1116         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
1117         skip_visibility field.
1118         (reflection_methodbuilder_from_dynamic_method): Ditto.
1119
1120         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
1121         registrations. Fixes #348193.
1122
1123         * threads.h: Move the internal mono_thread_get_pending_exception () to
1124         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
1125
1126 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
1127
1128         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
1129         icall registration. Fixes #348193.
1130
1131         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
1132         for corlib classes into object. Fixes #349621.
1133
1134 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1135
1136         * icall.c (property_accessor_nonpublic): new function to determine
1137         whether an accessor allows a property to be considered non-public.
1138         Returns false for private accessor(s) from parent class, and internal
1139         accessor(s) from parent on 2.0 profile (and higher).
1140         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
1141         to determine whether property should be included if NonPublic flag
1142         is set. Fixes bug #349078.
1143
1144 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
1145
1146         * verify.c (init_stack_with_value): added.
1147
1148         * verify.c (mono_method_verify): extracted common
1149         code for exception initialization into init_stack_with_value.
1150
1151         * verify.c (mono_method_verify): initialize the exception
1152         for handler clauses as well.
1153
1154         * verify.c (mono_method_verify): fix the exception clause
1155         ordering rules, it should use handler end offset and not
1156         start offset.
1157
1158 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
1159
1160         * rawbuffer.c: remove useless warning.
1161
1162 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
1163
1164         * threads.h, threads-types.h: move functions to the correct header
1165         (fixes bug#349952).
1166
1167 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1168
1169         * verify.c (mono_method_verify): proper verification
1170         of exception handling clauses ranges and fallthru in
1171         and out of protected blocks.
1172
1173 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1174
1175         * verify.c (mono_method_verify): fixed compilation issue.
1176
1177 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1178
1179         * verify.c (mono_method_verify): a printf slipped in, changed
1180         to use verifier debug macro.
1181
1182 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
1183
1184         * verify.c (is_correct_leave): check for filter clauses.
1185
1186         * verify.c (do_filter): added.
1187
1188         * verify.c (mono_method_verify): property verification of leave.
1189
1190
1191 2007-12-18  Mark Probst  <mark.probst@gmail.com>
1192
1193         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
1194         Win32 build, until we figure out how to do the proper thing on
1195         Win32.
1196
1197 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
1198
1199         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
1200         by the previous patch.
1201         
1202         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
1203         the assembly resolve handler for refonly assemblies.
1204
1205 2007-12-17  Mark Probst  <mark.probst@gmail.com>
1206
1207         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
1208         Make sure only one thread is allowed to commence shutdown, and
1209         don't allow new threads to be started once shutdown is in
1210         progress.
1211
1212 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1213
1214         * verify.c (is_correct_endfilter): added.
1215
1216         * verify.c (is_unverifiable_endfilter): added.
1217
1218         * verify.c (do_endfilter): added.
1219
1220         * verify.c (mono_method_verify): property verification of endfilter
1221         and fixed a corner case or endfinally.
1222
1223 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
1224
1225         * verify.h: new flags to support fail fast of unverifiable code and
1226         do non-strict verification. Non-strict verification is required to
1227         have MS runtime compatibility. There are a huge amount of unverifiable
1228         code that it accepts as verifiable. The strict mode verifies the code
1229         as the specs says.
1230         Non-strict mode will be required in cases where code needs to be
1231         accepted as verifiable but fails under strict mode.
1232
1233         * pedump.c: added support to fail fast and non-strict verification.
1234
1235         * verify.c: added support for both fail fast and non-strict verification.
1236
1237 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1238
1239         * verify.c (is_correct_endfinally): added.
1240
1241         * verify.c (mono_method_verify): property verification of endfinally.
1242
1243 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
1244
1245         * verify.c (in_any_block): check for filter clauses.
1246
1247         * verify.c (is_correct_rethrow): added.
1248
1249         * verify.c (mono_method_verify): property verification of rethrow.
1250
1251         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
1252
1253 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
1254
1255         * verify.c (do_throw): added.
1256
1257         * verify.c (mono_method_verify): property verification of throw
1258
1259 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
1260
1261         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
1262         assemblies. Fixes #346425.
1263
1264 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
1265
1266         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
1267         FieldBuilders.
1268
1269         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
1270
1271         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
1272         prevent asserts when this is called with a token which might not be valid.
1273
1274         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
1275         lookup_dynamic_token_class with valid_token == FALSE.
1276
1277         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
1278
1279         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
1280
1281         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1282         
1283 2007-12-10  Mark Probst  <mark.probst@gmail.com>
1284
1285         * gc.c: Don't delay threadpool thread finalization unless Mono is
1286         shutting down.
1287
1288 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1289
1290         * threads.c: turn an assert into a non-fatal warning.
1291
1292 2007-12-09  Robert Jordan  <robertj@gmx.net>
1293
1294         * icall.c (GetVirtualMethod): Add missing argument validation.
1295
1296 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1297
1298         * verify.c (do_cast): added.
1299
1300         * verify.c (mono_method_verify): property verification of castclass and isinst.
1301
1302
1303 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1304
1305         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
1306
1307         * verify.c (do_stelem): added.
1308
1309         * verify.c (mono_method_verify): property verification of stelem.X.
1310
1311 2007-12-07  Mark Probst  <mark.probst@gmail.com>
1312
1313         * class.c, class-internals.h: Introduce an environment variable
1314         (MONO_GENERIC_SHARING) through which the extent of generic code
1315         sharing can be controlled (share all classes, share only corlib
1316         classes, or share nothing).
1317
1318         * object.c: Only create runtime generic context for classes for
1319         which sharing is enabled.
1320
1321 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1322
1323         * verify.c (do_ldelem): refactor it to work with ldelem.any.
1324
1325         * verify.c (mono_method_verify): property verification of ldelem.any.
1326
1327 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1328
1329         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
1330         added ldelem.X opcodes.
1331
1332         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
1333
1334         * verify.c: proper verification of ldelem.X 
1335
1336 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
1337
1338         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
1339
1340 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1341
1342         * verify.c (mono_method_verify): null literal requires special handling,
1343         the value pushed on stack need to be flagged as so.
1344
1345         * verify.c (do_ldelema): Verify ldelema properly.
1346
1347 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1348
1349         * verify.c: Verify ldlen properly.
1350
1351 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
1352
1353         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
1354         to the target object's type. Fixes #346160.
1355
1356 2007-12-05  Dick Porter  <dick@ximian.com>
1357
1358         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
1359         Solaris needs the same workaround as BSD-derived systems.  Fixes
1360         bug 323524, patch by Burkhard Linke
1361         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
1362
1363 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
1364
1365         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
1366         handle to use when error dialog is shown; otherwise, update mask
1367         to show no error dialog when an error occurs.
1368
1369 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
1370
1371         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
1372
1373         * class.c (mono_class_get_field_default_value): New helper function to initialize
1374         field->def_type and field->data.
1375
1376 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
1377
1378         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
1379         the general one.
1380
1381         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
1382
1383         * marshal.c: Avoid depending on delegate->method_info being set.
1384
1385         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
1386         
1387         * object.c (mono_delegate_ctor): Set delegate->method.
1388
1389         * object-internals.h (struct _MonoDelegate): Add 'method' field.
1390
1391         * appdomain.c: Bump corlib version.
1392
1393 2007-11-27  Raja R Harinath  <harinath@gmail.com>
1394
1395         * metadata.c (mono_generic_inst_equal_full): Short-circuit
1396         equality check if we're comparing canonicalized MonoGenericInsts.
1397
1398 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
1399
1400         * class.c (generic_array_methods): Call mono_class_setup_methods () before
1401         accessing class->methods.
1402
1403 2007-11-22  Dick Porter  <dick@ximian.com>
1404
1405         * threads.c: Ensure that the synch_cs is set before trying to use
1406         it.
1407
1408 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
1409
1410         * profiler.c: r89126 broke the statistial profiler, unbreak.
1411
1412 2007-11-22  Martin Baulig  <martin@ximian.com>
1413
1414         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
1415
1416         * mono-debug.c
1417         (mono_debug_debugger_version): Bump to 3.
1418         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
1419         -> mono_debugger_class_initialized().
1420
1421         * mono-debug-debugger.c
1422         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
1423
1424         * class.c
1425         (mono_debugger_start_class_init_func): Removed.
1426         (mono_debugger_class_loaded_methods_func): Added.
1427         (mono_class_setup_methods): Call it here.
1428
1429 2007-11-22  Martin Baulig  <martin@ximian.com>
1430
1431         * mono-debug.c
1432         (mono_debug_add_delegate_trampoline): New public method.
1433         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
1434
1435         * mono-debug.h
1436         (MonoSymbolTable): Added `global_data_table'.
1437         (MonoDebuggerTypeKind): Removed.
1438
1439 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
1440
1441         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
1442         these methods.
1443
1444         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1445         
1446 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1447
1448         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
1449
1450 2007-11-20  Martin Baulig  <martin@ximian.com>
1451
1452         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
1453
1454         * mono-debug-debugger.c
1455         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
1456         (mono_debugger_remove_breakpoint): Likewise.
1457         (mono_debugger_check_breakpoints): Likewise.
1458         (mono_debugger_register_class_init_callback): New public method.
1459         (mono_debugger_remove_class_init_callback): Likewise.
1460         (mono_debugger_add_type): Likewise.
1461
1462         * mono-debug-debugger.h
1463         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
1464
1465 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
1466
1467         * class.c: more interface implementations needed for the
1468         array enumerator (fixes bug #341112).
1469
1470 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
1471
1472         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
1473         fix ParamName of ArgumentNullExceptions.
1474
1475 2007-11-17  Miguel de Icaza  <miguel@novell.com>
1476
1477         * reflection.c (mono_reflection_encode_sighelper): Generate the
1478         modopts and modreqs.   I have a useless test that crashes monodis,
1479         but that shows the code working.
1480
1481 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
1482
1483         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
1484         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
1485
1486 2007-11-15  Dick Porter  <dick@ximian.com>
1487
1488         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
1489         When joining a thread, it's the thread that's calling Join that
1490         gets WaitSleepJoin state not the target.  Fixes the standalone
1491         test case in bug 334740, and hopefully the whole bug too.
1492
1493 2007-11-15  Dick Porter  <dick@ximian.com>
1494
1495         * process.c: Read file version info from the files pointed at by
1496         process modules, not the current process.  Fixes bug 315969.
1497
1498         Use windows typedef names in some places to fix warnings on the
1499         windows build.
1500
1501 2007-11-15  Mark Probst  <mark.probst@gmail.com>
1502
1503         * image.c, metadata-internals.h: Added a generic_class_cache hash
1504         to MonoImage for looking up generic classes when sharing generics.
1505
1506 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1507
1508         * sgen-gc.c: warning cleanups.
1509
1510 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
1511
1512         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
1513         inherited properties.
1514
1515 2007-11-14  Mark Probst  <mark.probst@gmail.com>
1516
1517         * object.c, class-internals.h: Added more information to the
1518         runtime generic context.
1519
1520 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
1521
1522         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
1523         instead of just the target method. Generalize the abstract method handling to
1524         handle any non-static method.
1525
1526         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
1527         mono_marshal_get_delegate_invoke () signature change.
1528
1529 2007-11-13  Mark Probst  <mark.probst@gmail.com>
1530
1531         * class.c, class-internals.h: Made
1532         mono_type_get_basic_type_from_generic () public.  Fixed member
1533         access check for shared generics.
1534
1535         * loader.c: Don't insert field into field cache if it's part of a
1536         non-inflated generic class.
1537
1538         * domain.c, domain-internals.h: The generic sharing context is now
1539         part of the jit info data structure.  Added two accessor
1540         functions.
1541
1542 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
1543
1544         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
1545         the array Get/Set/Address methods, since the JIT inlines them.
1546
1547         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
1548
1549         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
1550         (mono_image_init): Initialize runtime_invoke_direct_cache.      
1551
1552         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
1553         mono_marshal_get_delegate_invoke signature change.
1554
1555         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
1556         an additional argument. Add support for invoking abstract methods.
1557
1558         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
1559
1560         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
1561
1562 2007-11-09  Mark Probst  <mark.probst@gmail.com>
1563
1564         * class.c: Do field layout for open generic classes as well.
1565
1566 2007-11-09  Mark Probst  <mark.probst@gmail.com>
1567
1568         * gc.c, gc-internal.h: Don't finalize threadpool threads with
1569         other objects, because the threadpool is still around.  Put them
1570         in a list instead and after finalizing all other objects in the
1571         root domain shut down the thread pool and then finalize the
1572         threads.  Fixes bug #337383.
1573
1574         * threads.c, thread-types.h: New mono_thread_create_internal()
1575         function for marking a thread with the threadpool flag before it
1576         started.  Set synch_cs to NULL after freeing it.
1577
1578         * threadpool.c: Mark threadpool threads before they start.
1579
1580 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
1581
1582         * reflection.h, reflection.c: don't export random functions
1583         and lazy load dbnull and missing objects.
1584
1585 2007-11-07  Jonathan Chambers <joncham@gmail.com>
1586
1587         * class.c: Initialize COM types if COM interfaces
1588         are present (not just COM classes).
1589         
1590         Code is contributed under MIT/X11 license.
1591
1592 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
1593         * reflection.c:
1594         create_dynamic_mono_image: hook module profiler events (dynamic case).
1595         mono_image_basic_init: hook assembly profiler events (dynamic case).
1596
1597 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
1598         * profiler.c:
1599         simple_appdomain_unload: completely terminate the profiler
1600         instead of only processing the statistical samples.
1601         simple_shutdown: make sure this is really called exactly once,
1602         even in multithreaded applications, and always listen to
1603         appdomain events.
1604         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
1605         here, the "[un]load" functions will do it.
1606         Fixes bugs #333791 and #325261.
1607
1608 2007-11-07  Geoff Norton  <gnorton@novell.com>
1609
1610         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
1611         rather than depend on __APPLE__.
1612
1613 2007-11-07  Mark Probst  <mark.probst@gmail.com>
1614
1615         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
1616
1617 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
1618
1619         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
1620         UTF16 MonoString. Fix the crash from bug #335488
1621
1622 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
1623
1624         * marshal.c: Correct (for non-Win32 OS) length != size in 
1625         mono_string_from_bstr. Fix #339530.
1626
1627 2007-11-06  Geoff Norton  <gnorton@novell.com>
1628
1629         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
1630         to succeed
1631
1632 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
1633
1634         * process.c: Added run-time GetProcessId API detection for Windows.
1635
1636 2007-11-04  Miguel de Icaza  <miguel@novell.com>
1637
1638         * reflection.c  (mono_param_get_objects): If a parameter has the
1639         attribute [System.Runtime.InteropServices.Optional] we should
1640         set the DefaultValue of the ParameterInfo to be
1641         System.Reflection.Missing instead of DBNull.
1642
1643         See bug #339013.
1644
1645         (mono_get_reflection_missing_object): New method,
1646         returns the System.Reflection.Missing.Value singleton instance.
1647
1648 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
1649
1650         * culture-info-table.h : regenerated.
1651
1652 2007-11-02  Jonathan Chambers <joncham@gmail.com>
1653
1654         * icall.c: Use GetEnvironmentStrings on windows
1655         so we are using the same environment block as 
1656         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
1657         #333740.
1658         
1659         Code is contributed under MIT/X11 license.
1660
1661 2007-10-31  Martin Baulig  <martin@ximian.com>
1662
1663         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
1664
1665         * mono-debug-debugger.h
1666         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1667
1668 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
1669
1670         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
1671         classes.
1672
1673 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
1674
1675         * culture-info-table.h : regenerated.
1676
1677 2007-10-30  Robert Jordan  <robertj@gmx.net>
1678
1679         * icall-def.h, icall.c:
1680         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
1681
1682         Code is contributed under MIT/X11 license.
1683
1684 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
1685
1686         * class.c (mono_class_setup_vtable): Find the inflated methods in the
1687         inflated class instead of inflating them again.
1688         
1689         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
1690         dynamic case.
1691
1692         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
1693         Call setup_supertypes () after klass->parent is set.
1694         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
1695
1696         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
1697         for inflated instances of not yet created dynamic generic classes.
1698         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
1699         times from inflated_method.
1700         (methodbuilder_to_mono_method): Ditto.
1701
1702 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
1703
1704         * gc.c: code cleanup and removed old untested option of not creating the
1705         finalizer thread.
1706
1707 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
1708
1709         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
1710         creating a jump trampoline for dynamic methods.
1711
1712 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
1713
1714         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
1715         generic TypeBuilders when called from another method of the same type (bug #335131).
1716
1717
1718 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
1719
1720         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
1721         doesn't seem to work perfectly.
1722         
1723         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
1724         called multiple times.
1725         (methodbuilder_to_mono_method): Ditto.
1726         (resolve_object): Inflate FieldBuilder's.
1727
1728 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
1729
1730         * string-icalls.c, string-icalls.h, appdomain.c: patch from
1731         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
1732         RemoveEmptyEntries in the string.Split implementation (bug #322375).
1733
1734 2007-10-26  Dick Porter  <dick@ximian.com>
1735
1736         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
1737         Thread initialisation changes
1738
1739 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
1740
1741         * verify.c: fix compatibility check between arrays and System.Array
1742
1743 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
1744
1745         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
1746         too. Fixes #336999.
1747
1748 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
1749
1750         * object.c (mono_value_box): Use typed allocation here.
1751
1752 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
1753
1754         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
1755         trampoline instead of compiling the method right away.
1756
1757         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
1758
1759 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
1760
1761         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
1762         related fields for dynamic classes. Fixes #334493.
1763
1764 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
1765
1766         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
1767         
1768         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
1769
1770         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
1771         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
1772
1773         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
1774
1775         * reflection.c (create_generic_typespec): Initialize klass->generic_container
1776         if needed.
1777         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
1778
1779 2007-10-18  Jonathan Chambers <joncham@gmail.com>
1780
1781         * marshal.c: Use correct key when removing item
1782         from ccw_hash.
1783         
1784         Code is contributed under MIT/X11 license.
1785
1786 2007-10-17  William Holmes  <billholmes54@gmail.com>
1787
1788         *marshal.c: Adding a case to marshal booleans to U1
1789
1790         Code is contributed under MIT/X11 license.
1791
1792 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
1793
1794         * class.c (mono_class_from_name): Search the modules compromising dynamic
1795         assemblies. Fixes #331601.
1796
1797 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
1798
1799         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
1800         exception if the type name contains an assembly component. Fixes #334203.
1801
1802         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
1803         modules inside dynamic assemblies. Fixes #334200.
1804         
1805         * reflection.c: Set image->public_key and image->public_key_length;
1806
1807         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
1808         fields.
1809
1810         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
1811         
1812 2007-10-16  Mark Probst  <mark.probst@gmail.com>
1813
1814         * metadata.c: Implemented correct comparing of generic classes.
1815         An inflated generic class can be equal to a non-inflated one if it
1816         is inflated with generic type variables as type arguments.  Fixes
1817         bug #333798.
1818
1819 2007-10-15  Dick Porter  <dick@ximian.com>
1820
1821         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
1822         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
1823         81646.
1824
1825         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
1826         instead of a monitor lock.  This means that monitor_try_enter and
1827         co can set the thread state safely.
1828         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
1829         thread_interrupt_requested, so interrupt actually works.
1830
1831         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
1832         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
1833         state accessor function
1834
1835 2007-10-15  Martin Baulig  <martin@ximian.com>
1836
1837         * mono-debug.h
1838         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
1839         the debugger with the current runtime.
1840
1841 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
1842
1843         * object.c, object-internals.h: added the ability to set a single
1844         trampoline for all the slots in a vtable.
1845
1846 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
1847
1848         * marshal.c: deal with a possible race condition during multicast
1849         delegate invocation.
1850
1851 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
1852
1853         * class.c: ensure value type methods don't have the synchronized
1854         flag set.
1855
1856 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
1857
1858         * string-icalls.c, string-icalls.h: reverted unapproved patch that
1859         breaks the build.
1860
1861 2007-10-11  Joel Reed  <joelwreed@comcast.com>
1862
1863         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
1864         to take an options parameter so that empty entries can be removed during
1865         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
1866
1867 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
1868
1869         * marshal.c: make sure we don't store the signature from a dynamic
1870         method into the runtime invoke cache (bug #327189).
1871
1872 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
1873
1874         * marshal.c: make sure the wrapper methods are properly initialized.
1875
1876 2007-10-11  Mark Probst  <mark.probst@gmail.com>
1877
1878         * metadata.c, metadata-internals.h: Generalized
1879         mono_type_stack_size() to mono_type_stack_size_internal() which
1880         takes an additional argument specifying whether it allows open
1881         types.
1882
1883 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1884
1885         * verify.c (do_invoke_method): handle typedbyref params
1886         correctly and check for unverifiable return values.
1887
1888         * verify.c (do_newobj): fix a warning.
1889
1890 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
1891
1892         * verify.c: don't tread typedbyref as allways unverifable,
1893         so uses, like (ld/st)loc.0 are valid. verify for the cases
1894         that it matters, like boxing related operations.
1895
1896 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
1897
1898         * verify.c: add verification of the newobj opcode. verification
1899         of delegate instantation still missing due ldftn and virldftn not
1900         pushing the function type on stack
1901
1902 2007-10-08  Mark Probst  <mark.probst@gmail.com>
1903
1904         * class-internals.h: Runtime generic context data structure
1905         definition.
1906
1907         * object.c: Initialization of runtime generic context at runtime
1908         vtable creation time.
1909
1910 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
1911         * class.c (mono_class_create_from_typedef,
1912         mono_class_from_generic_parameter, mono_ptr_class_get,
1913         mono_fnptr_class_get, mono_bounded_array_class_get)
1914         * domain.c (mono_domain_create, mono_domain_free)
1915         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
1916         * image.c (do_mono_image_load, mono_image_close):
1917         Hooked up load-unload profiler events.
1918
1919 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
1920
1921         * domain.c: track statistics about the actual amount of native code
1922         allocated.
1923
1924 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
1925
1926         * class.c: the valuetype enumerators don't have the additional
1927         supertypes interfaces.
1928
1929 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
1930
1931         * class.c: need more interfaces setup for the IEnumerator<T>
1932         object created for arrays (tests/ienumerator-interfaces.2.cs).
1933
1934 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
1935
1936         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
1937
1938 2007-10-05  Alp Toker  <alp@atoker.com>
1939
1940         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1941         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1942         #315863.
1943
1944 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
1945
1946         * verify.c (verify_type_compatibility_full): verification of
1947         compatibility improved, validates correctly non-strict checks between
1948         native int and I4 types different than (unsigned)int32.
1949
1950         * verify.c (do_store_indirect): added, do all verification of
1951         ldind.X opcodes. 
1952
1953         * verify.c (get_load_indirect_mono_type): renamed to
1954         get_indirect_op_mono_type, as it now returns the MonoType for 
1955         ldind.X and stind.X opcodes.
1956
1957 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
1958
1959         * reflection.c: Fix the encoding of generic type definition for
1960         TypeBuilders.
1961
1962         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
1963         mono_image_typedef_or_ref but allows to specify if typespec lookups should
1964         be made. Typespec check is done prior to typeref cache lookup.
1965
1966         * reflection.c (mono_image_typedef_or_ref): now just delegate to
1967         mono_image_typedef_or_ref_full.
1968
1969         * reflection.c (encode_generic_class): encode the generic class
1970         directly instead of calling encode_type.
1971
1972         * reflection.c (encode_type): encode the generic type definition
1973         MonoClass as a generic instantiation.
1974
1975         * reflection.c (create_typespec): cache typespec tokens in
1976         the assembly->typespec cache. Don't create typespec for a generic
1977         instance MonoClass. Create typespec for the generic type defintion.
1978
1979         * reflection.c (create_generic_typespec): encode the generic
1980         class directly instead of calling encode_type.
1981
1982         * reflection.c (mono_image_create_token): encode the generic
1983         type definition not using a typespec for MonoType instances.
1984
1985
1986 2007-10-04  Raja R Harinath  <rharinath@novell.com>
1987
1988         Fix #328812
1989         * class.c (mono_image_init_name_cache): Don't return nested
1990         'protected internal' classes.
1991         (mono_class_from_name_case): Likewise.
1992
1993 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
1994
1995         * icall-def.h, icall.c : get_bundled_machine_config() is now the
1996           common function used by both DefaultConfig in System.dll and
1997           InternalConfigurationHost in System.Configuration.dll.
1998
1999 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
2000
2001         * class.c: automatically add to vectors only a few essential explicit
2002         generic interfaces. The rest of the interfaces that arrays should
2003         provide are currently implicitly added (but still not lazily, see the
2004         design in the discussion of bug#325495 for the details of what is
2005         needed for that). Additionally, implicit interfaces are assigned the
2006         same vtable slot as the explicit interfaces (as they are compatible):
2007         this enables huge memory savings since we don't need to instantiate
2008         as many memthods and as large vtables anymore. Also, Since
2009         GetEnumerator<T> returns an instance of a type that is required to
2010         support a similarly large set of interfaces as arrays, we add
2011         implicit interfaces and interface offset sharing support to those
2012         types, too. This change adds all the required interfaces so that
2013         the anonarray.cs test case in the bug report works (we don't add
2014         all the interfaces to arrays of arrays 3-level deep and more because
2015         of the memory requirements explained in the bug and since they are much
2016         less common: the lazy-loading support will enabled them to work, too).
2017
2018 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
2019
2020         * verify.c (merge_stacks): major clean up, all type compatibility
2021         checks are done by verify_type_compatibility. This fix my earlier lack
2022         of understanding of the CLR type system and merge_stacks no longer looks
2023         scary.
2024
2025         * verify.c: fixed some bad spelling.
2026
2027 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
2028
2029         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
2030         a given stack slock.
2031         
2032         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
2033         verify_type_compatibility_full. This removed a near indentical function and fixed
2034         handling of Int32 and IntPtr across all opcodes.
2035
2036 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
2037
2038         * class.c: only vectors have the additional generic interfaces.
2039
2040 2007-10-01  Jonathan Chambers <joncham@gmail.com>
2041
2042         * mono-config.c: Use g_strcasecmp instead of
2043         strcasecmp like everywhere else to fix
2044         compilation with MSVC.
2045         
2046         Code is contributed under MIT/X11 license.
2047
2048 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2049
2050         * object.c, object-internals.h: refactored the IMT code to enable
2051         building a single slot at a time and lazily creating the IMT trampolines
2052         and thunks.
2053
2054 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
2055
2056         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
2057
2058         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
2059         Fixes #328501.
2060         
2061 2007-09-29  Raja R Harinath  <harinath@gmail.com>
2062
2063         * loader.c (method_from_methodspec): Rearrange to avoid
2064         un-necessary exposition.  Don't assert out if the method's
2065         declaring type is a generic type definition.
2066
2067 2007-09-28  Martin Baulig  <martin@ximian.com>
2068
2069         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
2070
2071 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
2072
2073         * class-internals.h: optimize field layout of MonoClass to
2074         requires less cachelines at runtime and save a few bytes on 64 bit
2075         systems.
2076
2077 2007-09-28  Jb Evain  <jbevain@novell.com>
2078
2079         * reflection.c: when encoding type names in custom attributes,
2080         if the type is a closed generic type, its generic arguments
2081         have to be serialized as AssemblyQualifiedName, so that when
2082         they are deserialized, it's possible to re-create them properly.
2083         Fixes #329450.
2084
2085
2086 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
2087
2088         * object.c, class-internals.h: added delegate-creation counter.
2089
2090 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
2091
2092         * class.c: cleanup of the code that synthetizes interfaces for
2093         arrays in 2.0: saves quit a bit of corlib mempool memory.
2094         Code to fix bug #325495 ifdeffed out for now until the issues
2095         with memory usage and O(n^2) behaviour are fixed.
2096
2097 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
2098
2099         * marshal.c: when possible, do not duplicate the name of the methods
2100         in the method builder and in the generated MonoMethod.
2101
2102 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
2103         * verify.c: added support for type checking ldind_* opcodes.
2104
2105 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
2106
2107         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
2108         which is used to distinguish the fully open instantiation of a TypeBuilder
2109         with the rest. This temporary hack is required to restore the property that
2110         the fully open instantiation is the same type of the generic type definition.
2111
2112         * class-internals.h (mono_generic_class_is_generic_type_definition):
2113         new function as part of the internal API.
2114
2115         * class.c (inflate_generic_type): return NULL when the generic inst is
2116         fully open. The fully open generic type is now the same as the generic type
2117         definition for non TypeBuilder types.
2118
2119         * class.c (mono_generic_class_get_class): removed assert since it is
2120         no longer valid, gklass->cached_class can point to the generic type definition.
2121
2122         * class.c (mono_generic_class_is_generic_type_definition): new.
2123
2124         * metadata.c (mono_generic_class_hash): added is_tb_open field
2125         to the hash calculation.
2126
2127         * metadata.c (free_generic_class): if the generic class is associated
2128         with the generic type definition, its field will come from the mempool and
2129         must not be freed.
2130
2131         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
2132         new, this function identifies the corner case of a TypeBuilder fully open
2133         instantiation.
2134
2135         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
2136         for lookup. Set gclass->cached_class to be the container class in case of
2137         the fully open instantiation of non TypeBuilder types.
2138
2139         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
2140         to compare generic classes.
2141
2142         * reflection.c (method_encode_methodspec): remove assert that
2143         no longer is valid.
2144
2145         * reflection.c (mono_reflection_generic_class_initialize): add
2146         an aditional assert to ensure the proper type is used.
2147
2148 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
2149
2150         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
2151         to enjoy it.
2152
2153 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
2154
2155         * verify.c (push_arg): Fixed support for ldarga
2156         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
2157         MonoType used as first arg in case of instance calls.
2158
2159 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
2160
2161         * verify.c: Support for verifying VAR and MVAR types, 
2162
2163 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
2164
2165         * icall.c (ves_icall_get_property_info): Set the reflected type of the
2166         accessors correctly.
2167
2168 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
2169
2170         * threads.c: support OSX and other systems in
2171         mono_thread_get_stack_bounds (bug #328026).
2172
2173 2007-09-25  Martin Baulig  <martin@ximian.com>
2174
2175         * mono-debug.h
2176         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
2177
2178 2007-09-24  Martin Baulig  <martin@ximian.com>
2179
2180         * mono-debug.h
2181         (MonoDebugClassEntry): Moved the definition of this struct into
2182         mono-debug.c to make it private.
2183
2184         * mono-debug.c
2185         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
2186         type table per symbol file, we don't need to store the symfile id
2187         any longer.
2188
2189 2007-09-24  Martin Baulig  <martin@ximian.com>
2190
2191         Create one type table per symbol file, since a `MonoClass *' gets
2192         invalid when its image is unloaded.
2193
2194         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
2195         (MonoDebugHandle): Added `type_table'.
2196
2197 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
2198
2199         * mempool.c, mempool.h: added mono_mempool_new_size () API
2200         to be able to specify a smaller initial size for the pool.
2201         Adjusted the code to slowly increase pool size before using
2202         the previous default size.
2203         * image.c: use a small initial size for image mempools.
2204
2205 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
2206
2207         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
2208         Fixes ##320990.
2209
2210         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
2211         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
2212
2213 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
2214
2215         * metadata.c (mono_type_create_from_typespec): Remove an invalid
2216         free. Fixes #327438.
2217
2218 2007-09-21  Raja R Harinath  <harinath@gmail.com>
2219
2220         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
2221         generic instantiations, etc.
2222         <MONO_TYPE_ARRAY>: Likewise.
2223
2224 2007-09-21  Martin Baulig  <martin@ximian.com>
2225
2226         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
2227         these structs were never defined.
2228         (MonoDebugHandle): Removed the `_priv' field, it was never used.
2229
2230 2007-09-21  Martin Baulig  <martin@ximian.com>
2231
2232         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
2233
2234 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
2235
2236         * image.c: removed the guid hash tables: we can get the same info
2237         without the additional memory usage hit (partially fixes also bug #327052).
2238
2239 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2240
2241         * profiler.h, profiler-private.h, profiler.c: add a new profiler
2242         event to handle unloading methods. After the event is called, the
2243         corresponding MonoMethod* must be considered invalid.
2244         * loader.c (mono_free_method): call the new mono_profiler_method_free
2245         event.
2246
2247 2007-09-20  Mark Probst  <mark.probst@gmail.com>
2248
2249         * domain-internals.h: New flag in MonoJitInfo which marks shared
2250         generic methods.  New hash table (shared_generics_hash) in
2251         MonoDomain to keep track of shared generic methods.  Prototypes
2252         for functions to register and lookup shared generic methods.
2253
2254         * domain.c: Support for registering and looking up shared generic
2255         methods via a hash table (shared_generics_hash) in MonoDomain.
2256
2257         * class-internals.h: New exception to signal failure of shared
2258         compilation of a generic method.  New counters for generics
2259         sharing in MonoStats.
2260
2261 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
2262
2263         * image.c, metadata-internals.h: don't keep a file descriptor open
2264         for loaded assemblies (bug#325988).
2265
2266 2007-09-19  Raja R Harinath  <rharinath@novell.com>
2267
2268         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
2269         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
2270         use the corresponding datatypes.
2271         (type_in_image): Update to changes.
2272         (CleanForImageUserData): Simplify.
2273         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
2274         Avoid quadratic behaviour in handling the "stolen" list by
2275         separating the filter predicate out, and by prepending the stolen
2276         items rather than appending them.
2277         (steal_ginst_in_image): Likewise.
2278         (mono_metadata_clean_for_image): Update to changes.
2279
2280 2007-09-19  Martin Baulig  <martin@ximian.com>
2281
2282         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
2283
2284 2007-09-19  Martin Baulig  <martin@ximian.com>
2285
2286         * mono-debug.c (mono_debug_cleanup): Don't call
2287         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
2288
2289 2007-09-19  Raja R Harinath  <harinath@gmail.com>
2290
2291         Fix crash on 'make run-test' in mcs/errors
2292         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
2293         Avoid more potential allocations in mono_class_from_mono_type.
2294         (ginst_in_image): Update to changes.
2295         (gclass_in_image): Rearrange slightly.
2296
2297 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
2298
2299         * class.c (mono_class_init): Move the code that sets up class->methods to 
2300         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
2301
2302         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
2303         canonical instance of an inflated generic signature.
2304         (mono_type_create_from_typespec): Remove an invalid free.
2305
2306         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
2307
2308 2007-09-18  Marek Habersack  <mhabersack@novell.com>
2309
2310         * domain-internals.h: added a declaration of the
2311         mono_assembly_load_full_nosearch internal function.
2312
2313         * assembly.c (mono_assembly_load_with_partial_name): use
2314         mono_try_assembly_resolve return value properly.
2315         (mono_assembly_load_full_nosearch): copied the function body from
2316         mono_assembly_load_full, without the code to invoke assembly
2317         search hooks.
2318         (mono_assembly_load_full): calls the above new function and if the
2319         assembly is not resolved, invokes the search hooks.
2320
2321         * appdomain.c (mono_runtime_init): restore the global postload
2322         assembly search handlers.
2323
2324 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
2325
2326         * class.c (mono_class_init): Make sure class->methods and class->properties
2327         are never NULL in the generics case.
2328
2329         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
2330
2331 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
2332
2333         * metadata.c (free_generic_class): Disable some code to fix the build.
2334
2335         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
2336
2337         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
2338         from the image mempool.
2339
2340         * metadata.c (free_generic_class): Free more data from the inflated class.
2341
2342         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
2343
2344         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
2345         mempool.
2346         (mono_type_create_from_typespec): Ditto.
2347
2348         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
2349         MonoImage to the caller.
2350         (mono_init_internal): Save the opened image in a global variable.
2351         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
2352
2353         * reflection.c (resolve_object): Fix a leak.
2354
2355         * metadata.c: Fix the freeing of data in the generics caches.
2356         
2357         * metadata.c (free_generic_inst): Comment this out to fix the build.
2358         (free_generic_class): Ditto.
2359
2360         * metadata.c: Free cached generic methods, instantinations and classes when
2361         they are removed from the caches.
2362         (mono_metadata_free_type): Free the type itself.
2363
2364         * class.c: Free the result of mono_class_inflate_generic_type () in a few
2365         places.
2366
2367 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
2368
2369         * boehm-gc.c: restrict managed allocs to __thread supporting
2370         architectures.
2371
2372 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
2373
2374         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
2375         (mono_generic_class_get_class): Fix a leak.
2376
2377         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
2378         mono_metadata_free_type ().
2379         (mono_metadata_inflate_generic_inst): Fix a leak.
2380
2381 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
2382
2383         * mono-debug.c (free_header_data): Fix a leak missed earlier.
2384
2385         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
2386         mempool.
2387
2388         * mono-debug.c (mono_debug_close_image): Fix call to 
2389         g_hash_table_remove ().
2390
2391 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
2392
2393         * icall-def.h: redirect all the string ctor to the managed
2394         CreateString () methods.
2395         * string-icalls.c, string-icalls.h: removed dead code for string
2396         ctors and icalls.
2397
2398 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
2399
2400         * mono-debug.c: Fix memory leaks.
2401
2402 2007-09-14  Jonathan Chambers <joncham@gmail.com>
2403
2404         * threads-types.h: Implement mono_hazard_pointer_set and 
2405         mono_hazard_pointer_clear macros using do/while(0) to fix
2406         compilation with MSVC.
2407         
2408         Code is contributed under MIT/X11 license.
2409
2410 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
2411
2412         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
2413         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
2414
2415 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2416
2417         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
2418         icalls.
2419
2420 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2421
2422         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
2423         managed-code allocated as well.
2424
2425 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
2426
2427         * class.c (mono_class_is_assignable_from): Add support for generic variance.
2428
2429 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
2430
2431         * boehm-gc.c: fixed the build after the AOT changes.
2432
2433 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
2434
2435         * wrapper-types.h: Add an ALLOC wrapper type.
2436
2437         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
2438         reference managed allocator methods.
2439
2440 2007-09-12  Marek Safar  <marek.safar@gmail.com>
2441
2442         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
2443         of Type array and not MonoType, a fix suggested by Hari.
2444         
2445 2007-09-12  Jonathan Chambers <joncham@gmail.com>
2446
2447         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
2448         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
2449         
2450         Code is contributed under MIT/X11 license.
2451
2452 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2453
2454         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
2455
2456 2007-09-12  Marek Habersack  <mhabersack@novell.com>
2457
2458         * image.c (do_mono_image_open): if assembly file fails to open and
2459         MONO_IOMAP is in effect, try to find the path in a
2460         case-insensitive way.
2461
2462         * appdomain.c (mono_runtime_init): do not install postload hooks -
2463         tests show that MS.NET doesn't use anything of that sort to
2464         trigger the AppDomain.AssemblyResolve event.
2465         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
2466         made non-static.
2467         (mono_runtime_init): init portability helpers here.
2468
2469         * assembly.c (mono_assembly_load_with_partial_name): if other   
2470         attempts fail, trigger the AppDomain.AssemblyResolve event handler
2471         to resolve the assembly.
2472
2473         * domain-internals.h: added mono_try_assembly_resolve and marked
2474         it as internal.
2475
2476 2007-09-11  Jb Evain  <jbevain@novell.com>
2477
2478         * object-internals.h (MonoReflectionDynamicMethod): add
2479         a `MonoReflectionType *owner` field. The owner is used
2480         * reflection.c:
2481         (mono_reflection_create_dynamic_method): use the owner of the dynamic
2482         method as the class declaring the dynamic method.
2483         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
2484         dynamic method to the declaring type of the methodbuilder.
2485
2486 2007-09-11  Mark Probst  <mark.probst@gmail.com>
2487
2488         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
2489         rules for calling methods via reflection.
2490
2491 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
2492
2493         * reflection.c (resolve_object): Add support for MonoGenericClass. 
2494         Inflate MonoType's.
2495
2496 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
2497
2498         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
2499         provide a managed method that does fast allocations without needing
2500         a managed->unmanaged transition. Boehm GC implementation currently
2501         enabled for ptrfree objects on sane architectures.
2502
2503 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
2504
2505         * marshal.c, marshal.h: exported a couple of useful functions and
2506         added mono_mb_get_label () to easily handle backward branches.
2507
2508 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
2509
2510         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
2511
2512 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2513
2514         * loader.c (find_method): Fixed the regression introduced while
2515         fixing bug #81466.
2516
2517 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
2518
2519         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
2520         well.
2521         
2522         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
2523         icall.c reflection.c: Pass a MonoGenericContext argument to 
2524         mono_lookup_dynamic_token ().
2525
2526         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
2527         #82744.
2528         
2529 2007-09-09  Robert Jordan  <robertj@gmx.net>
2530
2531         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
2532         for generic methods.
2533
2534         * object.c (mono_object_get_virtual_method): Handle generic methods.
2535         Fixes bug #78882.
2536
2537         Code is contributed under MIT/X11 license.
2538
2539 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
2540
2541         * image.c: fix locking in mono_image_load_file_for_image ().
2542
2543 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
2544
2545         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
2546         used only as a cache: added an icall to fill it.
2547
2548 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
2549
2550         * reflection.h: exposed mono_reflection_free_type_info
2551         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
2552         since mono_reflection_bind_generic_parameters makes a copy of it.
2553         * reflection.c (free_type_info): subinfos should be freed.
2554         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
2555         made non static.
2556         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
2557         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
2558         this fixes #82695 and #81726.
2559    
2560
2561 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
2562
2563         * process.h, process.c:  added support for user profile/info in
2564           ProcessStartInfo. For now only Windows works.
2565
2566 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
2567
2568         * metadata.c: consider the generic arguments when comparing
2569         signatures (bug #82614).
2570
2571 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
2572
2573         * cil-coff.h, image.c: updated assembly loader to cope with the
2574         PE32+ 64 bit file format.
2575
2576 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
2577
2578         * assembly.c, class.c, domain.c, loader.c: remove useless
2579         inclusion of cil-coff.h.
2580
2581 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
2582
2583         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
2584         if interface is marked with CoClassAttribute. 
2585    
2586         Code is contributed under MIT/X11 license.
2587
2588 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
2589
2590         * sgen-gc.c: ensure no object from the to space is copied again or finalized
2591         if it's seen twice in major collections.
2592
2593 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
2594
2595         * sgen-gc.c: big objects are not copied to the gray area, but they
2596         need to be considered for scanning, too, if they are brought alive
2597         by an object ready for finalizations or a survived one.
2598
2599 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2600
2601         * sgen-gc.c: properly account the number of disappearing links when
2602         they are nullified.
2603
2604 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
2605
2606         * sgen-gc.c: share the code to scan the registered roots between the
2607         different types of collections.
2608
2609 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
2610
2611         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
2612
2613 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
2614
2615         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
2616         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
2617
2618 2007-08-28  Mark Probst  <mark.probst@gmail.com>
2619
2620         * security-manager.c (mono_security_manager_get_methods):
2621         LinkDemandSecurityException now has 2 arguments instead of 3.
2622
2623 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
2624
2625         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
2626         platforms which need it.
2627
2628 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
2629
2630         * sgen-gc.c: unregister thread data structures with a pthread_key_t
2631         dtor.
2632
2633 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
2634
2635         * threads.c: free the thread static data on thread exit.
2636
2637 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
2638
2639         * class.c: walk the hierarchy to find the generic definition for
2640         a class (fixes runtime part of bug #82498).
2641
2642 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
2643
2644         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
2645         ...
2646
2647         * image.c (mono_image_close): Here. Hopefully fixes #82510.
2648
2649 2007-08-24  Mark Probst  <mark.probst@gmail.com>
2650
2651         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
2652
2653 2007-08-24  Robert Jordan  <robertj@gmx.net>
2654
2655         * appdomain.c: don't perform the ':'->';' substitution on Win32.
2656
2657 2007-08-24  Jb Evain  <jbevain@novell.com>
2658
2659         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
2660         for byref types.
2661
2662 2007-08-24  Mark Probst  <mark.probst@gmail.com>
2663
2664         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
2665         #82286.
2666
2667 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
2668
2669         * assembly.c: Fix a warning.
2670         
2671 2007-08-23  Marek Habersack  <mhabersack@novell.com>
2672
2673         * appdomain.c: parse the <runtime> section looking for the probing
2674         element with the 'privatePath' attribute, which sets additional
2675         directories in which the runtime should look for assemblies.
2676
2677 2007-08-23  Robert Jordan  <robertj@gmx.net>
2678
2679         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
2680         Fixes #82499.
2681
2682 2007-08-23  Martin Baulig  <martin@ximian.com>
2683
2684         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
2685         _mono_debug_init_corlib() and remove it from the header file.
2686
2687 2007-08-23  Martin Baulig  <martin@ximian.com>
2688
2689         * mono-debug-debugger.c
2690         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
2691         don't notify the debugger about it.
2692
2693         * mono-debug-debugger.h
2694         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
2695
2696 2007-08-23  Robert Jordan  <robertj@gmx.net>
2697
2698         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
2699         Code is contributed under MIT/X11 license.
2700
2701 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
2702
2703         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
2704
2705 2007-08-22  Martin Baulig  <martin@ximian.com>
2706
2707         * mono-debug.c: Store debugging info on a per-domain basis and
2708         free it on domain unload.  Add support for unloading symbol files.
2709
2710         * mono-debug.h
2711         (MonoDebugList): New typedef.
2712         (MonoSymbolTable):
2713         - add `data_tables and `type_table'.
2714         - replace 'symbol_files' and `num_symbol_files' with a
2715           `MonoDebugList *'.
2716         (mono_debug_data_table): Removed.
2717         (mono_debug_list_add): New public function.
2718         (mono_debug_list_remove): New public function.
2719         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
2720         (mono_debug_init_2_memory): Renamed into
2721         mono_debug_open_image_from_memory().
2722         (mono_debug_close_image): New public function.
2723         (mono_debug_domain_create): Likewise.
2724         (mono_debug_domain_unload): Likewise.
2725         (MONO_DEBUGGER_VERSION): Bump to 60.
2726
2727         * mono-debug-debugger.h
2728         (MonoDebuggerEvent):
2729         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
2730         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
2731         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
2732         - rename `THREAD_CREATED' and `THREAD_EXITED' into
2733           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
2734         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
2735           meaning.
2736         (mono_debugger_add_symbol_file): Removed.
2737         (mono_debugger_add_type): Removed.
2738         (mono_debugger_lookup_type): Removed.
2739         (mono_debugger_lookup_assembly): Removed.
2740
2741         * domain.c
2742         (mono_domain_create): Call mono_debug_domain_create().
2743         (mono_init_internal): Call mono_debug_init_corlib().
2744
2745         * assembly.c
2746         (mono_assembly_close): Call mono_debug_close_image().
2747
2748 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
2749
2750         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
2751         mmap call.
2752
2753 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
2754
2755         * sgen-gc.c: ensure section->pin_queue_end is initialized
2756         correctly when non pinning objects in the section have been found.
2757
2758 2007-08-22  Marek Habersack  <mhabersack@novell.com>
2759
2760         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
2761         containing a list of directories separated by ':'. MSDN docs say
2762         the directories should be separated with ';'. Part of a bugfix for
2763         bug #81446
2764
2765 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
2766
2767         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
2768         it should MonoType and not MonoClass.
2769
2770 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
2771
2772         * culture-info-table.h : regenerated.
2773
2774 2007-08-20  William Holmes  <billholmes54@gmail.com>
2775
2776         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
2777          to call ReplaceFile Kernel32 on windows or in io-layer.
2778         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
2779         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
2780          as an internal call.
2781
2782         Code is contributed under MIT/X11 license.
2783
2784 2007-08-20  Jb Evain  <jbevain@novell.com>
2785
2786         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
2787         and MONO_EXCEPTION_FIELD_ACCESS.
2788
2789         * debug-helpers.[c|h]: new mono_field_full_name function.
2790
2791 2007-08-20  Mark Probst  <mark.probst@gmail.com>
2792
2793         * class.c: Removed class_security_level() and moved it to
2794         security-core-clr.c.
2795
2796         * security-core-clr.c, security-core-clr.h: class_security_level()
2797         is now public and renamed to mono_security_core_clr_class_level().
2798         It also looks for security attributes in the classes a class is
2799         nested in.
2800
2801 2007-08-20  Mark Probst  <mark.probst@gmail.com>
2802
2803         * security-core-clr.c, security-core-clr.h: CoreCLR security
2804         utility functions.
2805
2806         * Makefile.am: Added security-core-clr.[ch].
2807
2808         * security-manager.c, security-manager.h: Functions and enum for
2809         setting and getting the security mode.
2810
2811         * class.c: CoreCLR security checks.
2812
2813 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
2814
2815         * icall-def.h, process.c, process.h: implemented icall to get
2816         user/system processor times.
2817
2818 2007-08-17  Mark Probst  <mark.probst@gmail.com>
2819
2820         * domain.c, threads.c, class-internals.h, domain-internals.h: New
2821         reader-lock-free jit_info_table.
2822
2823 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
2824
2825         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
2826
2827         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
2828
2829         * object-internals.h (MonoException): Add missing _data member.
2830
2831 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
2832
2833         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
2834         checking that only methods with matching qname or fqname are picked
2835         from implemented interfaces.
2836
2837 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
2838
2839         * verify.c (do_newarr):added, do type verification of
2840         newarr ops, push the right value on the eval stack.
2841         * verify.c (mono_method_verify): use do_newarr
2842
2843
2844 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
2845
2846         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
2847         factored the common code into get_boxable_mono_type, which
2848         is now using mono_type_get_full, this fixed byref related tests.
2849
2850 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
2851
2852         * class.c: added mono_type_get_full, this function has the same
2853         behavior of mono_class_get_full but the returned MonoType has
2854         all metadata of the associated token in case of a typespec token.
2855         * class.c: added mono_type_retrieve_from_typespec, used by 
2856         mono_type_get_full to retrieve the token type.
2857         * class.c (mono_class_create_from_typespec): changed to use
2858         mono_type_retrieve_from_typespec.
2859         * class.c (mono_ldtoken): changed to use mono_type_get_full
2860         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
2861         * class-internals.h: exported mono_type_get_full for internal use.
2862
2863 2007-08-16  Jb Evain  <jbevain@novell.com>
2864
2865         * domain.c (supported_runtimes): add entry for
2866         the 'moonlight' runtime version.
2867
2868 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
2869
2870         * verify.c (mono_method_verify): small typo sliped in.  
2871
2872 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
2873
2874         * verify.c (do_unbox_value): added, do type verification of
2875         unboxing ops
2876         * verify.c (mono_method_verify): use do_unbox_value
2877
2878
2879 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
2880
2881         * verify.c (dump_stack_value): fixed typo, was printing string
2882         instead of object on stack.
2883         * verify.c (do_box_value): moved the byref check up as it leads
2884         to invalid code and should be done earlier.
2885         * verify.c: improved error messages for and ldobj
2886
2887 2007-08-15  William Holmes  <billholmes54@gmail.com>
2888
2889         * marshal.c (emit_marshal_custom): Omit the call to 
2890           marshal_native_to_managed when calling native to managed 
2891           and the argument is specified as an out argument.
2892
2893         Code is contributed under MIT/X11 license.
2894
2895 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
2896
2897         * verify.c: fixed the type checks for generics, function pointers and vectors.
2898         Added type verification for ldobj and ldtoken. The verifier
2899         would segfault if header or signature of a method contained references
2900         to non-existant types.
2901
2902 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
2903
2904         * marshal.c (cominterop_get_ccw): Patch from
2905         Bill Holmes to no walk up interface hierarchy. 
2906         All parent methods should be present in the interface for COM.
2907    
2908         Code is contributed under MIT/X11 license.
2909
2910 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
2911
2912         * marshal.c (emit_marshal_com_interface): Patch from
2913         Bill Holmes to handle COM Interfaces as return values
2914         for native->managed calls.
2915    
2916         Code is contributed under MIT/X11 license.
2917
2918 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
2919
2920         * marshal.c (cominterop_get_idispatch_for_object): Implement
2921         for runtime callable wrappers.
2922    
2923         Code is contributed under MIT/X11 license.
2924
2925 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
2926
2927         * pedump.c (main): changed from mono_init to mono_init_from_assembly
2928         so 2.0 types are accessible
2929
2930
2931 2007-08-13  Miguel de Icaza  <miguel@novell.com>
2932
2933         * domain.c (mono_init_internal): Call mono_assembly_load_friends
2934         once we load mscorlib.   Due to the order in which we initialize,
2935         the mono_assembly_load_full routine that loads mscorlib did not
2936         load friends.   We now load it once we load the
2937         mono_defaults.internals_visible_class class. 
2938
2939         * assembly.c: Expose the mono_load_friend_assemblies method.
2940
2941 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
2942
2943         * verify.c: improved the handling of boxing, better
2944         type checking for unary ops and conversion. Fix bug
2945         regarding managed pointer compatibility checking
2946
2947 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
2948
2949         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
2950
2951         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
2952
2953 2007-08-09  Raja R Harinath  <rharinath@novell.com>
2954
2955         * reflection.c (dup_type): Remove.
2956         * class.c (dup_type): Remove.
2957         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
2958         instead of the dodgy 'dup_type'.
2959         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
2960         handle the case where 'dup_type' needed the second argument.
2961
2962 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
2963
2964         * domain.c: Fix a warning.
2965
2966 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
2967
2968         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
2969         checking that methods with the same fqname are not overridden
2970         with a method from an ancestor.
2971
2972 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
2973
2974         * threads.c (free_thread_static_data_helper): Avoid a crash if
2975         thread->static_data is not yet set.
2976
2977 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
2978
2979         * marshal.c: Use correct image when emitting
2980         native wrapper for COM calls.
2981    
2982         Code is contributed under MIT/X11 license.
2983
2984 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
2985
2986         * icall-def.h, security.c, security.h :
2987           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
2988
2989 2007-08-07  Martin Baulig  <martin@ximian.com>
2990
2991         * mono-debug-debugger.h
2992         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
2993
2994         * domain.c (mono_domain_free): Call
2995         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
2996
2997 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2998
2999         * verify.c (check_underflow, check_overflow): error message now returns IL offset
3000         * verify.c (in_same_block): code should test if either offset is inside the clauses
3001         * verify.c (mono_method_verify): push the exception into the eval stack of exception
3002         and filter blocks
3003
3004 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
3005
3006         * image.c (mono_image_close): Fix a leak.
3007
3008         * object.c (mono_runtime_invoke_array): Avoid using alloca.
3009
3010         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
3011
3012 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
3013
3014         * domain.c, threads.c, threads-types.h: fix memory retention issue
3015         with thread static variables not being cleared on domain unload.
3016         Reuse thread static slots after domain unload.
3017
3018 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
3019
3020         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
3021         nullable type.
3022
3023         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
3024         now done in mono_runtime_invoke_array.
3025
3026         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
3027         receiver is a nullable type.
3028
3029         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
3030         generic parameter.
3031
3032 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
3033
3034         * marshal.c: Implement COM Objects as return type for 
3035         managed->unmanaged calls. Added Release calls for COM Object
3036         out/return values in managed->unmanaged calls.
3037
3038         Code is contributed under MIT/X11 license.
3039
3040 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
3041
3042         * threads.h, threads-type.h: move the hazard pointer declarations
3043         to the private header.
3044
3045 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
3046
3047         * file-io.c, appdomain.c: memory leak fixes.
3048
3049 2007-08-02  Dick Porter  <dick@ximian.com>
3050
3051         * socket-io.c
3052         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
3053         SO_REUSEADDR setting into io-layer/sockets.c.
3054
3055 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
3056
3057         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
3058         from Object when called on a generic parameter. Fixes #82211.
3059
3060 2007-08-01  Dick Porter  <dick@ximian.com>
3061
3062         * file-io.c (convert_share): Test FileShare values bit-by-bit.
3063         Fixes bug 79250 yet again.
3064
3065 2007-07-30  Martin Baulig  <martin@ximian.com>
3066
3067         Merged the `debugger-dublin' branch.
3068
3069         * mono-debug.h
3070         (MonoDebugDataTable): New typedef.
3071         (MonoDebugMethodAddressList): New typedef.
3072         (MonoDebugWrapperData): Removed.
3073         (MonoDebugSymbolTable): Removed `current_data_table',
3074         `current_data_table_size', `current_data_table_offset'.
3075         (MonoDebugDataItemType): Moved into mono-debug.c.
3076         (MonoDebugMethodJitInfo): Remove `address'.
3077         (mono_debug_data_table): New global variable.
3078         (mono_debug_lookup_method_addresses): New public function.
3079         (mono_debug_find_method): Take a `MonoMethod *', not a
3080         `MonoDebugMethodInfo *'.
3081
3082         * mono-debug.c: Drop support for the old symbol tables.
3083
3084 2007-06-28  Martin Baulig  <martin@ximian.com>
3085
3086         * mono-debug.c (mono_debug_debugger_version): New public variable.
3087
3088 2007-07-31  William Holmes  <billholmes54@gmail.com>
3089
3090         * metadata.c Changed mono_type_create_from_typespec to not insert
3091           the type into the hash map until after
3092           do_mono_metadata_parse_type has completed.
3093         Fixes Bug #82194
3094         Code is contributed under MIT/X11 license.
3095
3096 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
3097
3098         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
3099         generic parameter. Fixes #82211.
3100
3101 2007-07-27  Jb Evain  <jbevain@novell.com>
3102
3103         * pedump.c (dump_metadata, dump_metadata_header): dump
3104         versions contained in the metadata header.
3105
3106 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
3107
3108         * threads.c: register small_id_table with the GC.
3109
3110 2007-07-27  Mark Probst  <mark.probst@gmail.com>
3111
3112         * threads.c, threads.h, class-internals.h, object-internals.h:
3113         Hazard pointers, to be used by lock-free parallel algorithms.
3114
3115 2007-07-26  Dick Porter  <dick@ximian.com>
3116
3117         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
3118         routine on non-windows platforms, as I've not managed to think of
3119         a non-kludgy way of doing this.  Finishes off bug 78739.
3120
3121 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
3122
3123         * object.c: properly setup interface_bitmap in proxy vtables.
3124
3125 2007-07-25  Marek Habersack  <mhabersack@novell.com>
3126
3127         * appdomain.c (get_shadow_assembly_location): do not use TickCount
3128         to create unique shadow copy target directories, use the domain's
3129         serial number instead. Each domain gets a unique target directory
3130         that way.
3131
3132         * domain.c (mono_domain_create): added code to increment domain
3133         shadow copy serial number and cache the value in the current
3134         domain structure.
3135
3136         * domain-internals.h (struct _MonoDomain): added a new field -
3137         shadow_serial to hold the serial number used in generation of
3138         shadow-copy directories. This is to make sure that the directory
3139         name is unique for each and every domain created. We avoid a race
3140         condition with overriding assemblies already in use by other app
3141         domains.
3142
3143 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
3144
3145         * class.c (mono_bounded_array_class_get): fixed memory leak when 
3146         binding generic parameters.
3147
3148 2007-07-24  Raja R Harinath  <rharinath@novell.com>
3149
3150         * metadata.c (do_mono_metadata_parse_generic_class): Use
3151         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
3152         error.
3153
3154 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
3155
3156         * loader.c, class-internals.h, reflection.c: removed the per-method
3157         generics hashtable: we use the global one through the call of
3158         mono_class_inflate_generic_method ().
3159
3160 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
3161
3162         * class.c, metadata.c, class-internals.h: introduce yet another
3163         generics global cache for inflated methods (fixes 98% of the perf
3164         issue in bug #81806).
3165
3166 2007-07-23  Raja R Harinath  <rharinath@novell.com>
3167
3168         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
3169         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
3170         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
3171         return a MonoGenericInst containing (a copy) of those types.
3172         (mono_metadata_inflate_generic_inst): Update to changes.
3173         (mono_metadata_parse_generic_inst): Likewise.
3174         (mono_get_shared_generic_inst): Likewise.
3175         * reflection.c (mono_class_bind_generic_parameters): Likewise.
3176         (mono_reflection_bind_generic_method_parameters): Likewise.
3177         * metadata-internals.h: Likewise.
3178         * icall.c (free_generic_context): Kill.
3179         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
3180
3181         * reflection.c (reflection_methodbuilder_to_mono_method): Use
3182         mono_metadata_type_dup.
3183         * marshal.c (mono_mb_create_method): Likewise.
3184
3185         * metadata.c (mono_metadata_type_dup): Rename from
3186         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
3187         MonoImage.  Handle a few more cases, esp. when no mempool is given.
3188         * marshal.c, metadata-internals.h: Update to changes.
3189
3190 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
3191
3192         * class.c: fixed a small leak for array classes and removed warning.
3193
3194 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
3195
3196         * loader.c (mono_method_get_param_token): Make this work on generic methods.
3197         Return 0x8000000 for return parameters. Fixes #82161.
3198
3199 2007-07-21  Marek Habersack  <grendello@gmail.com>
3200
3201         * appdomain.c (get_shadow_assembly_location): append the current
3202         ticks value to the path. Avoids overwriting the same assemblies by
3203         several threads at the same time.
3204
3205 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
3206         and Raja R Harinath  <rharinath@novell.com>
3207
3208         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
3209         Simplify slightly.
3210         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
3211         property for testing if a method is a generic method definition.
3212
3213 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
3214
3215         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
3216
3217 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3218
3219         * verify.c: used function from private branch, reverted to the one in class.h 
3220
3221 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3222
3223         * verify.c: a typo slipped in and the code wont compile
3224
3225 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3226
3227         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
3228         disabled box instruction as it is doing the wrong thing
3229         improved stack dump messages, now it is easier to debug type related issues
3230
3231
3232 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
3233
3234         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
3235
3236 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3237
3238         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
3239         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
3240         grouped with class and valuetype. This change will simply 
3241         the code as it should be handled just like unmanaged pointers.
3242
3243 2007-07-19  Mark Probst  <mark.probst@gmail.com>
3244
3245         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
3246
3247 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3248
3249         * verify.c: several stack merge issues fixed, reference comparisons now
3250         check the type size. strict type check now works correctly.
3251         added more uses of IS_MANAGED_POINTER macro.
3252         fixed issues pointed by running the test suite against .net.
3253         
3254
3255 2007-07-19  Mark Probst  <mark.probst@gmail.com>
3256
3257         * class.c, loader.c, class-internals.h: Removed the
3258         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
3259         defines.
3260
3261         * icall.c: Better error checking in some internal reflection
3262         methods.
3263
3264 2007-07-18  William Holmes  <billholmes54@gmail.com>
3265
3266         * filewatcher.c : removed unused variable 'filename' in 
3267           ves_icall_System_IO_FSW_SupportsFSW
3268
3269 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
3270
3271         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
3272         obsolete, removed.
3273
3274 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
3275
3276         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
3277         
3278         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
3279
3280 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
3281
3282         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
3283         Implement generics support.
3284         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
3285
3286         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
3287         type_args and method_args arguments.
3288         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
3289         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
3290         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
3291
3292 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
3293
3294         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
3295           It adds a rootimage parameter to mono_reflection_get_type_internal,
3296           adds new function mono_reflection_get_type_with_rootimage and use
3297           the rootimage to resolve the types instead of the current image
3298
3299 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3300
3301         * culture-info-table.h: Forgot to update after r78304.
3302
3303 2007-07-13  Raja R Harinath  <rharinath@novell.com>
3304
3305         * class.c (mono_class_is_open_constructed_type)
3306         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
3307
3308 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
3309
3310         * class.c (mono_bounded_array_class_get):  method fails if used with
3311         an incomplete TypeBuilder enum (no basetype field), fixed it by 
3312         avoiding calculating the size for such array as it cannot be instantiated.
3313         Fix bug #82015
3314
3315 2007-07-12  Raja R Harinath  <rharinath@novell.com>
3316
3317         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
3318         field.
3319         * metadata.c, reflection.c: Update to changes.
3320
3321 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
3322
3323         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
3324         mono_class_is_valid_enum, they are used to valide a enum when loading.
3325         * reflection.c: used new functions to throw TypeLoadException when and
3326         invalid enum is build with TypeBuilder. Fixes #82018
3327   
3328 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
3329
3330         * object.c: forgot commit of mono_class_setup_methods () to access
3331         iface->methods.
3332         * object-internals.h: added a few more handy fields to
3333         MonoIMTCheckItem.
3334
3335 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
3336
3337         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
3338         iface->methods.
3339
3340 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
3341
3342         * class-internals.h, object-internals.h, object.c: IMT-based
3343         interface invocation core from Massimiliano Mantione
3344         (massi@ximian.com) with a reworked arch-specific interface,
3345         bsearch implementation and a few bugfixes and memory savings by me.
3346
3347 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
3348
3349         * class.c (mono_class_create_from_typedef): mono would segfault if 
3350         an enum did not have a __value field. It now throws a TypeLoadException
3351         for such cases. Fix bug #82022
3352
3353 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
3354
3355         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
3356
3357 2007-07-09  Mark Probst  <mark.probst@gmail.com>
3358
3359         * class.c (mono_class_init): If a class is already inited but has
3360         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
3361
3362 2007-07-09  Mark Probst  <mark.probst@gmail.com>
3363
3364         * class.c: Properly handle the case of an unimplemented interface
3365         method.  Fixes: 81673.
3366
3367 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
3368
3369         * class-internals.h, object.c: cleanup patch from massi: use
3370         MonoVTable->interface_bitmap since the vtable interfaces offset array
3371         is going away.
3372
3373 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
3374
3375         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
3376         GetMDStreamVersion icall instead.
3377
3378 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
3379
3380         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
3381         not use mono_dl_build_path() with a full library name: makes
3382         fallbacks to libgaim and libfam work.
3383
3384 2007-07-06  William Holmes  <billholmes54@gmail.com>
3385
3386         * assembly.c: Added a continue statement in probe_for_partial_name when
3387          parse_assembly_directory_name fails.  Fixes : 82002
3388
3389 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
3390
3391         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
3392         and added a verification  for TYPEDBYREF.
3393         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
3394         make native int interchangeable with int32 and some small cleanup and formating.
3395         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
3396         handle byref of byref.
3397         * verify.c (push_local): handle byref of byref.
3398         * verify.c (do_binop): invalid mix of values is unverifiable
3399         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
3400         added visibility checks
3401         * verify.c (field related method): added visibility checks
3402         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
3403
3404 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
3405
3406         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
3407         string.
3408
3409 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
3410
3411         * profiler.c (mono_profiler_load): Fix an off-by-one error.
3412
3413         * marshal.c (emit_marshal_string): When returning a string from managed code,
3414         allways make a copy even for unicode strings. Fixes #81990.
3415
3416 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
3417
3418         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
3419         of byref generic inst types (bug #81997).
3420
3421 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
3422
3423         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
3424         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
3425
3426 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
3427
3428         * marshal.c (emit_marshal_string): Add support for unicode strings in
3429         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
3430
3431 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
3432
3433         * verify.c: field load/store are now verified, missing only access checks now
3434
3435 2007-06-28  Martin Baulig  <martin@ximian.com>
3436
3437         * mono-debug.c (mono_debug_debugger_version): New public variable.
3438
3439 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
3440
3441         * locales.c: When constructing DateTimeFormat or NumberFormat for
3442         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
3443         MonoCultureInfo contructed from the current locale is always
3444         read-only and has UseUserOverride set to true. All MonoCultureInfo
3445         instances returned for GetCultures have both IsReadOnly and
3446         UseUserOverride set to true. Fixes part of bug #81930.
3447
3448 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
3449
3450        * icall-def.h: Update System.__ComObject icalls
3451        * marshal.c: Avoid managed transition (and object creation)
3452        when looking up COM interface in RCW.
3453        * marshal.h: Ditto.
3454        
3455        Code is contributed under MIT/X11 license.
3456
3457 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
3458
3459         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
3460         to avoid crashes during assembly unloading.
3461
3462 2007-06-22  Raja R Harinath  <rharinath@novell.com>
3463
3464         Fix MethodInfo.IsGenericMethodDefinition
3465         * reflection.c (mono_reflection_bind_generic_method_parameters):
3466         Rearrange code to ensure we always uses a generic method definition.
3467         * class.c (mono_class_inflate_generic_method_full): Set
3468         'generic_container' field only for generic method definitions.
3469         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
3470         Use presense of 'generic_container' field as indication of being a
3471         generic method definition.
3472
3473 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
3474
3475         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3476
3477         * object-internals.h: Reflect changes in the layout of the managed Delegate
3478         class.
3479         
3480         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
3481         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
3482         runtime memory used by the dynamic method. Fixes #77146.
3483
3484 2007-06-21  Dick Porter  <dick@ximian.com>
3485
3486         * file-io.h: 
3487         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
3488         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
3489         81767.
3490
3491 2007-06-21  Raja R Harinath  <rharinath@novell.com>
3492
3493         * reflection.c (method_encode_methodspec): Add a tripwire.
3494         * class.c (inflate_generic_type): The fully open generic type is
3495         not the same as the generic type definition.
3496
3497 2007-06-21  Martin Baulig  <martin@ximian.com>
3498
3499         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
3500
3501         * mono-debug-debugger.h
3502         (MonoDebuggerBreakpointInfo): Removed.
3503         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
3504         (mono_debugger_remove_breakpoint): Likewise.
3505         (mono_debugger_breakpoint_callback): Likewise.
3506         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
3507
3508 2007-06-21  Raja R Harinath  <rharinath@novell.com>
3509
3510         * metadata.c (mono_metadata_lookup_generic_class): The fully open
3511         generic type is not the same as the generic type definition.
3512         * class.c (mono_generic_class_get_class): Likewise.
3513
3514 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
3515
3516         * icall.c: The second argument to 
3517         System.Reflection.MethodBase.GetMethodFromHandleInternalType
3518         is a MonoType not a MonoClass.
3519
3520 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
3521
3522         * verify.c: support for function pointers in the verifier
3523
3524 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
3525
3526         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
3527
3528 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
3529
3530         * assembly.c: removed Mono.Data.SqliteClient from the list of
3531         forward-compatible assemblies as it breaks the ABI (bug #81899).
3532
3533 2007-06-19  Raja R Harinath  <rharinath@novell.com>
3534
3535         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
3536         lookup/update with the loader lock.
3537         * reflection.c (mono_class_bind_generic_parameters): No need to
3538         protect mono_metadata_lookup_* with the loader lock.
3539         * class.c (inflate_generic_type): Likewise.
3540         
3541         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
3542         on a generic instantiated type.
3543
3544 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
3545
3546         *verify.c: produce meanfull error messages on verification error
3547         *verify.c: fixed some cases of verification errors reported as validation errors
3548         *pedump.c: fixed the error name array, now it shows validation errors properly
3549         *verify.h: fixed the contant that should be used for verification errors
3550
3551 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
3552
3553         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
3554         for bug #77596, 81858 and 80743 (generics data structures on domain
3555         unload).
3556
3557 2007-06-15  Raja R Harinath  <rharinath@novell.com>
3558
3559         Avoid allocating 'MonoGenericContext' on the heap.
3560         * class-internals (_MonoMethodInflated::context): Make field
3561         inline, not a pointer.
3562         * loader.c (method_from_methodspec): Allocate 'new_context' on the
3563         stack.  Use the context embedded within the inflated method as the
3564         hash key, rather than 'new_context'.
3565         * class.c (inflate_generic_context): Simplify.  Return a struct
3566         rather than allocating on the heap.
3567         (mono_class_inflate_generic_method_full): Update to changes.  Now,
3568         doesn't salt away a copy of the context -- simplifying the
3569         lifetime rules of a 'MonoGenericContext *'.
3570         (mono_method_get_context): Return pointer to embedded context.
3571         (setup_generic_array_ifaces): Allocate temporary context on stack.
3572         * reflection.c (inflate_mono_method): Likewise.
3573         (mono_reflection_bind_generic_method_parameters): Likewise.
3574         Use the context embedded within the inflated method as the hash key.
3575
3576         Avoid a source of allocation of 'MonoGenericContext'.
3577         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
3578         and 'cached_context' fields into embedded 'MonoGenericContext' field.
3579         * class.c: Update to changes.
3580         (mono_generic_class_get_context): Simplify drastically.  Now just
3581         returns a pointer to the field.
3582         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
3583         argument as a const pointer.
3584         (mono_metadata_generic_context_equal): Likewise.
3585         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
3586         Update to changes.
3587
3588 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
3589
3590         * verify.c improved the handling of brtrue/brfalse, factored out common code
3591
3592 2007-06-14  Raja R Harinath  <rharinath@novell.com>
3593
3594         Kill MonoGenericMethod.
3595         * class-internals.h (MonoGenericContext::method_inst): Rename from
3596         'gmethod' and convert to a MonoGenericInst.
3597         (MonoGenericMethod): Remove.
3598         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
3599         * loader.c (method_from_methodspec): Update to changes.  Use a
3600         MonoGenericContext as the key to the hashtable.
3601         * metadata.c (mono_metadata_generic_context_equal): Rename from 
3602         'mono_metadata_generic_method_equal' and take MonoGenericContext.
3603         (mono_metadata_generic_context_hash): Likewise from
3604         'mono_metadata_generic_method_hash'.  Change hash function.
3605         (mono_metadata_load_generic_params): Update to changes.
3606         (mono_get_shared_generic_method): Remove.
3607         * metadata-internals.h (mono_get_shared_generic_method): Remove.
3608         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
3609         (inflate_generic_context): Likewise.
3610         (mono_class_inflate_generic_method_full): Likewise.
3611         (setup_generic_array_ifaces): Likewise.
3612         (mono_class_create_from_typespec): Likewise.
3613         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
3614         (method_encode_methodspec): Update callsite.
3615         (reflection_methodbuilder_to_mono_method): Update to changes.
3616         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
3617         MonoGenericContext as the key to the hashtable.
3618         (inflate_mono_method): Update to changes.
3619
3620         * class-internals.h (MonoGenericMethod::container): Remove.
3621         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
3622
3623 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
3624
3625         * profiler-private.h, profiler.c, profiler.h: added API to profile
3626         exception events.
3627
3628 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
3629
3630         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
3631
3632 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
3633
3634         * verify.c: method invocation is now validated, now we verify parameter types on stack.
3635         Fixed overflow and underflow not aborting the verification process.
3636
3637 2007-06-13  Mark Probst  <mark.probst@gmail.com>
3638
3639         * class-internals.h (MonoStats): Added stats entries for dynamic
3640         code allocations.
3641
3642 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
3643
3644         * loader.c (mono_free_method): Free header->locals and header->clauses.
3645
3646         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
3647         dynamic case.
3648
3649         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
3650
3651         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
3652
3653 2007-06-12  Raja R Harinath  <rharinath@novell.com>
3654
3655         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
3656         the tables.
3657
3658 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
3659
3660         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
3661
3662 2007-06-11  Raja R Harinath  <harinath@gmail.com>
3663
3664         MonoGenericMethod on a diet
3665         * class-internals.h (_MonoMethodInflated::reflection_info): Move
3666         here ...
3667         (_MonoGenericMethod::reflection_info): ... from here.
3668         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
3669         Update to changes.
3670         * reflection.c (inflate_mono_method): Likewise.
3671         (mono_reflection_bind_generic_method_parameters): Likewise.
3672
3673 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
3674
3675         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
3676         *verify.c: factored long ldarg forms to share code with short forms
3677
3678 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
3679
3680         *verify.c: fixed code formating factored some duplicate code
3681         into a new function
3682
3683         *verify.h: fixed binary incompatibility introduced earlier
3684
3685         *pedump.c: fixed formating
3686
3687 2007-06-11  Raja R Harinath  <harinath@gmail.com>
3688
3689         Fix assertion when disassembling Mono.C5.dll
3690         * loader.c (method_from_methodspec): Avoid inflating a method
3691         twice with the same context.  If the methodref is inflated, use
3692         the declaring method instead.
3693
3694         * class.c (mono_class_from_generic_parameter): Fix case similar to
3695         bug #81830 handled below, but for method containers.
3696
3697 2007-06-10  Raja R Harinath  <harinath@gmail.com>
3698
3699         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
3700         get_shared_generic_class.  Directly inflate the instance.
3701         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
3702         (inflate_generic_class): Delete.
3703         (get_shared_generic_class): Delete.  Move setting of
3704         'cached_class' and 'cached_context' ...
3705         * metadata.c (mono_metadata_lookup_generic_class): ... here.
3706
3707         * metadata.c (mono_metadata_lookup_generic_class): Change
3708         signature to take the components of a MonoGenericClass rather than
3709         an allocated MonoGenericClass.  Change semantics to be intern-like.
3710         * reflection.c (mono_class_bind_generic_parameters): Update to
3711         changes.  Make locking region tighter.
3712         * class.c (inflate_generic_class): Update to changes.
3713         (get_shared_generic_class): Likewise.
3714         * metadata-internals.h: Likewise.
3715
3716         * reflection.c (mono_class_bind_generic_parameters): Take and
3717         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
3718         (mono_reflection_bind_generic_parameters): Use
3719         'mono_class_bind_generic_parameters' rather than duplicate the code.
3720         * class.c (mono_bounded_array_class_get): Update to changes.
3721         * object-internals.h: Likewise.
3722
3723         * reflection.c (mono_class_bind_generic_parameters): Only support
3724         parameterizing generic type definitions.  Remove support for other
3725         open types.
3726
3727 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
3728
3729         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
3730
3731         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
3732         in the dynamic case.
3733
3734 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
3735
3736         * threads.c: When cleaning up thread, reset the Background bit.
3737         Fixes bug #81720.
3738
3739 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
3740
3741        * metadata.c: Move variable declarations to top of scope.
3742        * verify.c: Move variable declarations to top of scope.
3743
3744        Code is contributed under MIT/X11 license.
3745
3746 2007-06-08  Raja R Harinath  <rharinath@novell.com>
3747
3748         * reflection.c (mono_class_bind_generic_parameters): Replace
3749         open-coded loop with mono_metadata_inflate_generic_inst.
3750
3751         * class.c (get_shared_generic_class): Don't call
3752         mono_get_shared_generic_inst.  Use the container's own
3753         'class_inst'.
3754
3755         * metadata.c (mono_metadata_load_generic_params): Move
3756         initialization of 'context' field here from ...
3757         * class.c (mono_class_create_from_typedef): ... here, and ...
3758         * loader.c (mono_get_method_from_token): ... here.
3759
3760         * class.c (get_shared_generic_class): Rename from
3761         mono_get_shared_generic_class and make static.
3762         (mono_get_shared_generic_inst): Move to metadata.c.
3763         * loader.c (mono_get_shared_generic_method): Likewise.
3764         * class-internals.h, metadata-internals.h: Update to changes.
3765
3766         Fix #81830
3767         * class.c (mono_class_from_generic_parameter): Don't assume a
3768         generic container owner exists.  Generic containers from monodis
3769         don't have any.
3770
3771 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
3772
3773         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
3774         * verify.h: new typedefs to returns the non-verifiable status
3775         * verify.c: initial implementation of generics, stack merging and object compatibility check
3776
3777 2007-06-06  Mark Probst  <mark.probst@gmail.com>
3778
3779         * class.c, image.c, class-internals.h (MonoImage): class_cache is
3780         a MonoInternalHashTable again (fixed bug in internal hash table
3781         code).
3782
3783 2007-06-06  Mark Probst  <mark.probst@gmail.com>
3784
3785         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
3786         MonoInternalHashTable again (fixed bug in internal hash table
3787         code).
3788
3789 2007-06-06  Mark Probst  <mark.probst@gmail.com>
3790
3791         * class.c, image.c, class-internals.h, domain.c,
3792         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
3793         changes.  Have to figure out what makes them break the SWF
3794         regression.
3795
3796 2007-06-04  Mark Probst  <mark.probst@gmail.com>
3797
3798         * class.c, image.c, class-internals.h (MonoImage): class_cache is
3799         a MonoInternalHashTable now.
3800
3801 2007-06-04  Mark Probst  <mark.probst@gmail.com>
3802
3803         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
3804         MonoInternalHashTable now.
3805
3806 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
3807
3808         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
3809         invoke_impl code.
3810
3811         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
3812
3813         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
3814         dependent trampoline.
3815
3816         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3817
3818         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
3819
3820 2007-05-29  Robert Jordan  <robertj@gmx.net>
3821
3822         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
3823
3824 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
3825
3826         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
3827
3828 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
3829
3830        * marshal.c: Fix interface lookup loops for
3831        cominterop_get_com_slot_for_method and 
3832        cominterop_get_method_interface. Only need to lookup
3833        if type is a class, else use interface type method is on.
3834
3835        Code is contributed under MIT/X11 license.
3836
3837 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
3838
3839         * reflection.c: HasSecurity can be present even if no specially 
3840         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
3841         SecurityAttribute). Fix CAS regression tests on buildbot.
3842
3843 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
3844
3845        * appdomain.c: Add configure checks for header files.
3846        * image.c: Add configure checks for header files.
3847        * file-io.c: Add configure checks for header files.
3848        * debug-mono-symfile.c: Add configure checks for header files.
3849        * threadpool.c: Add configure checks for header files.
3850        * console-io.c: Add configure checks for header files.
3851        * profiler.c: Add configure checks for header files.
3852        * rawbuffer.c: Add configure checks for header files.
3853        * icall.c: Add configure checks for header files.
3854        * rand.c: Add configure checks for header files.
3855        * socket-io.c: Add configure checks for header files.
3856
3857        Code is contributed under MIT/X11 license.
3858
3859 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
3860
3861         * reflection.c (mono_custom_attrs_from_builders): Remove the 
3862         assertion as it breaks the build.
3863         
3864         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
3865
3866         * reflection.c (lookup_custom_attr): Make a copy here too.
3867
3868         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
3869         dynamic images.
3870
3871         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
3872         images.
3873
3874         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
3875         info.
3876
3877 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
3878
3879         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
3880         (load_cattr_value): Ditto.
3881
3882 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
3883
3884         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
3885
3886 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
3887
3888         * threads.c: In "start_wrapper", set apartment_state to MTA if
3889         apartment_state is Unknown and we're running on 2.0 profile or
3890         higher.
3891         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
3892         to main method, then set apartment_state to Unknown on 1.0 profile,
3893         and MTA on 2.0 profile.
3894
3895 2007-05-16  Jb Evain  <jb@nurv.fr>
3896
3897         * class-internals.h (MonoDefaults): Add an attribute_class and
3898           customattribute_data_class.
3899         * domain.c (mono_init_internal): Populate them.
3900         * reflection.c: Use them to remove duplicates. Make a vew
3901         MonoClass variables `static'.
3902
3903 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
3904
3905         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
3906         step in implementing IMT, so that all isinst checks now can go
3907         through the bitmap.
3908         This was needed because vtables for TransparentProxy need to look
3909         like the vtable of the "target" class, so they need to point to
3910         its interface bitmap directly.
3911
3912         * object.c: inside "mono_class_create_runtime_vtable" and
3913         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
3914
3915 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
3916
3917         * object-internals.h
3918           culture-info.h : added territory field in MonoCulture and
3919           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
3920         * locales.c : fill territory field above too.
3921         * culture-info-table.h : regenerated.
3922
3923 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
3924
3925         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
3926         Fixes #81599.
3927
3928 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
3929
3930         * object.c: Always initialize apartment, even if 
3931         there is no custom attributes on entry point.
3932         
3933         Code is contributed under MIT/X11 license.
3934
3935 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
3936
3937         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
3938         * metadata.c: If no encoding is set, check for unicode
3939         on class.
3940         
3941         Code is contributed under MIT/X11 license.
3942
3943 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
3944
3945         * threads.c: Handle if mono_thread_current returns NULL 
3946         
3947         Code is contributed under MIT/X11 license.
3948
3949 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
3950
3951         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
3952         in start_wrapper. Added mono_thread_init_apartment_state and
3953         mono_thread_cleanup_apartment_state.
3954         * object.c: Initialize thread apartment state on main thread
3955         by checking for STAThreadAttribute on entry point.
3956         * object-internals.h: Add apartment_state field to MonoThread.
3957         * threads-types.h: Add unmanaged definition of 
3958         System.Threading.ApartmentState, MonoThreadApartmentState.
3959         
3960         Code is contributed under MIT/X11 license.
3961         
3962 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
3963
3964         * class.c: Fix windows build.
3965         * class-internals.h: Fix windows build.
3966         
3967         Code is contributed under MIT/X11 license.
3968
3969 2007-05-08  Robert Jordan  <robertj@gmx.net>
3970
3971         * process.c (CreateProcess_internal):
3972         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
3973         .CreateNoWindow was specified. Fixes #81496.
3974
3975 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
3976
3977         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
3978         step in implementing IMT, replaced it with two compact arrays
3979         (interfaces_packed and interface_offsets_packed) and a bitmap that
3980         is used for isinst checks (interface_bitmap).
3981
3982         * class.c: (compare_interface_ids): compare function to pass to
3983         bsearch when looking for an interface with a given id.
3984         (mono_class_interface_offset): reimplemented using bsearch on
3985         interfaces_packed, getting the offset from interface_offsets_packed.
3986         (print_implemented_interfaces): utility debugging function.
3987         (setup_interface_offsets): reworked to initialize interfaces_packed,
3988         interface_offsets_packed and interface_bitmap.
3989
3990         * object.c: replaced all accesses to "MonoClass.interface_offsets"
3991         with uses of interfaces_packed and interface_offsets_packed.
3992
3993 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
3994
3995         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
3996         mono_class_interface_offset prototype to wrap all accesses to
3997         "MonoClass.interface_offsets".
3998
3999         * class.c: Implemented mono_class_interface_offset, and wrapped all
4000         accesses to "MonoClass.interface_offsets".
4001
4002         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
4003         "MonoClass.interface_offsets".
4004
4005 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
4006
4007         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
4008         GetMethodFromHandle overloads (bug #78637).
4009
4010 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
4011
4012         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
4013         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
4014
4015 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
4016
4017         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
4018         #81498.
4019
4020         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
4021         gracefully.
4022         (mono_custom_attrs_from_index): Ditto.
4023
4024         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
4025         Fixes #81501.
4026
4027 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
4028
4029         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
4030         is now allocated from a mempool.
4031
4032 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
4033
4034         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
4035         caller holds threads_lock, leading to deadlocks. Fixes #81476.
4036
4037 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
4038
4039         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
4040         mono_loader_clear_error () too late. Fixes #81463.
4041
4042 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
4043
4044         * culture-info-table.h : regenerated.
4045
4046 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
4047
4048         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
4049         is missing.
4050
4051 2007-04-25  Dick Porter  <dick@ximian.com>
4052
4053         * Makefile.am: Put the mingw enforced-optimisation back into the
4054         PLATFORM_WIN32 section.
4055
4056 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
4057
4058         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
4059         patch.
4060
4061         * image.c (mono_image_load_module): New API function to load a module reference.
4062
4063         * image.c (load_modules): Load modules lazily. Fixes #80812.
4064
4065         * class.c (mono_class_from_typeref): Use mono_image_load_module.
4066         
4067         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
4068
4069         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
4070         to mono_image_load_module_dynamic.
4071
4072 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
4073
4074         * marshal.c: Fix calling convention for CCW on non-windows
4075         platforms. STDCALL on windows, CDECL everywhere else to work 
4076         with XPCOM and MainWin COM.
4077         
4078         Code is contributed under MIT/X11 license.
4079
4080 2007-04-23  Martin Baulig  <martin@ximian.com>
4081
4082         Fix #80969.
4083
4084         * loader.c
4085         (method_from_memberref): Added `gboolean *used_context' argument.
4086         (mono_get_method_from_token): Likewise.
4087         (mono_get_method_full): Don't insert the method in the cache when
4088         `used_context' is true.
4089
4090 2007-04-23  Raja R Harinath  <rharinath@novell.com>
4091
4092         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
4093
4094         * reflection.c (mono_reflection_bind_generic_parameters): Don't
4095         create new MonoTypes for returned types.
4096         * class.c (mono_generic_class_get_class): Export mono-internal.
4097         * class-internals.h: Update to changes.
4098
4099 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
4100
4101         * threadpool.c, threadpool.h, icall-def.h: patch from
4102         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
4103
4104 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
4105
4106         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
4107         
4108         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
4109
4110         * threads.c (mono_thread_get_stack_bounds): New helper function.
4111
4112         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
4113         Correctly compute stack bounds when attaching. Fixes #81394.
4114
4115 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
4116
4117         * reflection.c: fix handling of doubles in custom attributes
4118         for the arm-fpa format (bug #81368).
4119
4120 2007-04-18  Raja R Harinath  <rharinath@novell.com>
4121
4122         * reflection.c (assembly_add_win32_resources): Mildly relax an
4123         bounds check to let the end pointer point just past the end of the
4124         allocated buffer.  (may fix #81384)
4125
4126 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
4127
4128         * culture-info-table.h : regenerated.
4129
4130 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
4131
4132         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
4133         the thread is aborted early.
4134
4135 2007-04-05  Dick Porter  <dick@ximian.com>
4136
4137         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
4138         FindFirstFile()/FindNextFile() to find entries.  This lets the
4139         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
4140         81038.
4141
4142         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
4143         the parameters of
4144         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
4145
4146 2007-04-04  Martin Baulig  <martin@ximian.com>
4147
4148         * debug-helpers.c
4149         (mono_method_desc_full_match): Add support for nested classes.
4150
4151 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
4152
4153         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
4154
4155 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
4156
4157         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
4158         waiting for too many threads.
4159
4160 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4161
4162         * environment.c: Fix return value check on uname so we can get the 
4163         executing version on Solaris operating systems.
4164
4165 2007-03-28  Jb Evain  <jbevain@gmail.com>
4166
4167         * class.c (mono_type_get_name_recurse): Complete the
4168         fix for the creation of assembly qualified names for
4169         pointer types. Fixes #81208.
4170
4171 2007-03-27  Dick Porter  <dick@ximian.com>
4172
4173         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
4174         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
4175         changed.
4176
4177         * threads.c
4178         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
4179         the value of ReleaseMutex().
4180
4181 2007-03-27  Dick Porter  <dick@ximian.com>
4182
4183         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
4184         in little-endian order, not network endian, so must be converted
4185         to host endian here.  Fixes bug 80593.
4186
4187 2007-03-22  Jb Evain  <jbevain@gmail.com>
4188
4189         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
4190         qualified names for pointer types. Fixes #81208.
4191
4192 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
4193
4194         * marshal.c: Add support for PreserveSigAttribute. 
4195         
4196         Code is contributed under MIT/X11 license.
4197
4198 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
4199
4200         * process.c: Fix endianness issues. Fixes #81126.
4201
4202         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
4203         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
4204
4205         * image.c (mono_image_lookup_resource): Make this work on big-endian
4206         machines.Change API contract so the caller needs to free the return value.
4207         
4208         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
4209         API change.
4210         
4211 2007-03-14  Martin Baulig  <martin@ximian.com>
4212
4213         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
4214         mono_type_get_desc() as well.
4215
4216 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
4217
4218         * icall.c:  Fix environ access in VS.  
4219         
4220 2007-03-13  Alp Toker  <alp@atoker.com>
4221
4222         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
4223         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
4224         #63841.
4225
4226 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
4227
4228         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
4229         circular references among dynamic methods. Fixes #81091.
4230
4231         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
4232
4233 2007-03-09  Martin Baulig  <martin@ximian.com>
4234
4235         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
4236
4237 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
4238
4239         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
4240         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
4241         
4242         Code is contributed under MIT/X11 license.
4243         
4244 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
4245
4246         * loader.c: Reapply patch for bug #79424.
4247
4248 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
4249
4250         * metadata.c (mono_type_to_unmanaged): Only convert object to
4251         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
4252
4253 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
4254
4255         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
4256         (and incorrectly set) is_reference field from MonoGenericInst.
4257
4258 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
4259
4260         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
4261         a little earlier.
4262
4263         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
4264
4265         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
4266
4267 2007-03-05  Miguel de Icaza  <miguel@novell.com>
4268
4269         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
4270         FileOptions.1 value to mean "temporary", map that to
4271         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
4272
4273         Fixes 80688
4274
4275 2007-03-03  Marek Habersack  <mhabersack@novell.com>
4276
4277         * appdomain.c: implement MS .Net style shadow copying. Copies of
4278         the assemblies are made in a subdirectory of the dynamic base
4279         directory, the assembly names are preserved.
4280         Copy .mdb and .config files along with the assemblies being shadowed.
4281
4282 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
4283
4284         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
4285         (emit_marshal_handleref): Ditto.
4286
4287         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
4288         on Visual C++. Fixes #80671.
4289
4290 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
4291
4292         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
4293         for clone operations.
4294
4295 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
4296
4297         * marshal.c: Fix warnings.
4298
4299 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
4300
4301         * loader.c: allow case-insensitive matching of the dll name
4302         in dllmap handling when prefixed with "i:".
4303
4304 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
4305
4306         * threads.c: Fix #ifdef for dummy_apc function for VS.
4307
4308 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
4309
4310         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
4311
4312 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
4313         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
4314         giving precedence to the methods with a fully qualified name
4315         (InterfaceName.MethodName) when building the interface sections
4316         of the vtable.
4317
4318 2007-02-16  Dick Porter  <dick@ximian.com>
4319
4320         * threadpool.c (append_job): Fix fast-path array handling, so it's
4321         less likely the array will grow exponentially when the load is
4322         heavy.
4323
4324 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
4325
4326         * metadata-internals.h, loader.c: fix dllmap lookup order
4327         for non-function maps, too, and prepare for fallback code.
4328
4329 2007-02-12  Robert Jordan  <robertj@gmx.net>
4330
4331         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
4332         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
4333         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
4334         GlobalFree. Fixes a part of bug #77075.
4335
4336 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
4337
4338         * loader.c: implemented typedef parent in field memberref.
4339
4340 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
4341
4342         * marshal.c: Fix warnings and remember to call Release on
4343         IUnknown of RCW.
4344         
4345         Code is contributed under MIT/X11 license.
4346
4347 2007-02-10  Miguel de Icaza  <miguel@novell.com>
4348
4349         * class-internals.h: Add MonoHandleRef definition, and
4350         handleref_class to mono_defaults. 
4351
4352         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
4353         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
4354
4355         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
4356         (do nothing on this stage)
4357         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
4358         (emit_marshal_handleref): New method, used for argument handling
4359         of HandleRefs. 
4360
4361 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
4362
4363         * class.c (mono_class_setup_parent): Lazily init com types.
4364         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
4365         init com types.
4366         * object.c (mono_remote_class_vtable): Lazily init com types.
4367         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
4368         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
4369         * domain-internals.h: Expose mono_init_com_types.
4370         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
4371         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
4372         Add support for COM Callable Wrapper marshalling.
4373         * marshal.h: Add icall definitions.
4374         * gc.c: Handle freeing of CCWs in finalizer code.
4375         
4376         Code is contributed under MIT/X11 license.
4377
4378 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
4379
4380         * reflection.c: changed all the signature encoding code to use
4381         a variable-sized buffer.
4382
4383 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
4384
4385         * marshal.c: locking fixes: never take the loader lock
4386         or other runtime locks when holding the marshal lock
4387         (fixes bug#80664).
4388
4389 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
4390
4391         * marshal.c: make the delegate function pointer mapping
4392         work for the moving GC.
4393
4394 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
4395
4396         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
4397         for bug #80618.
4398
4399 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
4400
4401         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
4402         gmodule.
4403
4404 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
4405
4406         * threadpool.c: made the code moving-GC safe.
4407
4408 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
4409
4410         * assembly.c, boehm-gc.c, class-internals.h, class.c,
4411         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
4412         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
4413         warning cleanup.
4414         * reflection.c: warning cleanup, some threading and moving GC fixes.
4415
4416 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
4417
4418         * class.c, loader.c: create the needed Set/Get/Address array methods
4419         as well as the .ctors in mono_class_init (), fixes bug #80567.
4420
4421 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
4422
4423         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
4424         we doesn't decrease its alignment. Should fix the sparc build.
4425
4426 2007-01-24  Dick Porter  <dick@ximian.com>
4427
4428         * socket-io.c
4429         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4430         Create the returned object if we need to ignore an unsupported
4431         socket option.  Fixes a segfault reported by Atsushi.
4432
4433 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
4434
4435         * class.c, object.c: restrict GC-tracked fields to
4436         UIntPtr fields used inside corlib, so we provide better
4437         type info to the GC and also allow broken packing as in
4438         bug #80580.
4439
4440 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
4441
4442         * sgen-gc.c: removed duplicated function.
4443
4444 2007-01-19  Miguel de Icaza  <miguel@novell.com>
4445
4446         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
4447         value that means that the value is not supported, but that we
4448         should not return a failure, but instead report this as a
4449         successful operation.
4450
4451 2007-01-19  Raja R Harinath  <rharinath@novell.com>
4452
4453         Fix tests/bug79956.2.il
4454         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
4455         (mono_generic_class_get_class): If the generic definition in an
4456         enum, copy over other fields related to it.
4457
4458 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
4459
4460         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
4461         genericinst enums (bug #79215).
4462
4463 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
4464         * class.c: Fix bug 80307.
4465
4466 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
4467
4468         * image.c: if the file table is not present, try to load
4469         all the modules, since we don't have info about them
4470         having or not metadata (bug #80517).
4471         * assembly.c: allow mono_assembly_load_references () to
4472         work for netmodules.
4473
4474 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
4475
4476         * image.c, metadata-internals.h, object.c: execute module
4477         cctors when running on the 2 runtime if present (bug #80487).
4478
4479 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
4480
4481         * icall.c: optimized InitializeArray() on bigendian.
4482
4483 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
4484
4485         * icall.c: fix for the broken ARM FPA double format.
4486
4487 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
4488
4489         * icall.c: handle endian issues for r4 and r8 types, too, in
4490         the InitializeArray() icall.
4491
4492 2007-01-15  Miguel de Icaza  <miguel@novell.com>
4493
4494         * loader.c (mono_loader_error_prepare_exception): Clear the error
4495         once we have extracted the information from it, do this before we
4496         call into the JIT's class loading mechanisms.
4497
4498         * object.c (mono_class_create_runtime_vtable): Do not clear the
4499         loader error before calling mono_class_get_exception_for_failure
4500         as the loader error is needed inside
4501         mono_class_get_exception_for_failure to throw the error (thinko).
4502
4503         Fixes #80521
4504         
4505 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
4506
4507         * reflection.c: align fields rva data so it's faster to load at
4508         runtime.
4509
4510 2007-01-12  Raja R Harinath  <rharinath@novell.com>
4511
4512         Prepare to simplify GenericMethod handling.
4513         * class-internals.h (mono_method_get_context): New accessor function.
4514         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
4515         rather than directly accessing '->context' field.
4516
4517         * class-internals.h (_MonoGenericParam.method): Move ...
4518         (_MonoGenericContainer): ... here.  Add into union with klass field.
4519         * class.c, icall.c, loader.c, metadata.c, reflection.c:
4520         Update to changes.
4521
4522 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
4523
4524         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
4525         the wrapper type enum and reduce relocations.
4526
4527 2007-01-12  Raja R Harinath  <rharinath@novell.com>
4528
4529         * reflection.c (inflate_mono_method): Reuse method instantiation
4530         from the generic method, if available.
4531
4532 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
4533
4534         * marshal.c (emit_marshal_variant): Fix conv_arg
4535         type in last commit, based on whether parameter is byref.
4536         
4537 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
4538
4539         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
4540         marshalling.
4541         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
4542         MONO_TYPE_OBJECT back for VARIANT support.
4543
4544 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
4545
4546         * marshal.c, marshal.h, icall-def.h: Implement 
4547         Marshal.ReAllocCoTaskMem.
4548
4549 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
4550
4551         * marshal.c: memory retention fixes: use the proper
4552         image cache for runtime_invoke method lookups.
4553
4554 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
4555
4556         * mempool.c: added code to help debug mempool allocations.
4557
4558 2007-01-11  Dick Porter  <dick@ximian.com>
4559
4560         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
4561         support (experimenting with faking it with IP_MTU_DISCOVER for
4562         systems that don't have IP_DONTFRAGMENT.)
4563         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
4564         icall.
4565
4566         * icall-def.h: new System.Net.Sockets.Disconnect icall.
4567
4568         * socket-io.h: Add new fields to MonoSocketAsyncResult
4569         corresponding to the new ones in Socket.cs.
4570
4571 2007-01-11  Raja R Harinath  <rharinath@novell.com>
4572
4573         Fix IronPython regression mentioned in #80249
4574         * metadata.c (do_mono_metadata_parse_generic_class): Clear
4575         'cached_context' field, since it may have been initialized as a
4576         side-effect of metadata parsing.
4577
4578         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
4579         (_MonoGenericClass.cached_class): Move here and rename from lone
4580         remaining field of ...
4581         (_MonoInflatedGenericClass): ... this.  Remove.
4582         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
4583         to changes.
4584
4585         Fix mcs/tests/test-128.cs regression.
4586         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
4587         2007-01-10 change below.
4588         [MONO_TYPE_OBJECT]: Recurse into array case.
4589
4590 2007-01-11  Raja R Harinath  <harinath@gmail.com>
4591
4592         * class-internals.h (mono_get_inflated_generic_class): Remove.
4593         * class.c (mono_get_inflated_generic_class): Remove.
4594         (mono_generic_class_get_class): Rename from
4595         mono_class_create_generic.
4596         (mono_class_from_mono_type) [GENERICINST]: Use it.
4597         * reflection.c, metadata.c: Update to changes.  Use
4598         'mono_class_from_mono_type'.
4599
4600 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
4601
4602         * reflection.c: use passed type when encoding an array element
4603         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
4604
4605 2007-01-09  Robert Jordan  <robertj@gmx.net>
4606
4607         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
4608         result arguments (someDelegate.EndInvoke (unrelatedAres)).
4609         Fixes bug #80392.
4610
4611 2007-01-09  Raja R Harinath  <rharinath@novell.com>
4612
4613         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
4614
4615         * object.c (set_value): Avoid aliasing between type->data.klass
4616         and type->data.generic_class.
4617
4618         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
4619
4620 2007-01-08  Raja R Harinath  <rharinath@novell.com>
4621
4622         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
4623         between type->data.klass and type->data.generic_class.
4624
4625 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
4626
4627         * marshal.c: In MS.NET, StringBuilder objects are not copied by
4628         value in out parameters.
4629
4630 2007-01-08  Raja R Harinath  <rharinath@novell.com>
4631
4632         Simplify invariant for MonoGenericClass::klass field.
4633         * class.c (mono_class_create_generic): Verify 'klass' is null.
4634         * metadata.c (do_mono_metadata_parse_generic_class): Don't
4635         initialize 'klass' field.
4636
4637 2007-01-05  Raja R Harinath  <rharinath@novell.com>
4638
4639         Ongoing work to avoid redundant data and simplify invariants.
4640         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
4641         'generic_class', and change type to a GenericInst.
4642         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
4643         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
4644
4645 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
4646
4647         * class.c : skip io-layer under PLATFORM_WIN32.
4648
4649 2007-01-03  Tor Lillqvist  <tml@novell.com>
4650
4651         Fix #80305: In a bundled executable, look in the bundled exe
4652         assembly to determine the runtime version. Add the possibility to
4653         bundle also the machine.config file.
4654         
4655         * assembly.c (mono_assembly_open_from_bundle): Make
4656         non-static. Allow being called even if we have no bundled
4657         assemblies, and return NULL right away in that case.
4658
4659         * domain-internals.h: Declare mono_assembly_open_from_bundle()
4660         here.
4661
4662         * domain.c (app_config_parse): Take an assembly exe file name as
4663         parameter instead of a config file name. Check for a bundled
4664         config file for that assembly by calling
4665         mono_config_string_for_assembly_file() (see below) before looking
4666         for one in the file system.
4667         (get_runtimes_from_exe): Corrsponding change to call of
4668         app_config_parse().
4669         (get_runtimes_from_exe): Check for bundled assembly exe file first
4670         by calling mono_assembly_open_from_bundle(). If no bundled
4671         assembly exe file is found, call mono_image_open() as before to
4672         look it up in the file system.
4673
4674         * mono-config.c: Add variable bundled_machinec_onfig.
4675         (mono_config_string_for_assembly_file): New function.
4676         (mono_config_for_assembly): Move code snippet that looks for a
4677         bundled assembly .config file into the above new function. Call
4678         it.
4679         (mono_register_machine_config, mono_get_machine_config): New
4680         functions to set and retrieve
4681
4682         * assembly.h: Declare mono_register_machine_config().
4683
4684         * mono-config.h: Declare mono_get_machine_config() and
4685         mono_config_string_for_assembly_file().
4686
4687         * icall.c: No declaration of environ necessary on Win32. It is
4688         declared (as a macro expanding to a function call) in stdlib.h.
4689         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
4690         New internal mono function. Returns the value of
4691         mono_get_machine_config() as a Mono string.
4692
4693         * icall-def.h: Add get_bundled_machine_config().
4694
4695 2007-01-04  Raja R Harinath  <rharinath@novell.com>
4696
4697         Remove redundant field
4698         * class-internals.h (_MonoGenericContext.container): Remove field.
4699         * loader.c (mono_method_get_signature_full): Don't parse a
4700         "container" for a signature parse when the signature is inflated
4701         immediately.
4702         (method_from_methodspec): Likewise, for a generic_inst.
4703         * class.c, metadata.c, reflection.c: Update to changes.
4704
4705 2006-01-04  Raja R Harinath  <rharinath@novell.com>
4706
4707         * class-internals.h (_MonoGenericClass): Rename 'context' field to
4708         'cached_context', and change semantics -- it starts off NULL, and
4709         is initialized on demand.
4710         * class.c (mono_generic_class_get_context): New accessor to
4711         replace 'context' field accesses.
4712         (mono_class_get_context): New helper.
4713         (*): Update to changes.
4714         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
4715
4716 2007-01-03  Miguel de Icaza  <miguel@novell.com>
4717
4718         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
4719         before the memcpy.   Fixes Marshal2 regression.
4720
4721 2007-01-02  Jb Evain  <jbevain@gmail.com>
4722
4723         * blob.h: add a MONO_TYPE_ENUM definition
4724         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
4725         fix the encoding of arrays of enums in custom attributes.
4726
4727         Fixes #79666.
4728
4729 2007-01-01  Miguel de Icaza  <miguel@novell.com>
4730
4731         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
4732         string is null terminated, but only cut the string short if it
4733         overflows the buffer.   
4734         
4735         (mono_string_to_byvalstr): Also fix this routine.   The code here
4736         was not properly terminating a string (it was only terminated
4737         because of the previous catch-all memset). 
4738
4739         I left the memset, because I do not know if applications expect
4740         the runtime to clear this region. 
4741
4742         Fixes #79944.
4743
4744         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
4745         Clear the error before returning to unmanaged code to prevent the
4746         runtime from being confused later on (fixes  80420).
4747         (ves_icall_type_from_name): Always call mono_loader_clear_error
4748         after parsing a type that could have failed.
4749         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
4750
4751         * loader.c (mono_loader_clear_error): Fix indentation.
4752
4753 2006-12-28  Martin Baulig  <martin@ximian.com>
4754
4755         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
4756
4757 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
4758
4759         * reflection.c: patch from Rolf Bjarne Kvinge to fix
4760         getting a token for an EnumBuilder.
4761
4762 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4763
4764         * reflection.c: be more careful in case resource generation
4765         fails to create the data array.
4766
4767 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
4768
4769         * sgen-gc.c: write barrier for clone and fix unregister handles.
4770
4771 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
4772
4773         * reflection.c: some fixes needed in the generics code for the moving GC.
4774
4775 2006-12-22  Robert Jordan  <robertj@gmx.net>
4776
4777         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
4778         account. Fixes bug #80299.
4779
4780 2006-12-21  Raja R Harinath  <rharinath@novell.com>
4781
4782         Fix WaitHandle usage in delegates.
4783         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
4784         * object.c (mono_wait_handle_new): Use the property set method to
4785         initialize the handle.
4786         (mono_wait_handle_get_handle): New.
4787         * threadpool.c (mono_async_invoke): Use it.
4788         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
4789         Likewise.
4790         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
4791
4792 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
4793
4794         * marshal.c (emit_marshal): Call emit_marshal_variant and
4795         emit_marshal_com_interface when applicable.
4796         (emit_marshal_variant, emit_marshal_com_interface): Add
4797         methods for this case and remove if's from emit_marshal_object.
4798         
4799 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
4800
4801         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
4802
4803 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
4804
4805         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
4806         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
4807         and GlobalFree on Windows. Remove FIXME.
4808
4809 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
4810
4811         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
4812         implementation for managed objects.
4813
4814 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
4815
4816         * object.c: implemented code to be used for checking
4817         that no reference field overlaps with non-references.
4818
4819 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4820
4821         * threadpool.c: fix queue code to be compatible with the
4822         moving GC.
4823
4824 2006-12-18  Miguel de Icaza  <miguel@novell.com>
4825
4826         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
4827         in structures by throwing ArgumentNullException.
4828
4829         (emit_marshal_safehandle): Also when they are null parameters.
4830
4831         (emit_marshal_safehandle): Add support for ref
4832         SafeHandles parameters
4833
4834 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4835
4836         * profiler.c: updated to use the mono-dl API instead of
4837         gmodule.
4838
4839 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4840
4841         * profiler.c: updated to use the mono-dl dynamic loading
4842         API instead of gmodule.
4843
4844 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
4845
4846         * profiler.c: use readlink, older versions of glib don't have
4847         g_file_read_link ().
4848
4849 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4850
4851         * profiler.c: try to detect the path to mono if libc fails to provide
4852         a useful name (bug #80286).
4853
4854 2006-12-16  Raja R Harinath  <rharinath@novell.com>
4855
4856         Fix #80242
4857         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
4858         instance, use the generic type definition instead.
4859         (ves_icall_Type_GetNestedTypes): Likewise.
4860         * class.c (mono_class_create_generic): Always set the
4861         nested_classes of a generic instance to NULL, even if the generic
4862         type definition has nested types.
4863
4864 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
4865
4866         * marshal.c (mono_string_from_bstr): Revert previous Windows change
4867         and fix on Linux.
4868         
4869 2006-12-15  Miguel de Icaza  <miguel@novell.com>
4870
4871         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
4872         my arguments were in the wrong order.   I also fixed the Windows
4873         version which seems to have had the same issue.
4874
4875         (mono_free_bstr): On Unix, this is g_free.
4876         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
4877         conversions (for the tests in corlib to pass).
4878
4879 2006-12-14  Miguel de Icaza  <miguel@novell.com>
4880
4881         * marshal.c (emit_ptr_to_object_conv): For now, ignore
4882         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
4883         exception if a ref SafeHandle in a struct has changed).
4884         
4885         (emit_struct_conv): Do not perform layout checks for classes
4886         derived from SafeHandle, as those are specially handled. 
4887
4888         (emit_object_to_ptr_conv): Add support for
4889         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
4890
4891         (emit_marshal_safehandle): Implement conversion of return values
4892         of safehandles (MARSHAL_ACTION_CONV_RESULT).
4893         
4894         * threads.c: WaitHandle now is compiled with two different handles
4895         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
4896         for 2.0.
4897         
4898         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
4899         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
4900         these routines to cope with both kinds of fields.
4901
4902 2006-12-12  Miguel de Icaza  <miguel@novell.com>
4903
4904         * metadata.c (mono_type_to_unmanaged): Handle the case where
4905         type->data.klass is a SafeHandle, and in that case, return the
4906         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
4907         MONO_MARSHAL_CONV_SAFEHANDLE. 
4908
4909 2006-12-11  Miguel de Icaza  <miguel@novell.com>
4910
4911         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
4912         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
4913         calling emit_marshal_object.
4914
4915         (emit_marshal_safehandle): Implement marshalling of
4916         SafeHandle parameters (no ref support yet).
4917
4918         (MarshalAction): Document the defines as I implement
4919         them for SafeHandle.
4920
4921         (emit_marshal_object): indentation police.
4922
4923         * class-internals.h: Define MonoSafeHandle.
4924         Add safehandle_class to MonoDefaults type.
4925
4926         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
4927         list of classes to check for fields. 
4928
4929         * domain.c (mono_init_internal): Add SafeHandle to the list of
4930         mono_defaults loaded.
4931
4932 2006-12-15  Raja R Harinath  <rharinath@novell.com>
4933
4934         Fix #80253
4935         * reflection.c (mono_reflection_bind_generic_parameters): If the
4936         generic type definition is a type builder, ensure that it is fully
4937         initialized before instantiating it.  Kill some dead code.
4938
4939 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
4940
4941         * object.c: clear the loader_error () before loading
4942         more metadata stuff (bug #80258).
4943
4944 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
4945
4946         * icall.c, icall-defs.h: type modifiers icalls for
4947         parameters and properties.
4948
4949 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
4950
4951         * object.c, icall.c: fixed warnings.
4952
4953 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
4954
4955         * marshal.c: fixed a couple of leaks and coding style in a few places.
4956
4957 2006-12-08  Dick Porter  <dick@ximian.com>
4958
4959         * process.c: Cope with NULL ProcessStartInfo arguments on windows
4960         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
4961         80173.
4962
4963 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4964
4965         * process.c: ProcessStartInfo may have only filename set and
4966         arguments can be NULL.
4967
4968 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4969
4970         * icall.c: fix leak found by Robert Jordan.
4971
4972 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
4973
4974         * marshal.c, marshal.h: generate managed method to access an element
4975         of a multi-dimensional array.
4976
4977 2006-11-30  Paolo Molaro (lupus@ximian.com)
4978
4979         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
4980
4981 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4982
4983         * icall.c: back out GetFields () fix until the serialization code is
4984         fixed to not depend on the incorrect behaviour.
4985
4986 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
4987
4988         * profiler.c: provide defaults if none are set.
4989
4990 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
4991
4992         * Makefile.am, attrdefs.h: new public header file with
4993         constants for attributes for use by embedders.
4994
4995 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
4996
4997         * icall.c: GetFields () fix for bug #80064.
4998
4999 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
5000
5001         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
5002         removed long unused icalls.
5003
5004 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
5005   
5006         * marshal.c: 
5007                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
5008                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
5009                 can be generated without a delegate class.
5010                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
5011         
5012         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
5013
5014 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5015
5016         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
5017         #80069.
5018
5019 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5020
5021         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
5022         icall-def.h: added icalls needed by System.GC.
5023
5024 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
5025
5026         * loader.c: ensure the class in catch clauses is handled
5027         correctly for generics methods (fixes bug#79980).
5028
5029 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
5030
5031         * monitor.h, monitor.c: added mono_locks_dump () function
5032         to help debug deadlocks involving managed locks.
5033
5034 2006-11-13  Dick Porter  <dick@ximian.com>
5035
5036         * file-io.c (get_file_attributes): If the file is a symlink try
5037         and get the stat data for the target, but also add the
5038         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
5039         the specs for the windows symlink support, but will probably have
5040         to be reworked when I have test data from a vista machine.  Fixes
5041         bug 79887.
5042
5043 2006-11-13  Dick Porter  <dick@ximian.com>
5044
5045         * gc.c (mono_domain_finalize): 
5046         * marshal.c (mono_delegate_begin_invoke): 
5047         * threadpool.c (socket_io_init, mono_thread_pool_init)
5048         (mono_thread_pool_finish): 
5049         * monitor.c (mono_monitor_try_enter_internal): 
5050         * threads.c (mono_thread_resume, mono_thread_init)
5051         (mono_thread_suspend_all_other_threads)
5052         (mono_thread_execute_interruption): 
5053         * appdomain.c (mono_domain_unload): Check for NULL error returns
5054         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
5055         75733.
5056
5057 2006-11-11  Miguel de Icaza  <miguel@novell.com>
5058
5059         * process.c
5060         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
5061         Only close the handle if the value of the handle is not
5062         INVALID_HANDLE_VALUE.  This just makes the process a bit more
5063         robust.
5064
5065         Improvement for #75733, so that we do not run into this problem. 
5066
5067         
5068         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
5069         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
5070         internal variables.  Fixes #79462 
5071         
5072
5073 2006-11-09  Dick Porter  <dick@ximian.com>
5074
5075         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
5076         Use poll() not select().  Fixes bug 79397.
5077
5078 2006-11-09  Raja R Harinath  <rharinath@novell.com>
5079
5080         Fix #79872
5081         * assembly.c (mono_assembly_load_from_full): Check that the given
5082         image has an assembly manifest.
5083
5084 2006-11-09  Ankit Jain  <jankit@novell.com>
5085
5086         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
5087         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
5088         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
5089
5090 2006-11-07  Dick Porter  <dick@ximian.com>
5091
5092         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
5093         Put the old resolver behaviour back for pre-2.0 profiles.
5094
5095 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
5096
5097         * threadpool.c: precise GC and locking fixes.
5098
5099 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
5100
5101         * class.c: don't load types that have an explicit unaligned
5102         managed reference. Provide better info in the TypeLoad exception.
5103         Part of the fix for bug #79744.
5104         * object.c: use the correct check for class type load issues.
5105
5106 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5107
5108         * class.c: enforce alignment of fields with managed references
5109         even when Pack=1 is forced by the user (bug #77788).
5110
5111 2006-11-03  Dick Porter  <dick@ximian.com>
5112
5113         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
5114         If the address reverse lookup fails, return it as the hostname
5115         anyway.  Fixes bug 79721.
5116
5117 2006-11-03  Dick Porter  <dick@ximian.com>
5118
5119         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
5120         Fix build on Windows.
5121
5122 2006-11-02  Dick Porter  <dick@ximian.com>
5123
5124         * icall-def.h: 
5125         * object-internals.h: 
5126         * exception.c (mono_get_exception_thread_interrupted): 
5127         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
5128         Fixes bug 74525.
5129
5130         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
5131         Check for pending Thread.Interrupt.
5132
5133 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
5134         * loader.c: Fixed bug 79684.
5135
5136 2006-10-27  Dick Porter  <dick@ximian.com>
5137
5138         * file-io.c (get_file_attributes): Force symlinks to directories
5139         to be returned as a regular file.  Fixes bug 79733.
5140 2006-10-26  Dick Porter  <dick@ximian.com>
5141
5142         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
5143         CreateFile to open a directory then we need to set the
5144         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
5145
5146 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
5147
5148         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
5149         friends.
5150
5151 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5152
5153         * sgengc.c: small cleanup of timer code.
5154
5155 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
5156
5157         * sgen-gc.c: fix some warnings and start adding support for
5158         complete object removal on domain unload.
5159
5160 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
5161
5162         * assembly.c: build_assembly_name should not consider a version
5163         number without build or revision number invalid. Fixes bug #79715.
5164
5165 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
5166
5167         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
5168         call kernel32 function OutputDebugString directly.
5169         
5170         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
5171         
5172 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
5173
5174         * reflection.c: small cleanup, using a function to insert a MonoString
5175         in the string heap.
5176
5177 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
5178
5179         * reflection.c: moving GC fixes.
5180
5181 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
5182
5183         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
5184         all the objects with finalizers belonging to an unloading appdomain.
5185
5186 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
5187
5188         * sgen-gc.c: added ability to allocate even when the nursery is fully
5189         pinned and fixed a couple of bugs.
5190
5191 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
5192
5193         * threads.h: Revert the last change for now.
5194
5195         * threads.h (mono_thread_get_pending_exception): Rename this to
5196         mono_thread_get_undeniable_exception ().
5197
5198 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
5199
5200         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
5201         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
5202         when fname does not refer to valid assembly. This result in a more
5203         meaningful error message.
5204         * exception.c: added mono_get_exception_bad_image_format2 which 
5205         constructs a BadImageFormatException using the ctor taking a custom
5206         message and the file name. Passing in a NULL msg results in a default
5207         message.
5208         * exception.h: define mono_get_exception_bad_image_format2 function.
5209         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
5210         when file name pointed to an invalid IL image. Use 
5211         mono_get_exception_file_not_found2 to construct FileNotFoundException,
5212         as this results in a more meaningful error message.
5213
5214 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
5215
5216         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
5217         #79465.
5218
5219 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
5220
5221         * metadata.c (mono_type_size): Change the align parameter to guint32 for
5222         consistency with the other _size functions.
5223         (mono_type_stack_size): Ditto.
5224
5225         * class.c object.c icall.c: Fix warnings caused by the above change.
5226
5227         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
5228
5229         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
5230
5231         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
5232
5233 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
5234
5235         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
5236         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
5237         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
5238         threadpool.h, threads-types.h: mark more internal functions.
5239
5240 2006-10-11  Dick Porter  <dick@ximian.com>
5241
5242         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
5243         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
5244         reproduce the bug even before applying the fix.)
5245
5246 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
5247
5248         * reflection.c: allow retrieving attributes for arguments in generic
5249         methods (bug #79241).
5250
5251 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
5252
5253         * debug-mono-symfile.c: properly check fopen () result (found by
5254         coverity).
5255
5256 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
5257
5258         * reflection.c: make error message clearer and fixed two
5259         issuelets found by Coverity.
5260
5261 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
5262
5263         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
5264
5265 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
5266
5267         * object-internals.h, gc-internal.h, profiler-private.h:
5268         mark internal functions.
5269
5270 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
5271
5272         * reflection.c: put data in the text section.
5273         * icall.c: recognize more types in type_from_typename ().
5274         * process.c, marshal.c: added some GC FIXMEs.
5275
5276 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
5277
5278         * loader.c: check for NULL before initializing.
5279
5280 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
5281
5282         * gc.c (finalizer_thread): Use a non-alertable wait here.
5283
5284         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
5285         until the correct solution is found.
5286
5287 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
5288
5289         * reflection.c (mono_module_get_object): Avoid an assert when operating on
5290         modules with no metadata. Fixes #79596.
5291
5292         * image.c (load_metadata_ptrs): Put back the error message when
5293         the #- heap is encountered since the support is not complete yet.
5294
5295 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
5296
5297         * gc.c: do not allow the user to SuppressFinalize () a
5298         delegate because it would leak the trampoline if present.
5299
5300 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
5301
5302         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
5303         PropertyPtr table.
5304
5305 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
5306
5307         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
5308
5309         * metadata.c (mono_metadata_get_param_attrs): Ditto.
5310
5311         * row-indexes.h: Add definitions for *Ptr tables.
5312
5313         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
5314
5315         * metadata.c (mono_metadata_translate_token_index): New helper function to
5316         translate table indexes used in uncompressed metadata.
5317         (mono_metadata_decode_table_row): Ditto.
5318         (mono_metadata_decode_table_row_col): Ditto.
5319
5320         * metadata.c: Add table schema for *Ptr tables.
5321
5322         * class.c loader.c: Use the new helper function to access the affected metadata
5323         tables.
5324         
5325         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
5326         #38532.
5327         
5328 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
5329
5330         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
5331         sequences which can be unbounded in size. Fixes #79583.
5332
5333 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
5334
5335         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
5336         static initialization.
5337
5338         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
5339
5340         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
5341
5342         * domain.c (mono_domain_free): Free up type_init_exception_hash.
5343
5344         * object.c (mono_runtime_class_init): Implement correct semantics when a static
5345         ctor fails, i.e. throw the same exception on subsequent accesses.
5346         
5347 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
5348
5349         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
5350         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
5351         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
5352         Handle marshalling of interfaces and VARIANTs contained in structs.
5353         
5354         Code is contributed under MIT/X11 license.
5355         
5356 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
5357
5358         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
5359         
5360         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
5361         mempool.
5362
5363 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5364
5365         * console-io.c: ignore previous SIGINT handler.
5366
5367 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
5368
5369         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
5370         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
5371         #79460, #79461, #79485.
5372
5373         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
5374
5375         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
5376         #79217.
5377
5378 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
5379
5380         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
5381         could be generated from it.
5382
5383 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
5384
5385         * rand.c: fix read loop to correctly handle EINTR.
5386
5387 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5388
5389         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
5390         internal calls are defined to keep methods closer to the declaring
5391         type and allow a significant reduction in runtime relocations and
5392         memory usage.
5393
5394 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
5395
5396         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
5397         exception message to have FileNotFoundException use the default
5398         assembly load error message. Fixes bug #79426.
5399         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
5400
5401 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5402
5403         * threadpool.c: (start_thread_or_queue) use the root domain when
5404         creating the thread instead of the async object one.
5405
5406 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
5407
5408         * class.c, object.c, class-internals.h, reflection.c:
5409         for arrays, store element_size inside MonoClass (speedup
5410         for array object creation).
5411
5412 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
5413
5414         * icall.c: fixed CodeBase to use the file name and not the module
5415         name (bug #79365).
5416
5417 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
5418
5419         * mono-debug.c, mono-debug.h: export find_method as
5420         mono_debug_find_method ().
5421
5422 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5423
5424         * debug-helpers.c, class-internals.h: added a few functions useful
5425         when debugging under gdb.
5426
5427 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5428
5429         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
5430         characters that need special handling.
5431
5432 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
5433
5434         * mono-config.c: make the os/cpu specification more flexible,
5435         allowing lists and negation.
5436
5437 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
5438
5439         * marshal.c: COM Interop fixes. Handle case where method->klass.
5440         is interface. Handle BSTR/MonoString when null. Use CDECL as 
5441         calling convention on non-windows platforms. This is for
5442         compatibility with XPCOM and MainWin COM.
5443         
5444         Code is contributed under MIT/X11 license.
5445         
5446
5447 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
5448
5449         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
5450         correctly. Fixes #79217.
5451
5452         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
5453
5454 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
5455
5456         * mono-config.c: allow both an os and cpu attribute for dllmap
5457         and dllentry elemnets to enable a single config file to be used
5458         for multiple architectures.
5459
5460 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
5461
5462         * loader.c: MonoLoaderError was cleared too soon on load failure.
5463         Fixes bug #79424.
5464
5465 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
5466
5467         * icall.c: use the defining class vtable when accessing a
5468         static field, not a pobblibly derived class.
5469
5470 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
5471
5472         * icall.c string-icalls.c: Remove references to unicode.h.
5473
5474         * unicode.h unicode.c Makefile.am: Remove these unused source files.
5475
5476         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
5477
5478         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
5479         indicating the image where custom marshaller types should be looked up.
5480         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
5481         custom marshallers, instead of corlib. Fixes #79425.
5482
5483 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
5484
5485         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
5486
5487 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
5488
5489         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
5490         Implement Environment.ProcessorCount.
5491         
5492         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
5493         Implement Environment.ProcessorCount.
5494         
5495         * icall.c: 
5496         Add Environment.ProcessorCount icall.
5497         
5498         Patch by Jason McFall.
5499
5500 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5501
5502         * assembly.c: don't append .exe/.dll when the filename already contains
5503         one of those extensions.
5504
5505 2006-09-12  Martin Baulig  <martin@ximian.com>
5506
5507         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
5508         to array interfaces.
5509
5510 2006-09-11  Martin Baulig  <martin@ximian.com>
5511
5512         * reflection.c (mono_image_build_metadata): Create the
5513         MethodImpl's after emitting all types and methods, so we don't
5514         need another fixup pass for them.
5515
5516 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
5517
5518         * class.c (mono_class_from_name_case): Fix regression introduced by the last
5519         change.
5520
5521 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
5522
5523         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
5524         unload.
5525
5526 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
5527
5528         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
5529         args is not set. Fixes #78926.
5530
5531 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
5532
5533         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
5534
5535         * image.c (load_class_names): Move this to class.c, and rename it to 
5536         'mono_image_init_name_cache'.
5537         (load_modules): Fix a warning.
5538
5539         * class.c icall.c image.c: Initialize image->name_cache lazily.
5540
5541         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
5542         on its name using information in the AOT file.
5543
5544         * class.c (mono_class_from_name): Use the new hook function.
5545
5546 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
5547
5548         * reflection.c (mono_param_get_objects): Handle enum default parameter values
5549         correctly.
5550
5551         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
5552         Fixes #79289.
5553         
5554 2006-09-06  Martin Baulig  <martin@ximian.com>
5555
5556         * icall.c (mono_lookup_internal_call): Small fix.
5557
5558 2006-09-05  Raja R Harinath  <rharinath@novell.com>
5559
5560         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
5561         double g_free.
5562
5563 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
5564
5565         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
5566         when --debug is specified.
5567
5568 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
5569
5570         * class.c (setup_generic_array_ifaces): Fix a warning.
5571
5572 2006-09-04  Miguel de Icaza  <miguel@novell.com>
5573
5574         * Temporarily remove the patch to assemly.c that checks the
5575         assembly versions as it breaks our gacutil.
5576
5577 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
5578
5579         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
5580
5581         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
5582         a net 1.0 runtime.
5583
5584         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
5585         created using the default ctor. Fixes #79152.
5586         (mono_string_builder_to_utf16): Ditto.
5587
5588 2006-09-01  Martin Baulig  <martin@ximian.com>
5589
5590         Fix handling of the generic array interfaces.
5591
5592         * class-internals.h
5593         (MonoDefaults): Removed `generic_array_class' and added
5594         `generic_ilist' class.
5595
5596         * class.c
5597         (mono_bounded_array_class_get): Add the new generic array interfaces.
5598         (setup_generic_array_ifaces): New static method; create vtable
5599         entries for each method in the generic array interfaces.
5600
5601         * metadata.c
5602         (select_container): Allow "parent-less" generic methods.
5603
5604         * marshal.c
5605         (mono_marshal_get_generic_array_helper): New public method.
5606
5607         * icall.c
5608         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
5609         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
5610         moved the interncall into System.Array.
5611
5612 2006-09-01  Raja R Harinath  <rharinath@novell.com>
5613
5614         A few more cases of avoiding work on types with ->byref set.
5615         Has the real fix for #79238
5616         * icall.c (is_generic_parameter): New helper.
5617         (ves_icall_Type_GetGenericParameterPosition): Use it.
5618         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
5619         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
5620         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
5621         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
5622         reference types.
5623         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
5624         reference types.
5625         (ves_icall_Type_get_IsGenericInstance): Likewise.
5626         (ves_icall_Type_get_IsGenericType): Likewise.
5627
5628 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
5629
5630         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
5631         class if possible.
5632
5633         * mempool.h (mono_mempool_get_allocated): New helper function.
5634
5635         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
5636         change.
5637
5638         * mempool.c: Fix warnings and the calculation of stats.
5639
5640         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
5641
5642         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
5643
5644         * loader.c (mono_get_method_from_token): Update method_count stat.
5645
5646         * class-internals.h (MonoStats): Add some stats.
5647
5648 2006-08-31 Robert Jordan  <robertj@gmx.net>
5649
5650         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
5651         with managed variants.
5652         All code is contributed under the MIT/X11 license.
5653         
5654 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
5655
5656         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
5657         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
5658
5659         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
5660
5661         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
5662         with cycles in classes.
5663
5664         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
5665
5666         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
5667         missing a [MarshalAs] directive. Fixes #79203.
5668
5669         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
5670         klass->marshal_info. Fixes #79217.
5671
5672 2006-08-30  Martin Baulig  <martin@ximian.com>
5673
5674         Committing a patch from Joachim Ante <joe@otee.dk>:
5675         Add support for binary data symbol stores.
5676
5677         * debug-mono-symfile.c
5678         (mono_debug_open_mono_symbol_file): Renamed into
5679         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
5680         arguments.
5681
5682         * mono-debug.c
5683         (mono_debug_open_image): Added `raw_contents' and `size' args.
5684         (mono_debug_init_2_memory): New public function.
5685
5686 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
5687
5688         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
5689
5690 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5691
5692         * appdomain.c: implement support for ShadowCopyFiles.
5693
5694 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
5695
5696         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
5697         when value is NULL (and should remove CID #51).
5698
5699 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5700
5701         * image.c: moved 2 functions to ../utils.
5702
5703 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
5704
5705         * gc.c: cope with the target object of a GC handle being NULL
5706         (bug #78877).
5707
5708 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
5709
5710         * class.c: recursively check parent's explicit implementations
5711         of interface methods (fixes bug #79125).
5712
5713 2006-08-19  Miguel de Icaza  <miguel@novell.com>
5714
5715         * filewatcher.c: Avoid warnings when building, do not redefine
5716         constants that are defined.
5717
5718         Remove warnings.
5719
5720 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5721
5722         * image.c: don't fail when the link points to an absolute path.
5723
5724 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
5725
5726         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
5727         Fix CID #3.
5728
5729 2006-08-17  Miguel de Icaza  <miguel@novell.com>
5730
5731         * image.c (full_path): A new method used to obtain the actual path
5732         of an assembly even in the presence of symbolic links.  
5733
5734         This is necessary for the case where we are running a binary that
5735         has been GACed, but we are using the "published" path name
5736         ($prefix/mono/1.0/blah.exe) which happens to point to the real
5737         file in the GAC.
5738
5739         This was the source of the failure for the `xsp' command with the
5740         recent AppDomain changes, as far as the runtime was concerned,
5741         there were two different assemblies: $prefix/mono/1.0/blah.exe and
5742         $prefix/mono/gac/blah/version/blah.exe.
5743
5744         (do_mono_image_open): use full path
5745
5746 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
5747
5748         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
5749
5750 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
5751
5752         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
5753         domain_id is supplied. Fix CID #241 and corlib's unit tests.
5754
5755 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
5756
5757         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
5758         small structures. Fixes #78990.
5759
5760 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
5761
5762         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
5763
5764         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
5765
5766 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5767
5768         * appdomain.c:
5769         * marshal.c: don't load all the assemblies from a domain into newly
5770         created ones. The new domains might have different rules and load
5771         assemblies from different locations. Fixes bug #76757.
5772
5773         Patch by Lluis. Conflicts resolved by Brian Crowell.
5774
5775 2006-08-16  Alp Toker  <alp@atoker.com>
5776
5777         * socket-io.c: First half of the fix for #79084.
5778         Set sa_size to the length of the content, not that of the struct.
5779         Don't add NULL suffix to the content, this should be done in
5780         managed code if needed.
5781
5782 2006-08-14  Raja R Harinath  <rharinath@novell.com>
5783
5784         Fix part of #79012
5785         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
5786         mono_metadata_parse_type returns NULL.
5787
5788 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
5789
5790         * normalization-tables.h : new file for string normalization data.
5791         * locales.c, locales.h, icall.c :
5792           added load_normalization_resource() for string normalization,
5793           and icall as well.
5794         * Makefile.am : added normalization-tables.h to the sources.
5795
5796 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
5797
5798         * marshal.c: Add more helper functions to reduce code duplication and use them
5799         everywhere.
5800
5801 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
5802
5803         * marshal.c: Fix non-x86 stdcall warnings.
5804         
5805         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
5806         them everywhere.
5807
5808 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
5809
5810         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
5811         type check on multi-dimensional arrays. Fixes #79000.
5812
5813 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
5814
5815         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
5816         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
5817         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
5818         * class-internals.h: add is_com_object to class structure.
5819         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
5820         null checks to COM object marshalling. Fix .ctor call on RCW.
5821         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
5822         
5823         All code is contributed under the MIT/X11 license.
5824
5825 2006-08-09  Dick Porter  <dick@ximian.com>
5826
5827         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
5828         racing mono_monitor_allocator_lock() somewhere, so don't delete
5829         the critical section for now.  Found by running and exiting
5830         monodevelop.
5831
5832 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
5833
5834         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
5835         (ves_icall_System_ComObject_FindInterface): Ditto.
5836         (ves_icall_System_ComObject_CacheInterface): Ditto.
5837
5838         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
5839         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
5840
5841 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5842
5843         * threadpool.c: treat pipes from process asynchronous reads as sockets
5844         when reading from them, so we get select/poll or epoll to wait for
5845         data.
5846
5847 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
5848
5849         * loader.c: Fix a typo (CID #233) in the null check.
5850
5851 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
5852
5853         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
5854         Hopefully fixes #78949.
5855         
5856         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
5857         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
5858         bytes. Fixes #78972.
5859
5860 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5861
5862         * filewatcher.c: we need to set errno here.
5863
5864 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5865
5866         * filewatcher.c: let Win32Exception get the error value.
5867
5868 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5869
5870         * filewatcher.c: translate errno into win32 errors for Win32Exception
5871         to know what happened.
5872
5873 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
5874
5875         * threadpool.c: Fix more warnings.
5876
5877         * assembly.c (search_loaded): Fix warnings.
5878
5879         * threadpool.c (mono_thread_pool_finish): Fix warnings.
5880         (mono_async_invoke): Ditto.
5881
5882 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
5883
5884         * object.c (mono_remote_class_vtable): Need to create proxy vtable
5885         entries for __ComObject type in addition to ComImport types.
5886         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
5887         about hash table.
5888         
5889         All code is contributed under the MIT/X11 license.
5890
5891 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
5892
5893         * image.c: avoid tentative loading of modulerefs that contain
5894         no metadata (P/Invoke library names).
5895
5896 2006-07-28  Dick Porter  <dick@ximian.com>
5897
5898         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
5899         mono_loader_lock() somewhere, so don't delete the critical section
5900         for now.  Found by running and exiting monodevelop.
5901
5902 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5903
5904         * filewatcher.c: define the inotify syscalls when we're building on
5905         linux and have sys/syscall.h. The build system might not have support
5906         for inotify but the target system might have it.
5907
5908 2006-07-26  Miguel de Icaza  <miguel@novell.com>
5909
5910         * domain.c: Documentation updates.
5911
5912         * loader.c (mono_free_method): Do not release the method
5913         information if we are being profiled, as profilers will use this
5914         information at shut down to present some data to the user.
5915
5916         This is needed so that the profiler does not crash, as the
5917         profiler tends to keep MonoMethods around, and they might become
5918         invalid if we free these.
5919
5920         (mono_get_method_constrained): Return the original CIL stream
5921         method as well, so verification can be performed against it.
5922
5923 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5924
5925         * filewatcher.[ch]: support for inotify file system watcher.
5926         * icall.c: add new internal calls for the inotify file system watcher.
5927
5928 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5929
5930         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
5931         #78888.
5932
5933 2006-07-20  Dick Porter  <dick@ximian.com>
5934
5935         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
5936         warning.
5937
5938 2006-07-20  Dick Porter  <dick@ximian.com>
5939
5940         * threads.c (start_wrapper): Do the thread cleanup while we still
5941         hold a reference to its object.  Fixes bug 78123.
5942
5943 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
5944
5945         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
5946         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
5947           "managed-to-managed".
5948         * icall.c: Redirect string constructors that take sbyte* to
5949           ves_icall_System_String_ctor_RedirectToCreateString.
5950         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
5951           to CreateString () methods with matching signature.
5952         * reflection.c: Use original security informations for
5953           MONO_WRAPPER_MANAGED_TO_MANAGED.
5954         * security-manager.c: Use original security informations for
5955           MONO_WRAPPER_MANAGED_TO_MANAGED.
5956         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
5957           that is a placeholder and only its address should be used.
5958         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
5959           that is a placeholder and only its address should be used.
5960
5961 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
5962
5963         Begin implementing COM Interop.
5964         * appdomain.c: Increment corlib version.
5965         * class.c: Set ComImport classes' parent to __ComObject.
5966         * loader.c: Mark cominterop methods as such.
5967         * domain.c: Add __ComObject class to MonoDefaults structure.
5968         * image.c: Add 2 hashtables to the image for COM Interop related methods
5969         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
5970         using the mempool allocator
5971         
5972         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
5973         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
5974         declaration for mono_metadata_type_dup_mp.
5975         
5976         * debug-helpers.c: Added strings for two additional wrapper types
5977         * object.c: Create proxy objects for ComImport classes
5978         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
5979         and added __ComObject class to MonoDefaults structure.
5980         
5981         * object-internals.h: Finish MonoRealProxy definition, and add definition of
5982         MonoComInteropProxy and MonoComObject.
5983         
5984         * marshal.c: Added support for COM Interop
5985         (signature_cominterop): Converts managed signature to corresponding
5986         unmanaged COM signature.
5987         (cominterop_get_function_pointer): gets unmanaged function pointer via
5988         COM object vtable
5989         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
5990         (cominterop_get_method_interface): returns interface type that method is defined on
5991         (mono_mb_emit_cominterop_call): emits native call to function pointer
5992         gotten from vtable
5993         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
5994         that matches signature of unmanaged function.
5995         (cominterop_get_native_wrapper): wrapper around adjusted method call.
5996         (cominterop_get_invoke): forwards call from proxy to __ComObject
5997         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
5998         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
5999         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
6000         
6001         * marshal.h: Added Marshal icall declarations.
6002         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
6003         so we can access them in finalizer
6004         
6005 2006-07-14  Dick Porter  <dick@ximian.com>
6006
6007         * object.c (mono_type_initialization_cleanup): Fix a race
6008         condition by temporarily commenting out the critical section
6009         deletion.
6010
6011 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
6012
6013         * reflection.c (create_custom_attr): Fix some warnings.
6014         (create_custom_attr_data): Ditto.
6015         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
6016         types. Fixes #78855.
6017
6018 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
6019
6020         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
6021
6022         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
6023
6024 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
6025
6026         * reflection.c (resolve_object): Add support for DynamicMethod.
6027
6028         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
6029         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
6030
6031 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
6032
6033         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
6034         don't leak GPtrArray's pdata has we have no use (nor free) for it.
6035
6036 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
6037
6038         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
6039         Fixes #77888.
6040
6041 2006-06-30  Raja R Harinath  <rharinath@novell.com>
6042
6043         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
6044         slightly: remove a shadow local variable.
6045
6046 2006-06-29  Raja R Harinath  <rharinath@novell.com>
6047
6048         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
6049         definition that introduces the virtual function slot.
6050         Also fix Coverity #105.
6051
6052 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
6053
6054         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
6055         for dynamic assemblies. Fixes #78724.
6056
6057 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
6058
6059         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
6060         Fixes #78722.
6061
6062 2006-06-21  Martin Baulig  <martin@ximian.com>
6063
6064         * reflection.c
6065         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
6066         fixes #76484.
6067
6068 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
6069
6070         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
6071
6072 2006-06-20  Raja R Harinath  <rharinath@novell.com>
6073
6074         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
6075         nor TYPEREFs.
6076         * class.c (mono_class_create_from_typespec): Add 'context' argument.
6077         Inflate result if necessary.
6078         (mono_class_get_full): Remove old version.  Rename from
6079         'mono_class_get' and add 'context' argument.  Pass it to
6080         ..._create_from_typespec.
6081         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
6082         (mono_ldtoken): Revert change below.
6083
6084 2006-06-20  Martin Baulig  <martin@ximian.com>
6085
6086         * class.c (mono_ldtoken): Don't pass the generic context to
6087         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
6088
6089 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
6090
6091         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
6092         and later freeing it. Fixes #78638.
6093
6094 2006-06-15  Miguel de Icaza  <miguel@novell.com>
6095
6096         * icall.c (mono_class_get_throw): Revert over-zealous error
6097         throwing, the caller for mono_class_get_throw will cope with
6098         errors when classes are not properly initialized already.
6099
6100         The code still copes with loader exceptions though.
6101
6102         Fixes the regression in reftype1 and reftype3 from the CAS tests.
6103         
6104 2006-06-14  Miguel de Icaza  <miguel@novell.com>
6105
6106         Fixes the `make run1' version of RuntimeAbort (to be commited,
6107         source is in Bugzilla).
6108         
6109         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
6110         FALSE on class loading failure instead of returning true.
6111
6112         * class.c (mono_class_create_from_typedef): It is possible for
6113         mono_metadata_interfaces_from_typedef_full to fail if a class is
6114         not found, cope with this.
6115         
6116
6117 2006-06-14  Dick Porter  <dick@ximian.com>
6118
6119         * socket-io.c: 
6120         * process.c: Fix a bunch of signed/unsigned warnings from gcc
6121         4.1.1
6122
6123 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
6124
6125         * culture-info-table.h : oops, forgot to make it nsync with r61548.
6126
6127 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
6128
6129         * icall.c: Another fix for building mono in Visual Studio.
6130
6131 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
6132
6133         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
6134         
6135 2006-06-09  Martin Baulig  <martin@ximian.com>
6136
6137         * debug-mono-symfile.c: Put this back and really fix it this
6138         time. Sorry for all the trouble.
6139
6140 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
6141
6142         * icall.c (mono_class_get_throw): Fix a warning.
6143         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
6144         ReflectionTypeLoadException if needed. Fixes #78606.
6145
6146         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
6147         (mono_class_init): Ditto.
6148
6149         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
6150         ref_only exceptions.
6151         (mono_loader_clear_error): Make this work even if there is no error.
6152
6153 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
6154
6155         * object-internals.h marshal.c marshal.h icall.c: Implement method 
6156         Marshal.GetComSlotForMethodInfo using internal call.
6157
6158 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
6159
6160         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
6161         a function for signalling it.
6162
6163         * class.c (mono_class_from_typeref): Use the new kind of loader error when
6164         a referenced assembly is not found.
6165
6166         * loader.c (mono_loader_error_prepare_exception): Add support for 
6167         LOADER_ERROR_ASSEMBLY. Fix formatting.
6168
6169 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6170
6171         * domain.c appdomain.c class-internals.h marshal.c: Add support 
6172         for VARIANT marshalling on windows and increment corlib version
6173         since Variant struct was added.
6174
6175 2006-06-03  Miguel de Icaza  <miguel@novell.com>
6176
6177         * debug-mono-symfile.c: Revert Martin's previous patch which broke
6178         stack trace line information:
6179
6180         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
6181         (Martin) when looking up B which is between A and C, return A not C.
6182
6183         Bug is #78573.
6184
6185         Thanks to Alexander Olk for tracking this down.
6186
6187 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
6188
6189         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
6190         
6191         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
6192         avoid clobbering its value.
6193         (mono_string_to_lpstr): Fix a warning on windows.
6194
6195 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
6196
6197         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
6198
6199         * reflection.c loader.c: Removed references to 'dummy' flag.
6200
6201         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
6202
6203         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
6204         it gets GC tracking.
6205
6206         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
6207         GC tracking.
6208         
6209         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
6210
6211         * marshal.c threadpool.c: Update callers of mono_async_result_new.
6212
6213         * appdomain.c: Bump corlib version.
6214
6215 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
6216
6217         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
6218         CEE_STIND_REF when working with object references.
6219
6220 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
6221
6222         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
6223         Fixes #78539.
6224
6225 2006-05-30  Miguel de Icaza  <miguel@novell.com>
6226
6227         * loader.c (method_from_memberref): Fix argument value for
6228         mono_loader_set_error_method_load (I was passing the MonoClass
6229         instead of the class name char *).
6230
6231 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
6232
6233         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
6234         CEE_STIND_REF when working with object references.
6235
6236 2006-05-30  Martin Baulig  <martin@ximian.com>
6237
6238         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
6239         mono_method_full_name() change and replace the ':' with a '.'
6240         here.
6241
6242 2006-05-30  Martin Baulig  <martin@ximian.com>
6243
6244         * debug-mono-symfile.c
6245         (mono_debug_symfile_lookup_location): Fix the algorithm:
6246         when looking up B which is between A and C, return A not C.
6247
6248 2006-05-29  Martin Baulig  <martin@ximian.com>
6249
6250         * mono-debug.h
6251         (MonoDebugMethodInfo): Make the typedef public.
6252         (MonoDebugSourceLocation): New public struct.
6253
6254         * mono-debug.c
6255         (mono_debug_source_location_from_address): Removed.
6256         (mono_debug_source_location_from_il_offset): Removed.
6257         (mono_debug_il_offset_from_address): Removed.
6258         (mono_debug_address_from_il_offset): Removed.
6259         (mono_debug_lookup_method): New public function.
6260         (mono_debug_lookup_source_location): New public function; replaces
6261         the old mono_debug_source_location_from_*() functions; see the
6262         inline documentation.
6263         (mono_debug_free_source_location): New public function.
6264         (mono_debug_print_stack_frame): New public function; see the
6265         inline documentation.
6266
6267         * debug-mono-symfile.c
6268         (mono_debug_find_source_location): Renamed into
6269         mono_debug_symfile_lookup_location(); only take a
6270         `MonoDebugMethodInfo *' and an `offset' argument; added inline
6271         documentation.
6272         (mono_debug_find_method): Renamed into
6273         mono_debug_symfile_lookup_method().
6274
6275 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
6276
6277         * assembly.c (mono_assembly_open_full): Dont overwrite the status
6278         returned by mono_image_open_full ().
6279
6280         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
6281         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
6282         #78517.
6283
6284         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
6285         #78518.
6286
6287 2006-05-27  Miguel de Icaza  <miguel@novell.com>
6288
6289         * class.c (mono_class_from_typeref): handle missing images
6290         earlier, deals with bug #78418.   Refactor code; 
6291
6292         Fix a warning introduced in my previous commit (some stale code
6293         from before I revisited my patch).
6294
6295         * class.c (mono_class_create_from_typedef): On failure, remove the
6296         class from the MonoImage->class_cache as the class is not
6297         initialized;   Fixes the leak pointed out by Paolo.
6298
6299 2006-05-25  Dick Porter  <dick@ximian.com>
6300
6301         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
6302         DeleteCriticalSections until I figure out which one may still be
6303         sometimes locked when mono_thread_cleanup is called.
6304
6305 2006-05-24  Dick Porter  <dick@ximian.com>
6306
6307         * threads.c (mono_thread_cleanup): Move the threading cleanup out
6308         of mono_thread_manage and back into its own function, so it can be
6309         called after the finalizer thread has finished.
6310
6311         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
6312
6313 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
6314
6315         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
6316         Fixes #78495.
6317
6318         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
6319         with non-blittable elements.
6320         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
6321
6322 2006-05-24  Martin Baulig  <martin@ximian.com>
6323
6324         * mono-debug-debugger.h (MonoDebuggerEvent): Added
6325         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
6326
6327         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
6328         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
6329         `mono_debugger_event_handler' to NULL.
6330
6331 2006-05-24  Martin Baulig  <martin@ximian.com>
6332
6333         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
6334
6335 2006-05-24  Martin Baulig  <martin@ximian.com>
6336
6337         * mono-debug-debugger.h
6338         (mono_debugger_create_notification_function): Added
6339         `MonoCodeManager *' argument.
6340
6341 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
6342
6343         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
6344
6345 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
6346
6347         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
6348         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
6349         implementation.
6350
6351 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
6352
6353         * icall.c: precise GC support: objects can't be stored in unmanaged
6354         memory anymore, even if they are kept alive by other references: since
6355         they can move the GC needs to be able to always find them.
6356
6357 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
6358
6359         * object.c: precise GC support for static fields. Support
6360         for moving GCs: write barriers and pinned allocation for interned
6361         strings.
6362
6363 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
6364
6365         * domain.c, domain-internals.h: precise GC support for the MonoDomain
6366         structure.
6367
6368 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
6369
6370         * class.c, gc.c: sgen and precise GC updates.
6371
6372 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
6373
6374         * marshal.h, marshal.c: added write barrier wrapper and precise type
6375         fixes.
6376
6377 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
6378
6379         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
6380         support.
6381
6382 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
6383
6384         * reflection.c: precise and sgen GC updates.
6385
6386 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
6387
6388         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
6389
6390 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
6391
6392         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
6393
6394 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
6395
6396         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
6397         MONO_TYPE_OBJECT. Fixes #78462.
6398
6399 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
6400
6401         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
6402         and blittable types.
6403
6404 2006-05-17  Miguel de Icaza  <miguel@novell.com>
6405
6406         * class.c (mono_class_get_exception_for_failure): Implement parts
6407         of a TODO: if the loader error is set (instead of the class
6408         error), we return a Loader exception that can be properly thrown
6409         elsewhere.
6410
6411         This was exposed by some Winforms 2.0 code that I tried to run
6412         (Atsushi pointed me to it).
6413
6414 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
6415
6416         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
6417         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
6418         
6419         * marshal.c (emit_marshal_vtype): Add limited support for 
6420         UnmanagedType.LPStruct. Fixes #78427.
6421
6422         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
6423         Applied a patch from kangaroo to fix #77523.
6424
6425 2006-05-17  Martin Baulig  <martin@ximian.com>
6426
6427         * threads.c
6428         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
6429         (debugger_thread_created): Removed.
6430         (debugger_thread_exited): Removed.
6431
6432 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
6433
6434         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6435
6436         * object-internals.h (MonoReflectionResource): Sync with managed version.
6437
6438 2006-05-12  Wade Berrier <wberrier@novell.com>
6439
6440         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
6441
6442 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
6443
6444         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
6445         functions try to allocate from the image mempool.
6446
6447 2006-05-12  Dick Porter  <dick@ximian.com>
6448
6449         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
6450
6451 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
6452
6453         * object.c: The FieldGetter and FieldSetter methods require the full
6454         name of the class, not only the name. Fixes bug #78277.
6455
6456 2006-05-11  Miguel de Icaza  <miguel@novell.com>
6457
6458         * loader.c (method_from_memberref): Do not pass the NULL klass to
6459         mono_loader_set_error_() methods.  Pass the non-NULL value
6460         (class). 
6461
6462 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
6463
6464         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
6465         (mono_assembly_close): Null out assembly->image->references after freeing it.
6466
6467         * image.c (mono_image_close): Free image->references.
6468         
6469         * reflection.c (mono_image_basic_init): Fix a small memory leak.
6470
6471 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
6472
6473         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
6474         before checking if it's NULL (g_assert).
6475
6476 2006-05-10  Martin Baulig  <martin@ximian.com>
6477
6478         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
6479         I thought I already killed that two months ago, but now it somehow reappeared.
6480
6481 2006-05-10  Martin Baulig  <martin@ximian.com>
6482
6483         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
6484
6485 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
6486
6487         * reflection.c: Allocate memory for dynamically created methods in the image
6488         mempools.
6489
6490 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
6491
6492         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
6493         don't use the ad pointer before checking if it's NULL (g_assert).
6494
6495 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
6496
6497         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
6498         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
6499
6500         * marshal.c: Allocate all signatures from mempools.
6501
6502         * marshal.c: Allocate some more signatures from mempools.
6503
6504 2006-05-09  Miguel de Icaza  <miguel@novell.com>
6505
6506         * object.c (mono_load_remote_field): The code used to provide a
6507         temporary variable for returning results if the user did not
6508         provide a result pointer.  But our temporary variable was allocted
6509         on the satck.
6510
6511         Fix calling code to always pass a result area.   Coverity ID 103.
6512
6513 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
6514
6515         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
6516         value, not the old. Fixes #78312.
6517         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
6518
6519         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
6520         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
6521         per-image cache.
6522
6523         * assembly.c (mono_assembly_close): Free image->references.
6524
6525         * assembly.c (mono_assembly_names_equal): Fix a warning.
6526         (mono_assemblies_cleanup): Cleanup more global data.
6527
6528         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
6529
6530         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
6531         ptr_cache and image->modules.
6532
6533         * image.c (mono_image_init): Allocate array_cache lazily.
6534         
6535 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6536
6537         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
6538         behavior was changed recently and has bad side effects.
6539
6540 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
6541
6542         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
6543         
6544         * assembly.c (mono_assembly_close): Remove a debug printf.
6545
6546         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
6547
6548         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
6549         to also allow for temporary references between mono_image_open ()/close ().
6550
6551         * domain.c (get_runtimes_from_exe): Add a FIXME.        
6552
6553 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
6554
6555         * marshal.c: Fix support for dynamic methods.
6556
6557         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
6558
6559         * marshal.c (mono_marshal_cleanup): New cleanup function.
6560
6561         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
6562         image mempools.
6563
6564         * class.c (mono_class_init): Fix leaking class->nested_classes.
6565
6566         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
6567
6568         * image.c (mono_image_init): Initialize the new cashes.
6569
6570         * image.c (mono_image_close): Destroy the new cashes.
6571
6572         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
6573
6574         * mempool.c (mono_mempool_strdup): New helper function.
6575
6576         * class-internals.h: Add prototype for mono_loader_unlock ().
6577
6578         * domain.c (mono_jit_info_table_find): Fix a warning.
6579         (mono_debugger_check_runtime_version): Ditto.
6580
6581         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
6582         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
6583         functions to these modules.
6584
6585         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
6586         metadata modules.
6587         
6588         * marshal.c (mono_free_bstr): Fix a warning.
6589
6590         * assembly.c (mono_assembly_open_full): Fix another small leak.
6591
6592         * object.c: Fix some unload leaks in the remoting code.
6593
6594         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
6595         function.
6596
6597         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
6598
6599         * reflection.c: Fix some unload leaks in dynamic assemblies.
6600
6601 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
6602
6603         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
6604         * marshal.h: Add BSTR support on Win32
6605         * icall.c: Add BSTR icalls
6606         * metadata.h: Add BSTR enums
6607
6608 2006-04-28  Miguel de Icaza  <miguel@novell.com>
6609
6610         Work to catch the crash from #76795 and turn it into an
6611         exception.   As I stubbed out pieces of the VisualBasic support,
6612         I found a number of places where the code was failing and I added
6613         checks to those places. 
6614         
6615         * metadata.c (do_mono_metadata_parse_generic_class): Make this
6616         function return a status code.  If we fail to parse the signature
6617         from mono_metadata_parse_generic_inst, return FALSE.
6618
6619         * loader.c (mono_get_method_from_token): If we fail to load the
6620         method (mono_class_get) return NULL.   
6621
6622         * (method_from_memberref): Return NULL if we are unable to parse
6623         the method signature
6624
6625         (mono_loader_error_prepare_exception): Since we now use the
6626         loader_error flag internally to stop processing, and obtaining
6627         exceptions that might be thrown will walk this code path the
6628         proper way of going from a MonoLoaderError into a
6629         MonoException was convoluted.   This new routine encapsulates the
6630         process of turning the error into an exception and *clearing* the
6631         error afterwards.
6632         
6633 2006-04-27  Miguel de Icaza  <miguel@novell.com>
6634
6635         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
6636         with missing assemblies), and to cope with:
6637
6638                 * Missing fieldref from a non-existing assembly.
6639                 * Missing methodref from a non-existing assembly.
6640
6641         The first batch of work to address *some* of the issues from 76661.
6642         
6643         * object.c (mono_class_create_runtime_vtable): If we fail to
6644         initialize the class raise the exception here. 
6645
6646         * metadata.c (mono_class_get_overrides_full): If any methods fail
6647         to load return the failure to the caller.
6648
6649         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
6650         flagging assemblies that failed to load.   
6651
6652         Do not crash if we are unable to load the assembly.
6653
6654         (mono_assembly_close): Do nothing with REFERENCE_MISSING
6655         assemblies. 
6656
6657         * loader.c (mono_loader_set_error_type_load): Change the
6658         convention to always pass unallocated strings, so we make our own
6659         copies (I know our own code had duplicated strings before, but
6660         this keeps the normal conventions).
6661         (method_from_memberref): Call mono_loader_set_error_method_load
6662         for all possible failures of loading the class. 
6663         Remove assert, turn into a loader error.
6664
6665         (mono_loader_error_to_exception): Move this routine from mini
6666         (mini_loader_error_to_exception) there was no need to have that in
6667         mini. 
6668
6669         * class.c (mono_class_from_typeref): If we were not able to load
6670         the assembly with mono_assembly_load_reference, call the
6671         mono_loader_set_error_type_load to register the problem.
6672
6673         (mono_class_setup_fields): If we fail to load the type from
6674         mono_metadata_parse_type_full, call mono_class_set_failure and
6675         break from the loop.
6676
6677         If class->exception_type is set, we do not layout the fields as
6678         that might crash the runtime, and instead return (from breaking
6679         from the previous loop).
6680
6681         (mono_class_setup_vtable): This now returns a boolean indicating
6682         whether the table was properly setup.   The decision is driven by
6683         mono_class_get_overrides_full which might run into non-existing
6684         methods. 
6685         
6686         (mono_class_init): Returns TRUE on success or FALSE if there was a
6687         problem in loading the type (incorrect assemblies, missing
6688         assemblies, methods, etc).
6689
6690         When we call mono_class_setup_fields we also check for a potential
6691         error inside this call (either a class exception or a general
6692         loader exception).
6693
6694         (mono_class_create_from_typedef): If the parent fails to load
6695         (calling mono_class_get_full) return NULL.
6696         
6697         ** Important **
6698
6699         calls to mono_metadata_parse_type_full should be checked
6700         everywhere and set the mono_class_set_failure
6701         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
6702
6703         The current patch checks the places where my manually constructed
6704         tests show the errors are showing up, but we should do it
6705         everywhere. 
6706
6707         ** Important2 **
6708
6709         mono_class_init return values should be tested everywhere, like
6710         the previous case this is something that we should audit
6711         everywhere and not only on the cases exposed by the tests I
6712         created. 
6713
6714 2006-04-26  Miguel de Icaza  <miguel@novell.com>
6715
6716         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
6717         boolean parameter and instead pass the information on `options'
6718         parameter (FileOptions).
6719
6720         * icall.c: Register the new signature for MonoIO.Open.
6721
6722         * debug-helpers.c (dis_one): Trying to understand how coverity
6723         works.  Fix Run 5, item 78.
6724
6725 2006-04-26  Dick Porter  <dick@ximian.com>
6726
6727         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
6728         dereference.
6729
6730 2006-04-25  Martin Baulig  <martin@ximian.com>
6731
6732         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
6733
6734         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
6735         debugger_thread_created().
6736         (debugger_gc_push_all_stacks): Don't handle the main thread in any
6737         special way.
6738         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
6739         (mono_debugger_finalize_threads): New function; undo the effects
6740         of mono_debugger_init_threads().
6741         (mono_debugger_create_all_threads): Removed.
6742
6743 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
6744
6745         * image.c (mono_image_close): Tidy up trace messages.
6746
6747         * assembly.c (mono_assembly_close): Ditto.
6748
6749         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
6750         no longer references an already freed assembly. Fixes #78168.
6751
6752 2006-04-21  Dick Porter  <dick@ximian.com>
6753
6754         * threads.c (mono_thread_detach): Fix reference counting when
6755         detaching threads.
6756
6757 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
6758
6759         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
6760         #78155.
6761
6762 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
6763
6764         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
6765         (mono_type_to_stind): Ditto.
6766
6767         * marshal.c: Use the new helper functions to simplify code.
6768
6769         * image.c (mono_image_close): Add some code for help debug assembly unloading
6770         problems.
6771
6772         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
6773         image mempool.
6774
6775         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
6776         assembly was already loaded in another appdomain. Fixes #78083.
6777
6778 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
6779
6780         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
6781         referenced assemblies.
6782         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
6783
6784         * domain.c (mono_domain_free): Add a trace message.
6785
6786         * appdomain.c (add_assemblies_to_domain): Ditto.        
6787
6788         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
6789         field.  
6790
6791 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
6792
6793         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
6794
6795 2006-04-12  Martin Baulig  <martin@ximian.com>
6796
6797         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
6798         `USE_INCLUDED_LIBGC'.   
6799
6800 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
6801
6802         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
6803         the patch contains ../ and a small directory name later. Hopefully fixes
6804         #78035.
6805
6806 2006-04-10  Martin Baulig  <martin@ximian.com>
6807
6808         Clean up the debugger's thread-handling code.
6809
6810         The debugger's thread-handling code has been moved from
6811         ../mini/debug-debugger.c to threads.c.  We now iterate directly
6812         over the `threads' hash, keep track of exiting threads and also
6813         use proper locking.
6814
6815         We can now debug XSP and XSP based applications with the debugger.
6816
6817         * object-internals.h (MonoThread): Added `gpointer end_stack'.
6818
6819         * threads.h
6820         (MonoThreadCallbacks): Removed; this was only used by the debugger.
6821         (mono_install_thread_callbacks): Likewise.      
6822
6823         * threads.c (mono_thread_callbacks): Removed.
6824         (debugger_thread_created, debugger_thread_exited): New static functions.
6825         (start_wrapper): Call debugger_thread_created().
6826         (thread_cleanup): Call debugger_thread_exited().
6827         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
6828         (mono_debugger_init_threads): New public function.
6829         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
6830         iterate directly over the `threads' hash and also use proper locking.
6831
6832         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
6833
6834         * mono-debug-debugger.h
6835         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
6836
6837 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
6838
6839         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
6840         argument type=array. Fixes #78057.
6841
6842 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
6843
6844         * culture-info-table.h : regenerated. Fixed bug #69652.
6845
6846 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
6847
6848         * loader.c metadata.c: Reapply a variant r59116.
6849         
6850         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
6851
6852         * class.c (mono_class_setup_interface_offsets): New internal function.
6853
6854         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
6855         interfaces too. Fixes #77398.
6856
6857         * reflection.c (encode_cattr_value): Add support for 
6858         parameter type=object, argument type=array.
6859         (load_cattr_value): Ditto. Fixes #77916.
6860
6861         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
6862         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
6863
6864         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
6865         a byval char array and CharSet is Ansi.
6866
6867         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
6868
6869 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
6870
6871         * metadata.c: Add some locking comments.
6872         
6873         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
6874         mempool.
6875         (mono_metadata_free_method_signature): Don't free the signature itself.
6876
6877         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
6878
6879         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
6880         reference the same MonoImage.
6881         (mono_assembly_load_from_full): Add an assert.
6882
6883 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
6884
6885         * image.c (mono_image_close): Don't put the image we are about to free into the
6886         loaded_images_guid_hash.
6887
6888         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
6889         to reduce code duplication.
6890
6891         * marshal.c: Register the native functions called by this module as icalls, to
6892         somewhat centralize the creation of MonoMethodSignature's.
6893
6894         * loader.c (mono_method_signature): Add a cache for method signatures.
6895
6896         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
6897         the parameter attributes of a method.
6898         (mono_metadata_parse_method_signature_full): Refactored the computation of
6899         parameter attributes into a separate function. Also avoid one allocation in
6900         most cases.
6901
6902         * assembly.c (mono_assembly_close): Ditto.
6903
6904         * image.c (mono_image_close): Log trace messages with INFO level.
6905
6906         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
6907
6908         * image.c reflection.c: Correct reference counting of image modules.
6909         
6910         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
6911         of this function from the image mempool.
6912         
6913         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
6914         to allow more cached types to be used.
6915
6916         * mono-debug.c (mono_debug_add_method): Appled patch from
6917         David S. Miller  <davem@sunset.davemloft.net>: Access 
6918         minfo->lexical_blocks[] entry elements using read32().
6919
6920 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
6921
6922         * loader.c (mono_free_method): No longer free the method header for non-dynamic
6923         methods as it is allocated from the mempool.
6924
6925         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
6926         image mempool.
6927
6928         * metadata-internals.h: Add comments describing the reference counting scheme
6929         used for MonoImage and MonoAssembly.
6930
6931         * image.c assembly.c reflection.c: Rework reference counting of images and 
6932         assemblies so they are freed when the runtime is shut down. Free some 
6933         additional memory structures when an image is unloaded.
6934         
6935 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
6936
6937         * class.c loader.c reflection.c: Allocate more data structures in
6938         the image mempool.
6939
6940 2006-03-31  Miguel de Icaza  <miguel@novell.com>
6941
6942         * icall.c
6943         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
6944         build on pre glib 2.4 systems.
6945
6946 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
6947
6948         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
6949
6950         * icall.c: Fix some warnings.
6951
6952 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
6953
6954         * culture-info-table.h : regenerated.
6955
6956 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
6957
6958         * threads.c, object-internals.h, verify.c: changed the culture caching
6959         code to use a normal MonoArray for storage so the GC can keep track of
6960         them easily. Fixed bits of the cache logic, too and simplified the
6961         code.
6962
6963 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
6964
6965         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
6966         thread for non-Boehm GCs.
6967
6968 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
6969
6970         * domain.c, object.c, domain-internals.h: reduce the amount of memory
6971         needed to keep track of the data for static fields.
6972
6973 2006-03-29  Raja R Harinath  <rharinath@novell.com>
6974
6975         Fix #75172
6976         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
6977         for interface classes.  Use 'num_methods' instead.
6978         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
6979         before using '->vtable_size' field.
6980
6981 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
6982
6983         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
6984         doesn't contain managed pointers, so use a normal hashtable.
6985
6986 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
6987
6988         * reflection.c, class-internals.h, domain.c: fixed handling of types
6989         used as values for objects in custom attributes (bug #77915):
6990
6991 2006-03-24  Martin Baulig  <martin@ximian.com>
6992
6993         * class.c (mono_class_setup_fields): Added support for generic
6994         instances; fixes #77580.
6995
6996 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6997
6998         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
6999
7000 2006-03-24  Dick Porter  <dick@ximian.com>
7001
7002         * file-io.c (get_file_attributes): More stat macro breakage.
7003         Fixes bug 77759.
7004
7005 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
7006
7007         * profiler.c: added the file=filename option in the default profiler
7008         to output the profile data to filename.
7009
7010 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7011
7012         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
7013         bug #77877.
7014
7015 2006-03-22  Martin Baulig  <martin@ximian.com>
7016
7017         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
7018         allocated `MonoClassField *' in `fb->handle'.
7019
7020 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
7021
7022         * class.c, image.c, metadata-internals.h: implemented new mechanism to
7023         allocate interface ID to save memory and allow better ID reuse on
7024         appdomain unload. setup_generic_vtable () removal from Martin.
7025
7026 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
7027
7028         * object.h, appdomain.c, domain.c, exception.c, icall.c,
7029         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
7030         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
7031         write barriers for reference stores with managed objects accessed with
7032         C structures in the runtime and in embedding programs.
7033
7034 2006-03-20  Raja R Harinath  <rharinath@novell.com>
7035
7036         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
7037         'interface_id' and 'max_interface_id' fields of MonoClasses
7038         representing open generic types.
7039
7040 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
7041
7042         * object.h, object.c, icall.c: added functions to deal with
7043         storing valuetypes that contain references in managed objects.
7044         * reflection.c, string-icalls.c, threads.c, marshal.c: small
7045         fixes and comments around uses of mono_array_addr ().
7046
7047 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
7048
7049         * object.h, icall.c, monitor.c: object.GetHashCode ()
7050         implementation that supports the moving garbage collector.
7051
7052 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
7053
7054         * icall.c, threads-types.h, threads.c: implemented finalizer for
7055         LocalDataStoreSlot.
7056
7057 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
7058
7059         * metadata.c (mono_type_size): Add a fixme.
7060         (mono_type_stack_size): Ditto.
7061
7062         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
7063         'type_forwarders' field.
7064
7065         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
7066         attribute from net 2.0.
7067
7068         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
7069         from class.c.
7070
7071         * class.c (mono_class_setup_fields): Fix a warning.
7072         
7073         * class.c (mono_class_from_name): Add support for assemblyref entries
7074         in the EXPORTEDTYPE table.
7075
7076         * reflection.c: Add support for handling type forwarders under net 2.0.
7077
7078         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
7079         
7080 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
7081
7082         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
7083         overwriting entries in ModuleBuild->types, also clean up the code
7084         a little. Fixes #77774.
7085
7086 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
7087
7088         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
7089         load friend assembly info when present.
7090
7091 2006-03-14  Raja R Harinath  <rharinath@novell.com>
7092
7093         Fix crasher on gtest-158.cs.
7094         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
7095         the return value if the MonoClass we want is yet in an
7096         inconsistent state.
7097         * class.c (mono_class_create_from_typedef): Add an comment
7098         explaining an order dependency between mono_class_setup_parent and
7099         mono_class_setup_mono_type.
7100
7101 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
7102
7103         * class.c: documentation updates and events bug fix.
7104
7105 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
7106
7107         * class.c: some cleanup, locking fixes.
7108
7109 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
7110
7111         * class.c: fix the generics code to setup nested
7112         type info to the instantiated type (bug #77770).
7113
7114 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
7115
7116         * marshal.c: fixed a few type correctness issues.
7117
7118 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
7119
7120         * loader.c: the Set/Get/Addrtess array methods should be public.
7121
7122 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
7123
7124         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
7125         
7126         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
7127         info->wrapper.
7128
7129 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
7130
7131         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
7132
7133         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
7134
7135         * mempool.c (mono_mempool_alloc): Speed this up a bit.
7136         (mono_mempool_alloc0): Ditto.
7137
7138 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7139
7140         * socket-io.c:
7141         (create_object_from_sockaddr): it was allocating 4 extra bytes
7142         for the AF_UNIX data. Fixes bug #77747.
7143
7144 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
7145
7146         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
7147
7148 2006-03-09  Dick Porter  <dick@ximian.com>
7149
7150         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
7151         Fixes bug 76966 again.
7152
7153 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
7154
7155         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
7156         names from r57532
7157         * appdomain.c: Bumped corlib version to 48 (due to r57532)
7158
7159 2006-03-07  Martin Baulig  <martin@ximian.com>
7160
7161         * object.c
7162         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
7163
7164 2006-03-07  Martin Baulig  <martin@ximian.com>
7165
7166         * class.c
7167         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
7168         regression introduced in r56970; see gtest-252.cs.
7169
7170         * loader.c (mono_get_method_constrained): Correctly handle generic
7171         methods; see gtest-253.cs.
7172
7173 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
7174
7175         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
7176
7177 2006-03-04  Martin Baulig  <martin@ximian.com>
7178
7179         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
7180         compute the parent type at runtime, just like we're already doing
7181         it for interfaces.
7182
7183         * reflection.c
7184         (mono_reflection_bind_generic_parameters): Don't compute the
7185         parent type anymore.
7186
7187         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
7188
7189 2006-03-04  Martin Baulig  <martin@ximian.com>
7190
7191         * mono-debug-debugger.h
7192         (mono_debugger_create_notification_function): Allocate memory at
7193         runtime and return a pointer to it.
7194
7195 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
7196
7197         * assembly.c: Fix windows build.
7198         
7199         * assembly.c: Fix build.
7200
7201         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
7202
7203         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
7204         
7205 2006-03-03  Dick Porter  <dick@ximian.com>
7206
7207         * process.c
7208         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
7209         Check parameters before dereferencing them.  Fixes Aaron's part of
7210         bug 77393.
7211
7212 2006-03-03  Raja R Harinath  <rharinath@novell.com>
7213
7214         Fix performance regression.
7215         * loader.c (find_method_in_class): Add 'from_class' argument.
7216         Rename 'klass' argument to 'in_class'.  The signature is compared
7217         against the method in 'in_class', and the corresponding method is
7218         returned from 'from_class'.
7219         (find_method): Walk both 'in_class' and 'from_class' in parallel.
7220         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
7221         type definition and generic instantiation in parallel.
7222         (mono_get_method_constrained): Update to changes.
7223
7224 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
7225
7226         * threads.c: make sure the domain is correct, too when doing
7227         mono_thread_attach ().
7228
7229 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
7230
7231         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
7232         windows. Fixes #77683.
7233
7234 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
7235
7236         * object.h, *: introduced specific way to set elements of an array
7237         of references to be used as write barrier. Still need to audit the
7238         uses of mono_array_addr.
7239
7240 2006-03-01  Miguel de Icaza  <miguel@novell.com>
7241
7242         * object-internals.h: New field to cache the assmebly name, patch
7243         from Tambet Ingo (tambet@ximian.com)
7244
7245 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
7246
7247         * decimal.h, class-internals.h, metadata-internals.h,
7248         file-io.h: mark a few function declarations as internal, to
7249         reduce the number of PLT entries.
7250
7251 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7252
7253         * file-io.c: fix typo in warning message.
7254
7255 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
7256
7257         * loader.c: on unix, lookup the "*A" version of a function
7258         if charset is auto as a second option before failing.
7259
7260 2006-02-28  Raja R Harinath  <rharinath@novell.com>
7261
7262         * class.h (mono_class_inflate_generic_method): Revert to two
7263         argument version.
7264         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
7265         (mono_class_inflate_generic_method_full): Add.
7266         * class.c (mono_class_inflate_generic_method_full): Rename from
7267         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
7268         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
7269         * loader.c, reflection.c: Update to changes.
7270
7271 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
7272
7273         * icall.c: const fixes and small improvements.
7274
7275 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7276
7277         * threadpool.c: for asynchronous connect(), enable the same workaround
7278         for BSD 6 as for the Mac. Fixes bug #77637.
7279
7280 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
7281
7282         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
7283         formatted classes. Fixes #77524.
7284
7285 2006-02-24  Raja R Harinath  <rharinath@novell.com>
7286
7287         * class.c (inflate_generic_type): Add a couple more
7288         micro-optimizations.
7289         (inflate_generic_context): Don't use the 'gmethod' from
7290         'inflate_with'.
7291         (mono_class_inflate_generic_method): If the method has generic
7292         parameters, but the passed-in context doesn't have a 'gmethod',
7293         create one.  Use the possibly simplified generic instantiation
7294         from the declaring class instead of the one passed in.
7295
7296 2006-02-24  Raja R Harinath  <harinath@gmail.com>
7297
7298         Make generic method signature and method header handling lazy.
7299         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
7300         (inflate_generic_header): Likewise.
7301         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
7302         parameter to avoid inflating types.
7303         (mono_get_inflated_method): Empty out.
7304         * class.h (mono_class_inflate_generic_method): Update to changes.
7305         * loader.c (mono_get_method_from_token): Don't parse signature for
7306         generic methods, nor methods of generic classes.
7307         (mono_method_signature): Rename from 'mono_method_signature'.
7308         Inflate signature on demand.
7309         (mono_method_get_header): Inflate method header on demand.
7310         * reflection.c: Update to changes.
7311
7312 2006-02-23  Raja R Harinath  <rharinath@novell.com>
7313
7314         * metadata.c (mono_metadata_inflate_generic_inst): If the
7315         instantiation is closed, don't bother expanding it in the new
7316         context.
7317         * class.c (inflate_generic_class): If the generic instantiation
7318         doesn't change after inflation, return the argument itself.
7319         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
7320         Add bounds checks.
7321         (inflate_generic_context): If neither the generic class nor the
7322         generic method instantiations change, return the original context.
7323         * reflection.c (mono_method_get_object): Do
7324         'mono_get_inflated_method' before accessing the ->klass field.
7325         (inflate_mono_method): Don't create a MonoGenericMethod unless
7326         necessary.
7327         (inflate_method): Don't pass a constructed type as the declaring
7328         type of a methodbuilder.
7329
7330 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
7331
7332         * object.c: fix memory overwrite.
7333
7334 2006-02-22  Dick Porter  <dick@ximian.com>
7335
7336         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
7337         it doesn't work any more.
7338         (mono_threads_request_thread_dump): Fix unused variable warnings.
7339
7340 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
7341
7342         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
7343         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
7344         the public header file.
7345
7346 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
7347
7348         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
7349
7350 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
7351
7352         * class-internals.h, object.c: reduce the size of MonoVTable
7353         and store the interface_offsets array at negative offsets.
7354
7355 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
7356
7357         * metadata.c: tweak table descriptors data structures to reduce
7358         size and runtime relocations.
7359
7360 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
7361
7362         * marshal.c: fix some types and opcodes to be type-safe
7363         in marshaling wrappers.
7364
7365 2006-02-21  Ankit Jain  <jankit@novell.com>
7366
7367         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
7368
7369 2006-02-21  Raja R Harinath  <rharinath@novell.com>
7370
7371         * metadata.c (get_constraints): Relax debugging checks for monodis.
7372
7373 2006-02-21  Ankit Jain  <jankit@novell.com>
7374
7375         * metadata.c (mono_metadata_load_generic_params): Move the code
7376         checking for ambiguous generic params from here to mono/dis/get.c
7377         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
7378
7379 2006-02-21  Raja R Harinath  <harinath@gmail.com>
7380
7381         Fix assertion triggered when compiling nemerle.
7382         * class.c (mono_get_shared_generic_inst): Rename from
7383         get_shared_inst and make non-static.
7384         * loader.c (mono_get_shared_generic_method): New.  Used to create
7385         the MonoGenericContext-equivalent of a MonoGenericContainer.
7386         (mono_get_method_from_token): Initialize the 'context' field of
7387         the created MonoGenericContainer.
7388         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
7389         * metadata.c (get_constraints): Add sanity check.
7390         * class-internals.h: Add new internal methods.
7391
7392         * reflection.c (verify_safe_for_managed_space): New sanity check.
7393         Currently checks that owner-less generic parameters aren't allowed
7394         in managed space.
7395         (mono_type_get_object): Use it.
7396         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
7397         that are now in mono_type_get_object.
7398         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
7399
7400 2006-02-19  Raja R Harinath  <harinath@gmail.com>
7401
7402         * metadata.c (mono_type_create_from_typespec): Rename from
7403         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
7404         argument and caching of types in the generic container.
7405         (unwrap_arrays, find_generic_param): Remove.
7406         * metadata-internals.h: Update.
7407         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
7408
7409 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
7410
7411         * class.c (mono_class_get_exception_for_failure): Fix a warning.
7412
7413         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
7414         return values. Fixes #77581.
7415
7416         * class.c (mono_fnptr_class_get): Switch name and name_space.
7417
7418         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
7419         classes and add support for [In, Out] attributes.
7420         (mono_marshal_free_asany): Ditto. Fixes #77524.
7421
7422 2006-02-18  Raja R Harinath  <harinath@gmail.com>
7423
7424         * class.c (mono_class_from_generic_parameter): Make more robust to
7425         incomplete MonoGenericContainers from monodis.
7426
7427 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
7428
7429         * class-internals.h: added some more exception types.
7430         * class.c, metadata.c: added a few checks to handle missing
7431         types.
7432
7433 2006-02-17  Raja R Harinath  <rharinath@novell.com>
7434
7435         Use owner-less generic-params some more.
7436         * class.c (my_mono_class_from_generic_parameter): Remove.
7437         (mono_class_from_generic_parameter): Handle null image,
7438         param->name and param->owner.
7439         (mono_class_from_mono_type): Update.
7440         (mono_class_create_from_typespec): Remove 'container' parameter.
7441         If that parameter is non-null, the result is always inflated by
7442         'mono_class_get_full' anyway.
7443         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
7444         parameter.
7445         (mono_class_get_full): Update.
7446
7447         * class.c (inflate_generic_type) [GENERICINST]: If the generic
7448         instance is not open, don't bother inflating.
7449         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
7450         parse metadata for inflated classes.
7451         (_mono_class_get): Change GenericContext* parameter to
7452         GenericContainer*.
7453         (mono_class_create_from_typespec): Likewise.  Simplify, and
7454         implement trivially.  All the cases are handled in
7455         mono_class_from_mono_type.  Don't inflate returned class.
7456         (mono_class_get_full): Delegate GENERICINST optimization to
7457         inflate_generic_type.
7458         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
7459
7460 2006-02-16  Dick Porter  <dick@ximian.com>
7461
7462         * socket-io.c (create_object_from_sockaddr): Fix typo.
7463         (create_sockaddr_from_object): Check array lengths before
7464         potentially accessing items off the end.
7465         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
7466         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
7467         (ves_icall_System_Net_Sockets_Socket_Send_internal)
7468         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
7469         length checks to avoid wraparound overflows.
7470         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
7471         contents of the array of sockets
7472         (hostent_to_IPHostEntry2)
7473         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
7474         Check return value of inet_ntop ().
7475         (addrinfo_to_IPHostEntry): Fix typo
7476
7477 2006-02-16  Raja R Harinath  <rharinath@novell.com>
7478
7479         Type metadata parsing doesn't use generic-instantiation information.
7480         * metadata.c (mono_metadata_parse_array_full): Change
7481         MonoGenericContext* parameter to MonoGenericContainer*.
7482         (mono_metadata_parse_type_full): Likewise.
7483         (mono_type_create_from_typespec_full): Likewise.
7484         (mono_metadata_parse_mh_full): Likewise.
7485         (mono_metadata_parse_generic_inst): Likewise.
7486         (do_mono_metadata_parse_generic_class): Likewise.
7487         (do_mono_metadata_parse_type): Likewise.
7488         * metadata-internals.h: Update to changes.
7489         * class.c (mono_class_find_enum_basetype): Likewise.
7490         (mono_class_setup_fields): Likewise.
7491         (mono_class_create_from_typespec): Likewise.
7492         * loader.c (method_from_methodspec): Likewise.
7493         (mono_get_method_from_token): Likewise.
7494         (mono_method_get_header): Likewise.
7495
7496 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
7497
7498         * marshal.c: handle additional GENERICINST case (patch from
7499         Thong Nguyen <tum@veridicus.com>).
7500         Fix a few cases where LDIND_I/STIND_I was used for references.
7501
7502 2006-02-16  Raja R Harinath  <rharinath@novell.com>
7503
7504         * reflection.c (mono_reflection_get_token): Remove unused variable.
7505
7506 2006-02-16  Martin Baulig  <martin@ximian.com>
7507
7508         * reflection.c (mono_reflection_get_token): Add support for fields
7509         in instantiated generic types.
7510
7511         * icall.c
7512         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
7513
7514 2006-02-15  Martin Baulig  <martin@ximian.com>
7515
7516         * icall.c
7517         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
7518         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
7519         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
7520         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
7521
7522 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
7523
7524         * class.c, metadata.c, metadata.h, object.c, icall.c,
7525         marshal.c: changed mono_type_get_underlying_type () to do
7526         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
7527         Fixed handling of instantiated generic valuetypes (bug #75479).
7528
7529 2006-02-15  Raja R Harinath  <rharinath@novell.com>
7530
7531         * metadata.c (mono_metadata_decode_signed_value): Simplify.
7532         Delegate to mono_metadata_decode_value, and work on the returned value.
7533
7534         * icall.c (ves_icall_MonoType_GetGenericArguments):
7535         Add consistency check here too.
7536         
7537 2006-02-15  Ankit Jain  <jankit@novell.com>
7538
7539         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
7540         char/short etc.
7541
7542 2006-02-15  Ankit Jain  <jankit@novell.com>
7543
7544         * metadata.c (mono_metadata_decode_signed_value): New function to decode
7545         signed values, used only for representing lower bounds of arrays.
7546         (mono_metadata_parse_array_full): Use new
7547         mono_metadata_decode_signed_value to decode lower bounds.
7548
7549 2006-02-14  Martin Baulig  <martin@ximian.com>
7550
7551         * reflection.c
7552         (mono_reflection_get_token): Support "MonoGenericMethod" and
7553         "MonoGenericCMethod" and allow generic instances / methods.
7554
7555 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
7556
7557         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
7558         to obtain the terminal size using an ioctl.
7559
7560         * object.c (mono_nullable_init): Revert this as nullable reference
7561         types are not valid.
7562         (mono_nullable_box): Ditto.
7563
7564 2006-02-09  Dick Porter  <dick@ximian.com>
7565
7566         * threads.c (mono_thread_detach): Drop a reference to the thread
7567         we're detaching.
7568
7569 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
7570
7571         * object.c (mono_nullable_init): Handle nullable reference types.
7572         (mono_nullable_box): Ditto. Fixes #77446.
7573
7574 2006-02-07  Martin Baulig  <martin@ximian.com>
7575
7576         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
7577
7578 2006-02-07  Ankit Jain  <jankit@novell.com>
7579
7580         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
7581         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
7582         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
7583         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
7584         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
7585         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
7586
7587 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
7588
7589         * class.c (mono_class_create_generic): Set type_token as well.
7590
7591         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
7592         compatible with MS.
7593
7594 2006-02-02  Martin Baulig  <martin@ximian.com>
7595
7596         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
7597         has never been used so far.
7598
7599 2006-02-02  Martin Baulig  <martin@ximian.com>
7600
7601         * mono-debug-debugger.h: Changed comment at the top of this file;
7602         the header is not installed, but it's safe to #include it from
7603         within the JIT.
7604
7605         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
7606         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
7607
7608 2006-02-02  Martin Baulig  <martin@ximian.com>
7609
7610         * mono-debug.h
7611         (MonoSymbolTable): Removed the `metadata_info' field.
7612
7613         * mono-debug.c
7614         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
7615
7616         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
7617         (mono_debugger_add_builtin_types): Removed.
7618         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
7619         (mono_debugger_create_notification_function): We now operate on a
7620         pre-allocated area; take a `gpointer' and return `void'.
7621
7622         * mono-debug-debugger.c
7623         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
7624         (mono_debugger_add_builtin_types): Removed.
7625
7626 2006-02-02  Martin Baulig  <martin@ximian.com>
7627
7628         * threads.c (mono_debugger_create_all_threads): New public method.
7629
7630 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
7631
7632         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
7633         breaks on several platforms.
7634
7635 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
7636
7637         * assembly.c: the VS.NET build doesn't supply default values for
7638         MONO_ASSEMBLIES and MONO_CFG_DIR.
7639
7640 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
7641
7642         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
7643         helper function.
7644
7645         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
7646
7647         * loader.c (method_from_memberref): Fix a warning.
7648
7649         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
7650
7651         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
7652         with explicit layout. Fixes #77433.
7653
7654 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
7655
7656         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
7657         max_interface_id is initialized before using it. Fixes #77398.
7658         (ves_icall_Type_GetInterfaces): Ditto.
7659
7660 2006-01-30  Raja R Harinath  <rharinath@novell.com>
7661
7662         * metadata.c (mono_metadata_parse_method_signature_full): Don't
7663         allocate memory for parameter attributes when parsing memberref
7664         signatures.
7665         * loader.c (mono_loader_set_error_method_load): Don't warn.
7666         (method_from_memberref): Ensure MissingMethodException gets thrown
7667         if method is not found.  Make warning more informative.
7668
7669 2006-01-29  Raja R Harinath  <harinath@gmail.com>
7670
7671         Fix #77397
7672         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
7673         return true if is byref.
7674         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
7675         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
7676         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
7677
7678 2006-01-27  Raja R Harinath  <rharinath@novell.com>
7679
7680         Fix tests/find-method.2.il
7681         * loader.c (find_method, find_method_in_class): Remove is_inflated
7682         argument.  Revert 2006-01-18 change.
7683         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
7684         is generic, search for method in its generic definition.
7685         * class.c (mono_class_setup_vtable_general): Print generic
7686         arguments of generic types in debugging printf.
7687
7688 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
7689
7690         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
7691
7692         * threads.c (mono_threads_request_thread_dump): New helper function.
7693
7694 2006-01-25  Raja R Harinath  <rharinath@novell.com>
7695
7696         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
7697
7698 2006-01-25  Ankit Jain  <jankit@novell.com>
7699
7700         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
7701         move definition to ..
7702         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
7703         
7704 2006-01-25  Ankit Jain  <jankit@novell.com>
7705             Raja R Harinath  <rharinath@novell.com>
7706
7707         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
7708         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
7709         as necessary.
7710
7711 2006-01-25  Martin Baulig  <martin@ximian.com>
7712
7713         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
7714         `MonoDebuggerThread' into debug-debugger.c.
7715
7716 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
7717
7718         * profiler.c: fix printing of data.
7719
7720 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
7721
7722         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
7723           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
7724
7725 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
7726
7727         * object.c: fix deadlock related to string interning.
7728
7729 2006-01-23  Martin Baulig  <martin@ximian.com>
7730
7731         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
7732
7733         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
7734
7735 2006-01-23  Martin Baulig  <martin@ximian.com>
7736
7737         * mono-debug.h: Moved the prototypes of some functions which are
7738         used by the JIT here from mono-debug-debugger.h.
7739
7740 2006-01-21  Martin Baulig  <martin@ximian.com>
7741
7742         * Makefile.am: Don't install mono-debug-debugger.h.
7743
7744 2006-01-21  Martin Baulig  <martin@ximian.com>
7745
7746         * mono-debug-debugger.h: Enforce the private status of this header
7747         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
7748         Moved some stuff from mono-debugger-jit-wrapper.h here.
7749
7750 2006-01-20  Raja R Harinath  <rharinath@novell.com>
7751
7752         * class.c (mono_class_from_typeref): Add a sanity test to help
7753         catch lack of assembly load/search hooks.
7754
7755 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
7756
7757         * marshal.c (emit_struct_conv): Relax the fields with same offset
7758         check even more. Fixes #77230.
7759
7760 2006-01-18  Martin Baulig  <martin@ximian.com>
7761
7762         * loader.c (find_method_in_class): Added `gboolean is_inflated'
7763         argument; if false, we compare the uninstantiated signatures.
7764         (method_from_memberref): Compare the uninstantiated signatures;
7765         fixes #76417.
7766
7767 2006-01-18  Robert Jordan  <robertj@gmx.net>
7768
7769         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
7770         Clear the weak link. Fixes bug #77170.
7771
7772         * gc.c (mono_gchandle_free):
7773         Reflect *-gc.c changes (tiny optimization).
7774
7775 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
7776
7777         * metadata.c (mono_metadata_signature_dup): Applied patch from
7778         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
7779         Fixes #77288.
7780
7781 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
7782
7783         * marshal.c (emit_struct_conv): Allow fields with the same offset when
7784         marshalling from native to managed code. Fixes #77230.
7785
7786 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7787
7788         * threadpool.c: fix problem (Mac only) when more than one asynchronous
7789         connect. Fixes bug #77020.
7790
7791 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
7792
7793         * class.c: fixed id assignement for nested interfaces (bug #77275).
7794         Added also better info for --print-vtable debugging.
7795
7796 2006-01-12  Martin Baulig  <martin@ximian.com>
7797
7798         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
7799         interfaces on-the-fly; fixes #76625.
7800
7801         * class-internals.h
7802         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
7803         don't need that anymore.
7804
7805 2006-01-12  Miguel de Icaza  <miguel@novell.com>
7806
7807         * socket-io.c
7808         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
7809         To avoid initing the nested_classes when not needed I turned the
7810         PeerCredData as a toplevel internal class, as it has to be shared
7811         anyways. 
7812
7813         Fixes the CASA issue.
7814
7815 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
7816
7817         * domain.c: Accessors for MonoJitInfo
7818
7819         * profiler-private.h: Add jitinfo to the end jit hook
7820
7821         * profiler.[ch]: Define new hooks, called after jitting which give
7822         the MonoJitInfo that was compiled
7823
7824 2006-01-10  Martin Baulig  <martin@ximian.com>
7825
7826         * class.c (mono_class_setup_events): Add support for generic
7827         classes; fixes #76440.
7828
7829 2006-01-06  Raja R Harinath  <rharinath@novell.com>
7830
7831         Fix #77160.
7832         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
7833         on passed-in method.
7834
7835 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
7836
7837         * object.c (mono_runtime_invoke_array): Add Nullable support.
7838
7839         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
7840
7841 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
7842
7843         * file-io.c: Don't consider sockets as directory and avoid an endless
7844         loop. Fix bug #76966.
7845
7846 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
7847
7848         * object.c (mono_nullable_init): New helper function.
7849         (mono_nullable_box): Ditto.
7850
7851         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
7852
7853         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
7854
7855         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
7856         
7857 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
7858
7859         * class.c (mono_class_is_assignable_from): Make T assignable to 
7860         Nullable<T>.
7861
7862 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
7863
7864         * appdomain.c: Bump corlib version to 46.
7865         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
7866         serialization purpose) and changed ves_icall_System_Reflection_
7867         Assembly_get_code_base signature to accept a boolean (to escape, or 
7868         not, the assembly code base).
7869
7870 2005-12-23  Dick Porter  <dick@ximian.com>
7871
7872         * icall.c: 
7873         * threads-types.h: 
7874         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
7875         CreateEvent icall now returns "created" boolean parameter.
7876
7877 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
7878
7879         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
7880         #76967.
7881
7882         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
7883         when attr_klass is an interface. Fixes #77045.
7884
7885 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
7886
7887         * marshal.c (emit_struct_conv): Fix previous patch.
7888         
7889         * marshal.c (emit_struct_conv): Add a check for fields with the same
7890         offset.
7891
7892 2005-12-20  Raja R Harinath  <rharinath@novell.com>
7893
7894         Fix regression in Mono.C5.
7895         * class.c (mono_class_create_generic): If 'klass' is an interface
7896         set up the interface offsets.
7897         (mono_class_is_assignable_from): Don't throw away generic arguments.
7898
7899 2005-12-19  Raja R Harinath  <rharinath@novell.com>
7900
7901         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
7902         type parameters.
7903
7904 2005-12-15  Raja R Harinath  <rharinath@novell.com>
7905
7906         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
7907         dead store.
7908         (do_mono_metadata_parse_generic_class): Don't pass the current
7909         generic context when parsing the type being instantiated: it
7910         cannot use it, anyway.
7911
7912         * loader.c (method_from_memberref): Don't inflate a signature if
7913         it doesn't contain any type parameters.
7914
7915 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
7916
7917         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
7918
7919 2005-12-14  Martin Baulig  <martin@ximian.com>
7920
7921         * class.c
7922         (mono_type_get_name_recurse): Don't return null for type
7923         parameters and open generic classes.
7924         (mono_class_setup_methods): Don't exclude generic instances.
7925         (mono_get_unique_iid): Use different IDs for different
7926         instantiations of the same generic type.
7927         (mono_class_setup_vtable): Only use setup_generic_vtable() for
7928         open generic instances; create a normal vtable for closed generic
7929         instances.
7930         (mono_class_setup_vtable_general): We're now also called for
7931         closed generic instances.
7932
7933         * reflection.c
7934         (mono_reflection_bind_generic_parameters): Correctly use
7935         mono_metadata_lookup_generic_inst() everywhere.
7936
7937 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
7938
7939         * object.c (mono_class_create_runtime_vtable): Call 
7940         mono_class_setup_vtable ().
7941
7942         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
7943         function.
7944         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
7945         #76959.
7946
7947         * loader.c (mono_loader_set_error_type_load): Print the type load
7948         warnings to the console so they are more visible to the user.
7949         (mono_loader_set_error_method_load): Ditto.
7950
7951         * reflection.c (ensure_runtime_vtable): Revert the last change as it
7952         is still broken.
7953         
7954         * reflection.c (ensure_runtime_vtable): Fix build.
7955
7956         * reflection.c (ensure_runtime_vtable): Disable an optimization which
7957         doesn't work in all cases.
7958
7959 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
7960
7961         * object.c (mono_array_new_full): Treat a single dimensional array
7962         with 0 lower bounds as an szarray. Fixes #76973.
7963
7964         * reflection.c (custom_attr_visible): Really fix this.
7965
7966 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
7967
7968         * reflection.c (custom_attr_visible): Allow nested public attributes
7969         as well.
7970
7971         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
7972         interface check.
7973
7974 2005-12-12  Raja R Harinath  <harinath@gmail.com>
7975
7976         * class.c (set_generic_param_owner): Delete.
7977         (mono_class_create_from_typedef): Don't set ->owner field of
7978         generic parameters to "param containers" of enclosing classes.
7979         * reflection.c (mono_reflection_initialize_generic_parameter):
7980         Likewise.
7981
7982 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
7983
7984         * reflection.c (custom_attr_visible): Fix build.
7985
7986 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
7987
7988         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
7989         private attributes.
7990         
7991         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
7992         handling of null parameter defaults.
7993
7994 2005-12-09  Raja R Harinath  <rharinath@novell.com>
7995
7996         * class.c (mono_class_from_generic_parameter): Don't set
7997         klass->generic_container.
7998         (my_mono_class_from_generic_parameter): Likewise.
7999
8000 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
8001
8002         * reflection.c (load_public_key): Fix a warning.
8003         (method_encode_code): Fix unaligned accesses.
8004
8005 2005-12-07  Martin Baulig  <martin@ximian.com>
8006
8007         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
8008
8009         * reflection.c
8010         (write_generic_param_entry): Encode our custom attrs.
8011
8012         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
8013
8014 2005-12-07  Martin Baulig  <martin@ximian.com>
8015
8016         * reflection.c (encode_new_constraint): Removed; we don't use the
8017         `NewConstraintAttribute' anymore.
8018
8019 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
8020
8021         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
8022         not fire a TypeResolve event when Assembly.GetType () is called.
8023
8024 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
8025
8026         Beginning of support for nullable types in the runtime. Parts of
8027         this patch are from Martin.
8028
8029         * appdomain.c (MONO_CORLIB_VERSION): Bump
8030
8031         * domain.c (mono_init_internal): get the nullable type
8032
8033         * class.c (mono_class_is_nullable): New method
8034         (mono_class_get_nullable_param): New mehod
8035         (mono_class_create_generic): In types T? set cast_class to T
8036
8037         * class-internals.h (MonoDefaults): new nullable default class
8038         (mono_class_get_nullable_param, mono_class_get_nullable_param):
8039         new methods.
8040
8041 2005-12-05  Raja R Harinath  <rharinath@novell.com>
8042
8043         * metadata.c (select_container): New.  Refactor code to select the
8044         appropriate GenericContainer given the type of generic parameter
8045         we are looking for.
8046         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
8047         not a MonoGenericContext.  Use select_container.  Update parameters.
8048         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
8049         and MONO_TYPE_MVAR.
8050         (unwrap_arrays): Remove duplicate tests.
8051         (find_generic_param): Rename from 'has_same_context'.  Now walks a
8052         generic instantiated class to find any arguments that are generic
8053         parameters.
8054         (mono_type_create_from_typespec_full): Use find_generic_param to
8055         avoid evicting some generic instantiations from the typespec
8056         cache.
8057
8058 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
8059
8060         * reflection.c: fixed writing of doubles on ARM FPA.
8061
8062 2005-12-02  Robert Jordan  <robertj@gmx.net>
8063
8064         * icall.c: Fixed EventInfo.ReflectedType (#76829).
8065
8066 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8067
8068         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
8069         least on SUSE 10 they are not the same (on debian, they are just the
8070         same thing).
8071
8072 2005-12-01  Raja R Harinath  <rharinath@novell.com>
8073
8074         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
8075         DeclaringType for VARs and MVARs.
8076         * class.c (set_generic_param_owner): Fix initialization of owner
8077         fields.
8078
8079 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
8080
8081         * icall.c: fixed Enum.ToObject() to correctly convert the values.
8082
8083 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8084
8085         * threadpool.c: workaround for a bug that shows up on the Mac:
8086         select()+connect() on a blocking socket is not like it should
8087         be, so we proceed to connect() in that case, wasting the I/O
8088         threadpool thread until connect succeedes. Fixes bug #75436.
8089
8090 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8091
8092         * threadpool.c: fix typo when setting file descriptor states.
8093
8094 2005-11-28  Raja R Harinath  <rharinath@novell.com>
8095
8096         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
8097         * metadata.c (mono_metadata_parse_method_signature_full): Don't
8098         create a temporary signature container.
8099         (mono_metadata_parse_generic_param): Update to changes.
8100         (mono_type_create_from_typespec_full): Update to changes.
8101         * loader.c (method_from_memberref): Don't use a
8102         MonoGenericContainer while parsing a memberref signature.
8103         (method_from_methodspec): Remove dead-store of the 'container'
8104         variable.  It's overwritten before use.
8105
8106         * metadata.c (mono_type_create_from_typespec_full): Make debugging
8107         checks tighter.
8108         (mono_metadata_parse_generic_param): Likewise.
8109         * loader.c (find_method_in_class): Does not need a
8110         MonoGenericContainer.  Use 'mono_method_signature' rather than
8111         'mono_method_signature_full'.
8112         (find_method, mono_get_method_constrained, method_from_memberref):
8113         Update to changes.
8114
8115         * metadata.c (mono_type_create_from_typespec_full): Ensure that
8116         owner-less generic-parameters are never evicted from the typespec
8117         cache.
8118
8119         * loader.c (method_from_memberref): Don't use the current context
8120         when parsing signatures.
8121         (method_from_methodspec, mono_get_method_from_token): Update to changes.
8122
8123         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
8124         side-effects in g_assert.
8125         * loader.c (mono_get_method_from_token): Resolve klass earlier so
8126         that we don't potentially lose information.
8127
8128 2005-11-26  Dick Porter  <dick@ximian.com>
8129
8130         * icall.c:
8131         * threads.c: icalls to implement basic (ie, not named)
8132         System.Threading.Semaphore.
8133
8134 2005-11-24  Dick Porter  <dick@ximian.com>
8135
8136         * process.c
8137         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
8138         Use GetProcessId() if it's available.
8139
8140 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
8141
8142         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
8143
8144 2005-11-23  Raja R Harinath  <rharinath@novell.com>
8145             Ankit Jain  <jankit@novell.com>
8146
8147         * loader.c (mono_get_method_from_token): Initialize 'method' field
8148         of all generic parameters before parsing the signature.  Remove
8149         code that "fixed"-up MVAR references.
8150
8151 2005-11-23  Ankit Jain  <jankit@novell.com>
8152
8153         * metadata.c (mono_metadata_has_generic_params):
8154         (mono_metadata_load_generic_param_constraints):
8155         (mono_metadata_load_generic_params): Move duplicate code ...
8156         (mono_metadata_get_generic_param_row): ... here. Returns the
8157         first row-id in GenericParam table for a given owner (token).
8158         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
8159         prototype.
8160
8161 2005-11-23  Raja R Harinath  <rharinath@novell.com>
8162             Ankit Jain  <jankit@novell.com>
8163
8164         * metadata.c (mono_metadata_class_equal): Pass signature_only when
8165         comparing VARs too.
8166         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
8167         type->data.generic_param only if the type is an MVAR.
8168         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
8169         leak owner-less VARs and MVARs into managed space.
8170
8171 2005-11-21  Martin Baulig  <martin@ximian.com>
8172
8173         * class-internals.h
8174         (MonoMethod): Moved the `generic_container' here from
8175         `MonoMethodNormal' since we now also need it for
8176         `MonoMethodPInvoke';
8177         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
8178         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
8179         an union containing both `MonoMethodNormal' and
8180         `MonoMethodPInvoke'.
8181
8182         * loader.c
8183         (mono_get_method_from_token): Allow implementing generic methods
8184         as interncalls.
8185
8186         * threads.c
8187         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
8188         icall.
8189
8190 2005-11-17  Dick Porter  <dick@ximian.com>
8191
8192         * icall.c: 
8193         * process.h: 
8194         * process.c: Split the Process Start_internal icall into
8195         ShellExecuteEx_internal and CreateProcess_internal, which are
8196         called depending on whether UseShellExecute is true.  Fixes bug
8197         76670.
8198
8199         * appdomain.c (MONO_CORLIB_VERSION): Incremented
8200
8201 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
8202
8203         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
8204         'msize' parameters, use the information in 'mspec' instead.
8205         (emit_object_to_ptr_conv): Ditto.
8206
8207         * marshal.c (emit_struct_conv): Handle explicit layout structs with
8208         fields out of order. Fixes #76733.
8209
8210 2005-11-17  Ankit Jain  <jankit@novell.com>
8211
8212         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
8213
8214 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
8215
8216         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
8217           bug #76575.
8218
8219 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
8220
8221         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
8222         for types with non-auto layout. Fixes #76717.
8223
8224 2005-11-16  Ankit Jain  <jankit@novell.com>
8225
8226         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
8227         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
8228         if generic_context is null.
8229           (mono_metadata_generic_param_equal): param->owner can be null.
8230           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
8231         null.
8232
8233 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
8234
8235         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
8236         the correct value.
8237
8238 2005-11-15  Martin Baulig  <martin@ximian.com>
8239
8240         * object.c (set_value): Use mono_class_from_mono_type() instead of
8241         the hack for generic instances; fixes #76136.
8242
8243 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
8244
8245         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
8246         fields.
8247
8248         * image.c (load_metadata_ptrs): Initialize the new fields.
8249
8250         * reflection.c (create_dynamic_mono_image): Ditto.
8251
8252         * reflection.c (build_compressed_metadata): Use the new fields.
8253
8254         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
8255         icall.
8256
8257         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
8258         icall.
8259         
8260 2005-11-15  Ankit Jain  <jankit@novell.com>
8261             Raja R Harinath  <harinath@gmail.com>
8262
8263         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
8264         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
8265         new per-generic_container cache if the cached MonoType's context matches
8266         the current context.
8267           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
8268         to the expected context.
8269           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
8270
8271 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8272
8273         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
8274         we changed the signature of an icall.
8275         * icall.c: Modify to mono_double_ParseImpl return true/false 
8276         depending on the success, instead of throwing the exception. This will
8277         help us in Double.TryParse methods.
8278         
8279 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
8280
8281         * marshal.c (emit_marshal_object): Throw an exception when
8282         marshalling 'object' instead of crashing. Fixes #76696.
8283
8284 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
8285
8286         * class-internals.h: Add prototype for mono_type_get_full_name ().
8287
8288 2005-11-11  Dick Porter  <dick@ximian.com>
8289
8290         * threads.c (mono_thread_manage): Make sure the main thread has
8291         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
8292
8293 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
8294
8295         * loader.c (mono_loader_set_error_type_load): Log a warning to the
8296         console about the missing type.
8297         (mono_loader_set_error_method_load): Ditto.
8298
8299 2005-11-09  Miguel de Icaza  <miguel@novell.com>
8300
8301         * mono-config.c (mono_get_config_dir): Set the system defaults if
8302         none is specified.
8303
8304         * assembly.c (mono_set_dirs): New API entry point to set the
8305         assembly and the config directory in one call
8306
8307 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
8308
8309         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
8310         the ftnptr was created from a delegate in a domain other than the
8311         current domain. Fixes #75377.
8312
8313         * exception.h exception.c: Add mono_get_exception_not_supported ().
8314
8315 2005-11-08  Martin Baulig  <martin@ximian.com>
8316
8317         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
8318
8319 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
8320
8321         * security-manager.h: Added definitions to deal with strongname key 
8322         pairs bigger (and smaller) than 1024 bits.
8323         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
8324         adjust wrt the public key length being used.
8325
8326 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
8327
8328         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
8329           Windows build (r51396-51397).
8330
8331 2005-11-03  Martin Baulig  <martin@ximian.com>
8332
8333         * class.c (mono_class_setup_vtable_general): Also add generic
8334         methods to the vtable; fixes #76581.
8335
8336 2005-11-01  Miguel de Icaza  <miguel@novell.com>
8337
8338         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
8339         sure that we lookup GetString method from the System.Text.Encoding
8340         class, not the derived class or we get an empty method.
8341
8342         Fixed class #76612.
8343
8344 2005-10-25  Miguel de Icaza  <miguel@novell.com>
8345
8346         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
8347         if it has been previously set (embedders). 
8348
8349         Make mono_set_rootdir available also on Unix.
8350
8351 005-10-24  Robert Jordan  <robertj@gmx.net>
8352
8353         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
8354
8355 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
8356
8357         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
8358         only calls which are made to native code use this flag.
8359
8360         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
8361
8362 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
8363
8364         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
8365         Add support for FieldBuilders.
8366
8367 2005-10-29  Martin Baulig  <martin@ximian.com>
8368
8369         * mono-debug.c
8370         (mono_debug_using_mono_debugger): New public method; returns
8371         whether we're running inside the debugger.
8372
8373 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
8374
8375         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
8376         for Method/Constructor/FieldBuilders.
8377
8378 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
8379
8380         * reflection.c (module_add_cattrs): Save custom attributes for global methods
8381         and fields as well.
8382
8383 2005-10-26  Martin Baulig  <martin@ximian.com>
8384
8385         * mono-debug-debugger.c
8386         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
8387
8388 2005-10-24  Raja R Harinath  <harinath@gmail.com>
8389
8390         * icall.c (base64_to_byte_array): Don't pass an out-of-range
8391         integer to isspace.
8392
8393 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
8394
8395         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
8396         when passing valuetypes byref. Fixes #76502.
8397
8398 2005-10-19  Jackson Harper  <jackson@ximian.com>
8399
8400         * profiler.c: Don't put a . in front of types that are not in a
8401         namespace.
8402
8403 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
8404
8405         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
8406
8407 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
8408
8409         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
8410         #76436.
8411         (mono_marshal_get_ldflda_wrapper): Fix a warning.
8412
8413 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8414
8415         * assembly.c metadata-internals.h icall.c: Define an additional
8416         parameter for mono_assembly_name_parse_full, so we can avoid creating
8417         S.R.AssemblyName.Version when no version info wasn't passed.
8418         
8419 2005-10-09  Miguel de Icaza  <miguel@novell.com>
8420
8421         * class.c (mono_type_get_full_name): Reimplement method that was
8422         removed. 
8423
8424         * image.c: Some docs
8425
8426 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
8427
8428         * profiler.c (output_newobj_profile): Fix printing of Total memory
8429         on x86.
8430
8431 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
8432
8433         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
8434
8435 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
8436
8437         * threads.c: remove debug output.
8438
8439 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
8440
8441         * threads.c (mono_thread_manage): Fix crashes if more than 64
8442         threads need to be aborted. Hopefully fixes #75899.
8443
8444         * assembly.c (mono_stringify_assembly_name): New helper function.
8445
8446         * class.c: Use mono_stringify_assembly_name instead of the similar
8447         static function.
8448
8449         * assembly.h assembly.c: Add support for calling a postload search 
8450         hook if an assembly cannot be loaded.
8451
8452         * appdomain.c: Register new search hooks which call the AssemblyResolve
8453         events in AppDomain. Fixes #75231
8454
8455 2005-10-07  Martin Baulig  <martin@ximian.com>
8456
8457         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
8458         methods without debug info.
8459
8460 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
8461
8462         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
8463         wrappers.
8464
8465 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8466
8467         * file-io.c: now that we return symlinks, use lstat and, when the file
8468         is a symbolic link, stat, to get the file attributes. Also avoid the
8469         conversion to/from utf16/external.
8470
8471 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
8472
8473         * class.c (mono_class_layout_fields): Compute klass->has_references
8474         correctly if an embedded valuetype is not yet initialized. Fixes
8475         #76331.
8476
8477 2005-10-04  Martin Baulig  <martin@ximian.com>
8478
8479         * metadata.c
8480         (mono_metadata_load_generic_param_constraints): New public
8481         function; splitted the constraints loading out from
8482         mono_metadata_load_generic_params().
8483
8484         * class.c (mono_class_create_from_typedef): Call
8485         mono_metadata_load_generic_param_constraints() after setting up
8486         the type and creating our parent; fixes #75329.
8487
8488 2005-10-04  Martin Baulig  <martin@ximian.com>
8489
8490         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
8491         non-dynamic parent classes.
8492
8493 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
8494
8495         * file-io.c : win32 build fix (ETXTBSY seems not found).
8496
8497 2005-10-04  Martin Baulig  <martin@ximian.com>
8498
8499         * reflection.c
8500         (mono_image_get_methodspec_token): Make the cache actually work;
8501         fixes #75974.
8502
8503 2005-10-04  Martin Baulig  <martin@ximian.com>
8504
8505         * class.c (mono_class_name_from_token): Removed the unneccessary
8506         `MonoGenericContext *' argument.
8507
8508 2005-10-04  Martin Baulig  <martin@ximian.com>
8509
8510         * loader.c
8511         (method_from_methodspec): Make the caching work again; fixes the
8512         performance regression from #76262.
8513
8514 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8515
8516         * file-io.c:
8517         * file-io.h:
8518         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
8519         GetFileSystemEntries that performs the same work but without going
8520         into io-layer, locking, etc.
8521
8522 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
8523
8524         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
8525         ThreadState_Stopped as well. Fixes #76047.
8526
8527 2005-09-29  Martin Baulig  <martin@ximian.com>
8528
8529         * class.c
8530         (inflate_generic_context): If the new context has a `gmethod', set
8531         its `container' that that gmethod's `container'.
8532
8533         * metadata.c
8534         (mono_metadata_parse_generic_param): Simplify things;
8535         `generic_container = generic_context->container;' is just fine.
8536
8537         * loader.c (method_from_methodspec): Code cleanups.
8538
8539 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
8540
8541         * decimal.c: fix warning (and let gcc generate correct
8542         code on ARM with optimizations).
8543
8544 2005-09-28  Martin Baulig  <martin@ximian.com>
8545
8546         * loader.c
8547         (method_from_memberref): Added `MonoGenericContext *class_context'
8548         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
8549         (method_from_methodspec): If we're a memberref, use the enclosing
8550         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
8551
8552 2005-09-28  Martin Baulig  <martin@ximian.com>
8553
8554         * object.c (mono_runtime_invoke_array): Added support for
8555         MONO_TYPE_GENERICINST; fixes #75917.
8556
8557 2005-09-27  Martin Baulig  <martin@ximian.com>
8558
8559         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
8560         `k->byval_arg.type' to determine the actual type.
8561
8562         * loader.c (method_from_methodspec): Removed some hacks.
8563
8564 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
8565
8566         * class-internals.h (mono_field_is_deleted): Do the test for
8567         rtspecialname before we check the actual name of the field. This
8568         prevents us from dereferencing a pointer into the string table,
8569         saving us from accessing a few pages
8570
8571         * *.c: Replace the use of {Enter,Leave}CriticalSection with
8572         macros. This will allow a deadlock debugger to easily be plugged
8573         in.
8574
8575 2005-09-27  Martin Baulig  <martin@ximian.com>
8576
8577         * loader.c (method_from_methodspec): Create a "signature"
8578         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
8579
8580 2005-09-27  Martin Baulig  <martin@ximian.com>
8581
8582         * class.c
8583         (inflate_generic_class): Correctly set the new context's
8584         container.
8585
8586         * loader.c
8587         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
8588         instead of a `MonoGenericContext *'.
8589         (mono_method_signature_full): Take a `MonoGenericContainer *'
8590         instead of a `MonoGenericContext *'.
8591
8592         * metadata.c
8593         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
8594         instead of a `MonoGenericContext *'.
8595         (mono_metadata_parse_method_signature_full): Likewise.
8596
8597 2005-09-26  Martin Baulig  <martin@ximian.com>
8598
8599         * class.c
8600         (mono_class_from_generic_parameter): Set `klass->generic_container'
8601         (mono_class_from_generic_parameter): Likewise.
8602         (mono_bounded_array_class_get): We inherit the generic container
8603         from the element class.
8604
8605         * loader.c
8606         (find_method, find_method_in_class): Take a `MonoGenericContext *'
8607         argument rather than computing it here.
8608         (method_from_memberref): Correctly set the generic context before
8609         parsing the signature.  Fixes #75681.
8610
8611 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
8612
8613         * object.c (mono_class_has_special_static_fields): Fix warnings.
8614
8615 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8616
8617         * assembly.c: Add parse_public_key function, to
8618         par the public keys. Also added mono_assembly_name_parse_full,
8619         to define it the parsed key should be freed or not.
8620         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
8621         to parse a long format assembly name.
8622         * metadata-internals.h: Keep mono_assembly_name_parse_full as
8623         private, since calling it to preserve the key requires
8624         freeing it manually.
8625         
8626 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
8627
8628         * locales.c : removed HAVE_ICU part.
8629
8630 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
8631
8632         * object.c (mono_class_create_runtime_vtable): Avoid calling 
8633         field_is_special_static if the klass has no special static fields.
8634
8635         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
8636         (MonoCachedClassInfo): Likewise.
8637
8638         * object.c (mono_class_has_special_static_fields): New helper function.
8639
8640 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
8641
8642         * class.c (mono_class_create_from_typedef): Don't call 
8643         interfaces_from_typedef_full for enums.
8644         (mono_class_create_from_typedef): Compute the base types of enums directly
8645         without calling mono_class_setup_fields ().
8646         (mono_class_find_enum_basetype): New helper function.
8647
8648         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
8649         one place inside the string heap.
8650         
8651 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
8652
8653         * class.c: locking fixes, code cleanups, some docs added.
8654         Allocate some data structures in the image mempool.
8655
8656 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
8657
8658         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
8659         the example code.
8660         
8661 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
8662
8663         * class-internals.h, class.c, reflection.c: reduce memory taken by
8664         MonoClass.
8665
8666 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
8667
8668         * metadata.c, metadata.h, loader.h: documentation updates, code and
8669         API cleanups.
8670
8671 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
8672
8673         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
8674         the example code.
8675
8676         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
8677         page faults caused by the runtime while reading metadata.
8678
8679 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8680
8681         * socket-io.c: the field names were changed 3 months ago and no one
8682         realized until bug #76077 got filed!
8683
8684 2005-09-20  Martin Baulig  <martin@ximian.com>
8685
8686         * icall.c (assembly_icalls): Removed some unused debugger icalls.
8687
8688 2005-09-20  Martin Baulig  <martin@ximian.com>
8689
8690         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
8691         write the rank into the class entry.
8692
8693 2005-09-20  Martin Baulig  <martin@ximian.com>
8694
8695         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
8696
8697 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
8698
8699         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8700
8701         * icall.c (custom_attrs_defined_internal): New icall.
8702
8703         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
8704         function.
8705         (mono_custom_attrs_construct_by_type): New helper function.
8706
8707 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
8708
8709         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
8710         terminate the resulting string. Fixes #76123.
8711
8712 2005-09-16  Martin Baulig  <martin@ximian.com>
8713
8714         * mono-debug.c
8715         (mono_debug_add_method): Ignore inflated methods for the moment.
8716
8717 2005-09-14  Martin Baulig  <martin@ximian.com>
8718
8719         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
8720
8721 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
8722
8723         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
8724         return a success/failure indication.
8725         (mono_metadata_interfaces_from_typedef_full): Ditto.
8726         (get_constraints): Ditto.
8727
8728 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
8729
8730         * marshal.c (emit_marshal_array): Fix handling of null arrays.
8731         
8732         * marshal.c (emit_marshal_array): Add support for returning string
8733         arrays from delegates. Fixes #76063.
8734
8735         * marshal.c: Use the emit_ldloc/stloc macros where possible.
8736
8737 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
8738
8739         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
8740         icall.
8741
8742 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
8743
8744         * reflection.c icall.c: Fix after mono_get_exception_type_load
8745         signature change.
8746
8747         * assembly.c (mono_assembly_get_assemblyref): New helper function.
8748         (mono_assembly_load_reference): Use the new helper.
8749
8750         * class-internals.h (MonoLoaderError): New structure containing 
8751         information about type loading errors.
8752
8753         * class-internals.h loader.c: Add APIs to store per-thread loader
8754         error information.
8755
8756         * loader.c class.c: Set the loader error if needed.
8757
8758         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
8759
8760 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
8761
8762         * decimal.c: fixed to handle the broken ARM fp format.
8763
8764 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
8765
8766         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
8767         broken.
8768
8769 2005-09-06  Martin Baulig  <martin@ximian.com>
8770
8771         * domain.c (supported_runtimes): Added v2.0.50727.
8772
8773 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
8774
8775         * culture-info.h: reduce the size of some structures.
8776
8777 2005-09-05  Martin Baulig  <martin@ximian.com>
8778
8779         Reflect latest API changes in the August CTP.
8780
8781         * icall.c
8782         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
8783         ("MonoType.HasGenericArguments"): Removed.
8784         ("MonoMethod.BindGenericParameters"): Renamed to
8785         "MakeGenericMethod".
8786         ("MethodBuilder.BindGenericParameters"): Renamed to
8787         "MakeGenericMethod".    
8788
8789 2005-09-05  Martin Baulig  <martin@ximian.com>
8790
8791         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
8792
8793 2005-09-05  Martin Baulig  <martin@ximian.com>
8794
8795         Applying a patch from Michal Moskal <malekith@nemerle.org>.
8796
8797         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
8798         generic_container is non-NULL.
8799
8800 2005-09-05  Martin Baulig  <martin@ximian.com>
8801
8802         Applying a patch from Michal Moskal <malekith@nemerle.org>.
8803
8804         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
8805
8806 2005-08-29  Michal Moskal  <malekith@nemerle.org>
8807
8808         * reflection.c (encode_locals,
8809         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
8810         for large generic types.
8811
8812 2005-09-05  Martin Baulig  <martin@ximian.com>
8813
8814         Applying a patch from Michal Moskal <malekith@nemerle.org>.
8815
8816         * class.c (mono_dup_array_type): New public method.
8817         (mono_metadata_signature_deep_dup): New public method.
8818         (dup_type): Correctly duplicate array and function types.
8819
8820 2005-09-05  Martin Baulig  <martin@ximian.com>
8821
8822         Applying a patch from Michal Moskal <malekith@nemerle.org>.
8823
8824         * reflection.c (get_default_param_value_blobs): Handle generic types
8825         and generic methods.
8826
8827 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
8828
8829         * class.c: Fixed error reporting (method/class were inversed) for 
8830         inheritance demands.
8831         * security-manager.c|h: Added the AppDomain when calling the managed
8832         System.Security.SecurityManager.InheritanceDemand method.
8833
8834 2005-09-01  Raja R Harinath  <rharinath@novell.com>
8835
8836         * reflection.c (encode_marshal_blob): 'marshaltype' and
8837         'marshaltyperef' are alternate sources for the custom marshaler
8838         name.
8839
8840 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
8841
8842         * class.c: fix creation of array classes with rank == 1
8843         (patch by Ankit Jain <jankit@novell.com>).
8844
8845 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
8846
8847         * object.c: fix check for creating the bound data for arrays vs
8848         szarrays.
8849
8850 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8851
8852         * object.c: configuration file name is now based on the executable name,
8853         not the image name. Fixes bug #75931.
8854
8855 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
8856
8857         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
8858         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
8859
8860 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
8861
8862         * rand.c: Use wincrypt.h instead of WinCrypt.h.
8863
8864 2005-08-24  Ankit Jain  <jankit@novell.com>
8865             Raja R Harinath  <rharinath@novell.com>
8866
8867         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
8868           called by it recursively.
8869           (mono_class_init): Remove special case in pending_init handling, since it's
8870           superseded by the fix to mono_class_from_typeref.
8871
8872 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
8873
8874         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
8875         BROKEN_THREAD_START stuff.
8876
8877 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
8878
8879         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
8880         trampoline.
8881
8882         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
8883         
8884         * object.c (mono_delegate_ctor): Replace the original function address with
8885         a delegate trampoline.
8886
8887 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
8888
8889         * icall.c: add boolean argument to base64_to_byte_array and 
8890         InternalFromBase64String to control whether a whitespace-only string
8891         is allowed (or should casue a FormatException to be thrown). We need
8892         this as the behavior has changed between MS.NET 1.x and 2.0, and we
8893         to match the MS behaviour in both profiles.
8894         * appdomain.c: Bump corlib version.
8895
8896 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8897
8898         This patch implements a big portion of publisher policy
8899         support, used to bind assembly versions and redirect
8900         one assembly from version A to version B.
8901
8902         * assembly.c:
8903         New GSList loaded_assembly_bindings, for storing the cached
8904         assembly bindings.
8905         (assembly_binding_maps_name): New static function for checking if a 
8906         assembly binding information maps an assembly name.
8907         (mono_assembly_binding_info_free): New function for freeing
8908         assembly binding information resources.
8909         (get_publisher_policy_info): New static function for retrieving 
8910         assembly binding information from a MonoImage.
8911         (compare_versions): New static function for comparing an assembly
8912         binding information data and the version of an assembly name.
8913         (check_policy_versions): New static function for checking if an
8914         assembly binding info mapping an assembly name is valid for it.
8915         (mono_assembly_load_publisher_policy): New static function for
8916         loading the 'policy.major.minor.MyAssembly' image for an assembly
8917         with an assembly name 'aname'.
8918         (mono_assembly_bind_version): New static function for updating
8919         assembly redirection.
8920         (mono_assembly_apply_binding): New static function for applying
8921         assembly binding.
8922         (search_binding_loaded): New static function for searching 
8923         loaded assembly binding infos in the cache domain.
8924         (mono_assembly_load_full): Don't apply assembly binding for
8925         reflection only assemblies.
8926
8927         * metadata-internals.h: Add MonoAssemblyBindingInfo,
8928         which contains information about assembly binding. Also
8929         declare signature for mono_config_parse_publisher_policy ()
8930         function, used to retrieve pub policy info.
8931         
8932         * mono-config.c:
8933         (publisher_policy_start): New static function used to parse publisher 
8934         policy config files.
8935         (publisher_policy_parser): New static MonoParseHandler containing 
8936         the functions used when parsing config files.
8937         (mono_config_parse_publisher_policy): New function for parsing
8938         publisher policy files.
8939         
8940 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
8941
8942         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
8943
8944         * marshal.c (mono_delegate_free_ftnptr): Ditto.
8945
8946         * object.c (mono_get_addr_from_ftnptr): New helper function.
8947
8948         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
8949
8950         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8951
8952 2005-08-19  Dick Porter  <dick@ximian.com>
8953
8954         * threads.c, threads.h, appdomain.c, appdomain.h,
8955         profiler-private.h, monitor.c, object.c, object-internals.h,
8956         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
8957         store the thread ID, so it can hold a 64 bit value if needed.
8958
8959 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
8960
8961         * reflection.c (mono_reflection_create_dynamic_method): Store the
8962         handle class into the method references as well so ldtoken works in
8963         dynamic methods.
8964
8965         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
8966         types.
8967
8968 2005-08-19  Ankit Jain <jankit@novell.com>
8969
8970         Fix #75847.
8971         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
8972           here rather than using the method signature of a arbitrary function
8973           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
8974           two arguments.
8975           Hack done with Harinath.
8976
8977 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8978
8979         * threadpool.c: disable printing stack traces when we get a exception
8980         in a threadpool thread. I need to do more testing to figure out which
8981         cases actually print this. Fixes bug #75828.
8982
8983 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8984
8985         * icall.c: there might be ignored whitespace after the last '='. This
8986         fixes length computation and bug #75840.
8987
8988 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
8989
8990         * assembly.c (mono_assembly_load_full): Consider .exe extension as
8991         well. Fixes #75809.
8992
8993         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
8994         #75784.
8995         
8996         * reflection.c (create_custom_attr_data): Ditto.
8997
8998 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
8999
9000         * locales.c, culture-info.h : removed RegionLCIDMap.
9001         * culture-info-tables.h : regenerated.
9002
9003 2005-08-16  Martin Baulig  <martin@ximian.com>
9004
9005         * class.c (mono_type_get_name_recurse): Small fix.
9006
9007 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
9008
9009         * locales.c : indentation fixie.
9010
9011 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
9012
9013         * object-internals.h,
9014           locales.h,
9015           locales.c,
9016           culture-info.h,
9017           icall.c : added RegionInfo table support.
9018         * culture-info-table.h : regenerated for region support.
9019
9020 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
9021
9022         * reflection.c (resolve_object): handle all kinds of MonoMethod
9023         including generic ones
9024
9025 2005-08-12  Ankit Jain <jankit@novell.com>
9026
9027         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
9028           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
9029
9030 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
9031
9032         * process.c: Don't close a thread handle when it's NULL. This is a
9033         workaround for bug #75733.
9034
9035 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
9036
9037         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
9038
9039 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
9040
9041         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
9042
9043 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9044
9045         * threadpool.c: if a work item in the thread pool has a callback that
9046         catches a exception, don't propagate it after invoking the callback.
9047         Fixes bug #75336.
9048
9049 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
9050
9051         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
9052
9053         * class-internals.h (MonoCachedClassInfo): Add some new fields.
9054
9055         * class.c (mono_class_init): Load field info lazily in the AOT case.    
9056
9057         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
9058
9059 2005-08-03  Ankit Jain  <jankit@novell.com>
9060
9061         Fix #75683.
9062         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
9063           PInvoke calling convention is 0.
9064
9065 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
9066
9067         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
9068         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
9069
9070 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
9071
9072         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
9073         to handle threads not started by the GC (patch by Michael Meeks
9074         <michael.meeks@novell.com>).
9075
9076 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
9077
9078         * reflection.c: Make buffer used in emitting types larger for some
9079         big generic types (patch by Michal Moskal).
9080
9081 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
9082
9083         * mono-debug.c: Fix some (not all) alignment problems.
9084
9085 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9086
9087         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
9088         Invoke mono_image_load_from_data_full passing the refonly
9089         parameter.
9090
9091         * assembly.c
9092         (mono_assembly_open_from_bundle): Add the refonly argument, 
9093         in order to pass it to other methods it calls to.
9094         (do_mono_assembly_open): Add the refonly argument, in order 
9095         to pass it to other methods it calls to.
9096         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
9097         the refonly parameter to it.
9098
9099         * image.c: Add loaded_images_refonly_hash and
9100         loaded_images_refonly_guid_hash to cache the reflection
9101         only loaded images.
9102         (mono_images_init): Initialize the hash tables used for
9103         caching the reflection only images.
9104         (load_modules): Invoke mono_image_open_full passing the refonly
9105         parameter to load the modules the correct way.
9106         (build_guid_table): Add the refonly argument, to re-build the 
9107         correct hash table.
9108         (do_mono_image_open): Added the refonly argument, in order to
9109         define it for the loaded image.
9110         (mono_image_loaded_full): New function, which receives an
9111         additional parameter to look for the image in the refonly or
9112         non-refonly section.
9113         (mono_image_loaded): Updated, using mono_image_loaded_full.
9114         (mono_image_loaded_by_guid_full): The same case that happens
9115         with mono_image_loaded_full.
9116         (mono_image_loaded_by_guid): Likewise.
9117         (register_image): Use the ref_only variable inside MonoImage
9118         to decide in which hash table store the current image.
9119         (mono_image_open_from_data_full): Rename
9120         mono_image_open_from_data to mono_image_open_from_data_full,
9121         adding the refonly argument, to define the ref_only variable 
9122         inside MonoImage.
9123         (mono_image_open_from_data): Return 
9124         mono_image_open_from_data_full.
9125         (mono_image_open_full): Rename mono_image_open to
9126         mono_image_open_full, receiving the new refonly argument,
9127         to pass it to inner methods.
9128         (mono_pe_file_open): Update this function, to open
9129         a MonoImage as a non-refonly image.
9130         (mono_image_close): Use the refonly variable inside
9131         MonoImage to remove the image from the correct caches.
9132
9133         * image.h: Add the signatures of mono_image_open_full,
9134         mono_image_open_from_data_full, mono_image_loaded_full,
9135         mono_image_loaded_by_guid_full.
9136
9137         * metadata-internals.h: Add the ref_only field to 
9138         MonoImage.
9139         
9140 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9141
9142         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
9143         Fix the last behavior, which used to load the assemblies and
9144         extract MonoReflectionAssemblyName information, instead of
9145         extract it from the metadata tables. Needed for Reflection
9146         Only assemblies.
9147         
9148 2005-07-29  Martin Baulig  <martin@ximian.com>
9149
9150         * mono-debug-debugger.c
9151         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
9152         not initialized.
9153
9154         * mono-debug.c
9155         (mono_debug_address_from_il_offset): Check whether we have
9156         debugging support before attempting to take the lock.
9157         (mono_debug_source_location_from_address): Likewise.
9158         (mono_debug_source_location_from_il_offset): Likewise.
9159         (mono_debug_il_offset_from_address): Likewise.
9160         (mono_debug_address_from_il_offset): Likewise.
9161
9162 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
9163
9164         * class.c (mono_class_from_name_case): Add support for dynamic images.
9165         Fixes #75650.
9166
9167         * object.c (mono_class_compute_gc_descriptor): Add a workaround
9168         for #75479.
9169
9170 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
9171         
9172         * reflection.c (mono_method_get_object): Fix warning.
9173
9174 2005-07-28  Martin Baulig  <martin@ximian.com>
9175
9176         * mono-debug.c
9177         (mono_debug_add_wrapper): Also write the wrapper type.
9178
9179 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
9180
9181         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
9182         
9183         * class.c (mono_class_init): Avoid reading nested classes if the AOT
9184         data indicates the class has none.
9185
9186 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
9187
9188         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
9189         loader lock with the debugger lock. Prevents deadlocks for beagle.
9190
9191         Beagle can now run on an smp box for a weekend without any
9192         issues. Woohoo!
9193
9194 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
9195
9196         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
9197         in a module. Fixes #75629.
9198
9199 2005-07-26  Martin Baulig  <martin@ximian.com>
9200
9201         * mono-debug.c (mono_debug_add_wrapper): New static method.
9202         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
9203         interncall or a wrapper.
9204
9205         * mono-debug.h (MonoDebugWrapperData): New public typedef.
9206         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
9207         (MONO_DEBUGGER_VERSION): Bump to 51.
9208
9209         * mono-debug-debugger.c
9210         (mono_debugger_add_type): Removed this empty function.
9211         (mono_debugger_add_method): Likewise.
9212
9213 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
9214
9215         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
9216         before accessing method->slot.
9217
9218 2005-07-21  Jb Evain  <jbevain@gmail.com>
9219
9220         * reflection.c (method_encode_clauses/class): Handle filters clauses.
9221         Fixes #75010.
9222
9223 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
9224
9225         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
9226         #75587.
9227
9228 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
9229
9230         * image.h image.c: Add mono_image_get_guid () API function.
9231
9232 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
9233
9234         There were issues when multiple threads tried to load
9235         assemblies. A deadlock was created between assemblies_mutex and
9236         mono_domain_assemblies_lock. This fixes the issue by making the
9237         assembly ref counting be lock free. See bug 75586.
9238         
9239         * image.c (mono_image_close): The add ref function here was using
9240         Interlocked operations while the unref was using a mutex and a
9241         --. I don't think this was ever a bug that would be exposed in a
9242         non-pendantic way (ie, by an embedder doing a ref on one thread
9243         and an unref on another), but for the sake of correctness, this is
9244         now Interlocked.
9245
9246         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
9247         (mono_assembly_load_reference): Call mono_assembly_addref rather
9248         than touching the refcount ourselves.
9249         (mono_assembly_close): Use InterlockedDecrement to unref the
9250         assembly. Don't acquire the lock unless it is actually needed.
9251
9252 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
9253
9254         * class.c (mono_class_layout_fields): Fix calculation of has_references
9255         for generic types.
9256
9257 2005-07-12  Martin Baulig  <martin@ximian.com>
9258
9259         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9260
9261         * metadata.c
9262         (mono_type_hash): Provide better hashing for generic instances.
9263         (mono_generic_inst_hash): Improve hashing.
9264         (mono_generic_class_hash): Likewise.
9265
9266         * reflection.c (mymono_metadata_type_hash): Improve hashing for
9267         generic instances.
9268
9269 2005-07-12  Martin Baulig  <martin@ximian.com>
9270
9271         * reflection.c (mono_reflection_create_runtime_class): Remove the
9272         hack for generic type definitions and non-`Run' assemblies.
9273         (mono_reflection_bind_generic_parameters): Also use
9274         `klass->wastypebuilder' to check for TypeBuilders.
9275
9276 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
9277
9278         * class.c (mono_class_layout_fields): Fix calculation of has_references
9279         for generic types.
9280
9281         * class.c (inflate_generic_class): Fix a leak.
9282         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
9283         for generic types.
9284
9285 2005-07-11  Martin Baulig  <martin@ximian.com>
9286
9287         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
9288         on error.
9289
9290 2005-07-11  Martin Baulig  <martin@ximian.com>
9291
9292         * loader.c (find_method): Also lookup in
9293         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
9294
9295 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9296
9297         * appdomain.c (mono_domain_unload): Don't free the error message
9298         before passing it to mono_get_exception_...
9299
9300         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
9301         
9302 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
9303
9304         * threads.c: try to better guess an available RT signal (bug #75387).
9305
9306 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9307
9308         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
9309         and CACHE_OBJECT.
9310
9311 2005-07-07  Martin Baulig  <martin@ximian.com>
9312
9313         * class.c (mono_type_get_name_full): Return NULL for
9314         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
9315         fixes #75408.
9316
9317 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9318
9319         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
9320         exit the appdomain as well being aborted.
9321
9322         * threadpool.c: Create all threadpool threads inside the root appdomain, and
9323         change back to the root domain after calling managed code. This enables
9324         appdomains using threadpools to be unloaded.
9325
9326 2005-07-07  Martin Baulig  <martin@ximian.com>
9327
9328         * class-internals.h
9329         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
9330         into `MonoDynamicGenericClass' since we only need it for dynamic
9331         types.
9332
9333         * reflection.c (mono_class_bind_generic_parameters): We don't need
9334         to compute the `parent' here.
9335
9336 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
9337
9338         * culture-info-table.h : regenerated.
9339
9340 2005-07-06  Martin Baulig  <martin@ximian.com>
9341
9342         * icall.c
9343         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
9344
9345         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
9346
9347 2005-07-06  Martin Baulig  <martin@ximian.com>
9348
9349         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
9350         we're doing a signature-only comparision; fixes #74945.
9351
9352 2005-07-06  Martin Baulig  <martin@ximian.com>
9353
9354         * class-internals.h (MonoGenericClass): Moved some things out into
9355         a new `MonoInflatedGenericClass' type.  
9356         (MonoInflatedGenericClass): New type; the `klass' of a
9357         `MonoGenericClass' is now computed lazyly in
9358         mono_get_inflated_generic_class().      
9359
9360         * class.c (mono_get_inflated_generic_class): New public function.
9361         (mono_class_inflate_generic_method): Removed the unused
9362         `MonoClass *' argument.
9363         (setup_generic_vtable): Don't call mono_get_inflated_method() on
9364         all the methods.
9365         (mono_class_create_generic): Make this static and merge it with
9366         mono_class_create_generic_2(); we're now called automatically from
9367         mono_get_inflated_generic_class().
9368
9369         * loader.c (mono_method_signature): Call
9370         mono_get_inflated_method() here.
9371
9372 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
9373
9374         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
9375         type of fields with RVA.
9376
9377         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
9378         for this pseudo class.
9379         (my_mono_class_from_generic_parameter): Likewise.
9380         (mono_class_init): Allow interfaces to have cctors.
9381
9382 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
9383
9384         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
9385         lazily for AOT methods.
9386
9387 2005-07-05  Martin Baulig  <martin@ximian.com>
9388
9389         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
9390         returns FALSE for a successful match, not TRUE.
9391
9392 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
9393
9394         * loader.c (mono_method_get_index): Optimize this a bit.
9395
9396 2005-07-04  Martin Baulig  <martin@ximian.com>
9397
9398         * class.c
9399         (class_compute_field_layout): Move the check for generic type
9400         definitions into mono_class_layout_fields().  Fixes #74684.
9401         (mono_class_from_generic_parameter): Correctly compute
9402         `klass->parent'; fixes #75457.
9403
9404         * reflection.c (register_assembly, register_module): Make sure
9405         `domain->rejobject_hash' is already created.
9406
9407 2005-07-02  Martin Baulig  <martin@ximian.com>
9408
9409         * class-internals.h
9410         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
9411         `MonoDynamicGenericClass'.      
9412
9413 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
9414
9415         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
9416         returned by a field getter is null, since null is a valid value.
9417
9418 2005-07-01  Martin Baulig  <martin@ximian.com>
9419
9420         * reflection.c (mono_reflection_generic_class_initialize): Update
9421         the `dgclass->fields [i].parent' to the correct class.
9422         (mono_image_get_fieldref_token): Use the declaring type, not the
9423         reflected type.
9424
9425 2005-07-01  Martin Baulig  <martin@ximian.com>
9426
9427         * loader.c (find_method): Also look in the interfaces; fixes #75429.
9428
9429 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
9430
9431         * threads.c (thread_cleanup): assert that thread != NULL
9432         (wait_for_tids_or_state_change): We were using the wrong variable
9433         when accessing wait->threads. `i' was always out of the bounds of
9434         the array.
9435
9436 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9437
9438         * loader.c: map user32 and kernel32 to libMonoSupportW
9439
9440 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
9441
9442         * appdomain.c (unload_thread_main): Mark this as WINAPI.
9443
9444 2005-06-28  Martin Baulig  <martin@ximian.com>
9445
9446         * loader.c (method_from_methodspec): Fix #75334.
9447
9448 2005-06-28  Martin Baulig  <martin@ximian.com>
9449
9450         Fix #74953 - Arrays now implement the generic IList<T> interface
9451         on the 2.0 platform.
9452
9453         * class-internals.h (MonoDefaults): Added `generic_array_class'.
9454
9455         * reflection.c (mono_class_bind_generic_parameters): New public
9456         function; similar to mono_reflection_bind_generic_parameters(),
9457         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
9458
9459         * domain.c (mono_init_internal): Try to initialize.
9460         `mono_defaults.generic_array_class' here; this'll only succeed if
9461         we're using the 2.0 corlib.
9462
9463         * icall.c
9464         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
9465         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
9466         (mono_lookup_internal_call): Added support for nested classes.
9467
9468         * loader.c
9469         (mono_get_method_from_token): Set `result->signature->pinvoke' if
9470         we're an interncall and have generic arguments.
9471
9472         * class.c
9473         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
9474         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
9475         instance of System.Array.InternalArray<T> for arrays, so they
9476         implement the generic IList<T> interface.
9477
9478 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
9479
9480         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
9481         (chastamar@yahoo.com). Fixes #75374.    
9482
9483 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
9484
9485         * culture-info-table.h: regenerated.
9486
9487 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9488
9489         * icall.c: handle spaces correctly for base64 strings.
9490
9491 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
9492
9493         * *.c: Kill some warnings.
9494
9495 2005-06-23  Duncan Mak  <duncan@novell.com>
9496
9497         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
9498         that this builds on Solaris 10 (x86).
9499
9500 2005-06-23  Martin Baulig  <martin@ximian.com>
9501
9502         * class.c
9503         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
9504         generic type definitions.
9505
9506 2005-06-23  Martin Baulig  <martin@ximian.com>
9507
9508         Fix #75331.
9509
9510         * metadata.c (mono_class_get_overrides): Renamed to
9511         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
9512         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
9513         pass it to mono_get_method_full().
9514
9515 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
9516
9517         * reflection.c (mono_reflection_create_runtime_class): take the
9518         mono_domain_lock in this method. Prevents deadlocks
9519
9520 2005-06-22  Martin Baulig  <martin@ximian.com>
9521
9522         * loader.c (method_from_methodspec): Fix #75330.
9523
9524 2005-06-22  Martin Baulig  <martin@ximian.com>
9525
9526         * reflection.c (type_get_qualified_name): Use
9527         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
9528         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
9529         argument; use it if we don't have an assembly name.
9530
9531 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
9532
9533         * object.c: In mono_message_init, set "copy out" flag for in
9534         parameters with the [Out] flag.
9535
9536 2005-06-21  Martin Baulig  <martin@ximian.com>
9537
9538         * class.c
9539         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
9540         and MONO_TYPE_PTR.
9541
9542 2005-06-21  Martin Baulig  <martin@ximian.com>
9543
9544         * class.c (mono_class_init): Don't initialize `class->fields' for
9545         generic instances since they're initialized again in
9546         compute_field_layout(). 
9547         (compute_field_layout): Set the field's `generic_info' here; fix
9548         #75320. 
9549
9550 2005-06-21  Martin Baulig  <martin@ximian.com>
9551
9552         * class-internals.h
9553         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
9554
9555         * metadata.c (mono_metadata_generic_method_equal): Also
9556         distinguish the `generic_class'; fixes #75334.
9557
9558 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9559
9560         * domain.c:
9561         * appdomain.c:
9562         * domain-internals.h:
9563         * reflection.c: 'domain_assemblies' field is now protected by its own
9564         lock. Don't call into managed code to run the AssemblyLoad event if we
9565         now there are no registered delegates for it.
9566
9567 2005-06-20  Martin Baulig  <martin@ximian.com>
9568
9569         * class.c (mono_class_is_assignable_from): Use a custom version of
9570         mono_class_has_parent() to make things work for generic instances;
9571         fix #75300.
9572
9573 2005-06-20  Martin Baulig  <martin@ximian.com>
9574
9575         * loader.c (method_from_methodspec): Apply a patch from
9576         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
9577
9578 2005-06-20  Martin Baulig  <martin@ximian.com>
9579
9580         * class.c (mono_class_init): Reverted Zoltan's last change; it
9581         breaks generics.
9582
9583 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
9584
9585         * threads.c (wait_for_tids_or_state_change): Add missing locking.
9586
9587 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9588
9589         * socket-io.c: fix the index in the socket array for writable/error
9590         sockets. Fixes bug #75306.
9591
9592 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
9593
9594         * class.c (mono_class_init): Allow interfaces to have static ctors.
9595
9596 2005-06-17  Martin Baulig  <martin@ximian.com>
9597
9598         * loader.c (method_from_methodspec): Use `context->container' when
9599         parsing the `gmethod->inst'.
9600
9601 2005-06-17  Martin Baulig  <martin@ximian.com>
9602
9603         * class.c (mono_type_get_name_recurse): Don't add the assembly
9604         name for type arguments.
9605
9606 2005-06-15  Martin Baulig  <martin@ximian.com>
9607
9608         * reflection.c (mono_image_get_inflated_method_token): Encode
9609         correct klass; fixes #75260.
9610
9611 2005-06-13 Michal Moskal <malekith@nemerle.org>
9612
9613         * icall.c: Make GetCorrespondingMethod/Constructor take
9614         MonoReflectionMethod method not MonoMethod. Removed
9615         MonoType.GetCorrespondingField, and make
9616         MonoGenericType.GetCorrespondingField take name not
9617         MonoClassField.
9618
9619 2005-06-13  Michal Moskal <malekith@nemerle.org>
9620
9621         * reflection.c (field_encode_signature, encode_locals):
9622          Make sizes of buffers for types larger (for big generic types).
9623          (create_generic_typespec,
9624          mono_reflection_sighelper_get_signature_local,
9625          mono_reflection_sighelper_get_signature_field):
9626          Add asserts for too small buffers.
9627
9628 2005-06-15  Martin Baulig  <martin@ximian.com>
9629
9630         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
9631         if our parent is not a dynamic type.
9632
9633 2005-06-15  Martin Baulig  <martin@ximian.com>
9634
9635         * class-internals.h (MonoTypeNameFormat): New enum.
9636
9637         * class.c
9638         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
9639         (mono_type_get_full_name): Removed.
9640         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
9641         argument instead of the boolean's.
9642
9643         * icall.c (ves_icall_System_MonoType_getFullName):
9644         Added `gboolean assembly_qualified'.    
9645
9646         * reflection.h
9647         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
9648
9649         * reflection.c (mono_reflection_parse_type): Parse the new type
9650         name format.
9651
9652 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9653
9654         * icall.c: no need to convert from utf16 to utf8 and then back again
9655         after the call to GetLogicalDrives.
9656
9657 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9658
9659         * icall.c: frombase64. Fix problems exposed by new tests.
9660
9661 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9662
9663         * icall.c: added internal calls for converting char [] and strings in
9664         base64 into byte [].
9665
9666 2005-06-10  Martin Baulig  <martin@ximian.com>
9667
9668         * class.c (mono_class_create_generic_2): Read the nested classes
9669         from the metadata rather than from `gklass->nested_classes' since
9670         `gklass' might not be initialized yet.
9671
9672 2005-06-09  Duncan Mak  <duncan@novell.com>
9673
9674         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
9675         all public headers. Fixes #74919.
9676
9677 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
9678
9679         * domain.c: The key for proxy_vtable_hash is now a pointer
9680         array. Added new GHashFunc and GCompareFunc functions for this.
9681
9682         * class.h: The list of interfaces in MonoRemoteClass is known in
9683         advance and can't grow (we create a new MonoRemoteClass if needed),
9684         so now the interface array can be allocated together with
9685         MonoRemoteClass.
9686         
9687         * object.c: Added a new method create_remote_class_key.
9688         Fixed mono_remote_class so it does not depend on
9689         mono_upgrade_remote_class.
9690         Removed extend_interface_array.
9691         Added new method clone_remote_class(), which makes a copy of a remote
9692         class and adds a new interface or class to it.
9693         mono_upgrade_remote_class() now creates a new remote class (or gets
9694         it from the cache) if an vtable upgrade is needed. In this way
9695         we make sure that other objects sharing the same remote class
9696         don't get the new vtable with unwanted interfaces.
9697         
9698         * object-internals.h:
9699         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
9700         
9701         * marshal.c: Track changes in mono_upgrade_remote_class().
9702
9703 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
9704         * icall.c: Add runtime methods for obtaining members of inflated
9705         class, which were created from supplied non-inflated members. It
9706         is used in internal Get{Method,Constructor,Field} methods in
9707         System.Type
9708
9709 2005-06-09  Martin Baulig  <martin@ximian.com>
9710
9711         * reflection.c
9712         (mono_reflection_bind_generic_method_parameters): Fix #75169.
9713
9714 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9715         * reflection.c (mono_image_basic_init): Define
9716         Version in MonoDynamicAssembly. 
9717         
9718 2005-06-08  Martin Baulig  <martin@ximian.com>
9719
9720         Fix #75136.
9721
9722         * loader.c
9723         (mono_method_signature_full): New public method; takes a
9724         `MonoGenericContext *'.
9725         (find_method): Use mono_method_signature_full() and pass the
9726         klass'es context to it.
9727
9728         * class.c (mono_class_is_inflated_method): Use
9729         mono_method_signature_full() and pass the context to it.
9730
9731 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
9732
9733         * object.c: add proper locking in mono_remote_class_vtable(),
9734         fixes possible memory corruption.
9735
9736 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
9737
9738         * marshal.c (mono_remoting_marshal_init): set
9739         initialized after initialization.
9740
9741 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9742
9743         * locales.c : hush.
9744
9745 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
9746
9747         * object.c (extend_interface_array): fix really silly
9748         memory corrupting / comparison bug.
9749
9750 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9751
9752         * reflection.c: Functions added to support the creation
9753         of CustomAttributeData, which includes Attribute data
9754         used by ReflectionOnly methods.
9755
9756         * reflection.h:  mono_reflection_get_custom_attrs_data and
9757          mono_custom_attrs_data_construct added (functions exposed).
9758
9759          * icall.c: Added mono_reflection_get_custom_attrs_data
9760          as icall.
9761         
9762 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
9763
9764         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
9765         lupus's request.
9766
9767 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
9768
9769         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
9770
9771         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
9772         dynamic DllImportAttribute.
9773
9774         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
9775         dynamic DllImportAttribute.
9776
9777         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
9778         Fixes #75162.
9779
9780 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9781
9782         * threads.c: avoid segfault when an unstarted thread is aborted.
9783
9784 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
9785
9786         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
9787         Returns the name and version of the runtime for reporting.
9788
9789 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9790
9791         * appdomain.c: bump corlib version.
9792         * object-internals.h: new field in MonoReflectionAssembly.
9793
9794 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9795
9796         * object-internals.h: Carlos forgot to add this field.
9797
9798 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9799
9800         * icall.c: Added create_version to create instances
9801         of Version of MonoReflectionAssemblyName. This change helps
9802         the AssemblyName tests to keep running fine.
9803         
9804 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
9805   
9806         * object.c (mono_method_return_message_restore): A somehow less
9807         intrusive fix for #75138.
9808
9809 2005-06-03  Raja R Harinath  <rharinath@novell.com>
9810
9811         * object.c (mono_method_return_message_restore): Fix computation
9812         of expected number of out args.
9813
9814 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
9815
9816         * reflection.c (mono_image_get_method_info): Fix the case when the
9817         charset is empty.
9818
9819 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
9820
9821         * object.c: Added missing null check in
9822           mono_method_return_message_restore.
9823
9824 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
9825
9826         * reflection.c (mono_image_get_method_info): Handle the case when
9827         dllentry is empty.
9828
9829 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
9830
9831         * object.c: When creating the vtable for a proxy, take into account
9832         all inherited interfaces, not only the ones registered in
9833         iclass->interfaces. This fixs bug #74996.
9834         Also, in mono_method_return_message_restore, verify that the array
9835         of out args has the expected lengh.
9836
9837 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9838
9839         * socket-io.c: update the timeout in Poll when the call is interrupte.
9840
9841 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9842
9843         * socket-io.c: support abort/suspend in Select_internal after last
9844         change.
9845
9846 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9847
9848         * threadpool.c: remove warning.
9849
9850 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9851
9852         * icall.c:
9853         * socket-io.[ch]: Select_internal uses poll() now when available, thus
9854         removing the 1024 limit from select(). Runtime part of the fix for
9855         bug #71203.
9856
9857 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9858
9859         * socket-io.c: when resolving the addresses for the same
9860         host returned by gethostname(), get the local IPs from the interface
9861         list. Loopback addresses are discarded if the are interfaces up with
9862         non-loopback ones. Fixes bug #63265.
9863
9864 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
9865
9866         * appdomain.c, verify.c, object-internals.h, reflection.c:
9867         bumped corlib number to 36, and added new extra_flags field
9868         to ReflectionMethodBuilder and friends.  Fixes #75060.
9869
9870 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
9871
9872         * gc.c: register a new weak link only if the object is non-null
9873         (fixes bug#75047).
9874
9875 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
9876
9877         * culture-info.h : short time pattern too.
9878
9879 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
9880
9881         * culture-info.h : expand long time pattern string length.
9882
9883 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
9884
9885         * culture-info-table.h : update (more French date format; #72788).
9886
9887 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
9888
9889         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
9890         the method is static. Fixes #75029.
9891
9892 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
9893
9894         * reflection.c: Update the table_idx field of method builders after
9895         saving the module, since it can change. This is a workaround for
9896         bug #74914. 
9897
9898 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
9899
9900         * culture-info-table.h : update (additional French date format).
9901
9902 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
9903
9904         * icall.c (ves_icall_type_Equals): Revert last change.
9905         
9906         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
9907
9908         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
9909
9910 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
9911
9912         * class-internals.h: Added executioncontext_class field to 
9913         MonoDefaults structure.
9914         * domain.c: Cache System.Threading.ExecutionContext class in 
9915         mono_defaults.
9916         * object.c: Capture the ExecutionContext for asynchroneous calls in
9917          mono_async_result_new.
9918         * object-internals.h: Added execution_context and original_context 
9919         fields to MonoAsyncResult. Added execution_context to MonoThread.
9920         * security-manager.c|.h: Added mono_get_context_capture_method to 
9921         return the capture method (if required by the security manager or by
9922         the framework version used).
9923         * threadpool.c: Apply capture (if present) ExecutionContext in 
9924         mono_async_invoke and revert to original context after it completes.
9925
9926 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
9927
9928         * culture-info-table.h : updated (real hacky solution for zh-CHT).
9929
9930 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
9931
9932         * culture-info-table.h : zh-CHT related workaround.
9933
9934 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
9935
9936         * marshal.c (emit_marshal_custom): Add some error checking and call the
9937         methods in the ICustomMarshaler interface. Fixes #74875.
9938         
9939         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
9940         native->managed wrappers.
9941
9942 2005-05-12  Martin Baulig  <martin@ximian.com>
9943
9944         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
9945         here and use the loader lock.
9946
9947         * mono-debug.c: Properly lock when the debugger is not attached.
9948         (mono_debug_init): Release the initial lock if we're not running
9949         in the debugger.
9950
9951 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
9952
9953         * marshal.c (emit_marshal_custom): Pass through NULL values without
9954         calling the custom marshalling routines.
9955
9956         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
9957         conversion in structures. Fixes #74882.
9958
9959 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
9960
9961         * culture-info-table.h : zh-* cultures were missing.
9962
9963 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
9964
9965         * threads.c: Added a new event background_change_event which is signaled
9966         when a thread changes its background mode.
9967         Moved here several checks previously done in managed code. The checks
9968         require the thread lock, and using the thread lock in managed code
9969         can result in deadlocks.
9970         Merged Start_internal and Thread_internal into a single method. Now 
9971         Thread_internal does all work of creating and starting a thread.
9972         Added icalls for setting and getting the state of the object. Moved from
9973         managed code to avoid locking there.
9974         Added wait_for_tids_or_state_change() which is called instad of
9975         wait_for_tids when waiting for non-backround threads to end. This method
9976         will return if one of the threads ends or the background_change_event
9977         is signaled.
9978         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
9979         the background mode. This method signals the background_change_event
9980         event.
9981         * icall.c:
9982         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
9983         removed Start_internal.
9984         
9985 2005-05-11  Martin Baulig  <martin@ximian.com>
9986
9987         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
9988         to order of some fields to get proper alignment on 64-bit machines.
9989
9990 2005-05-11  Martin Baulig  <martin@ximian.com>
9991
9992         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
9993         changes as they're broken and completely fuck up the debugger.
9994
9995         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
9996
9997 2005-05-10  Martin Baulig  <martin@ximian.com>
9998
9999         * reflection.c (mono_reflection_generic_class_initialize): Don't
10000         call mono_class_setup_parent() here.
10001
10002 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10003
10004         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
10005         send/receive timeout use an integer in milliseconds. We were using a
10006         struct timeval.
10007
10008 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10009
10010         * locales.c:
10011         (internal_get_cultures): reserve the first slot of the array for the
10012         InvariantCulture, which will be filled in managed code.
10013
10014 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
10015
10016         * reflection.c (mono_image_fill_module_table): Initialize the
10017         GENERATION field as well.
10018
10019 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10020
10021         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
10022         Monitor.Enter on the object.
10023
10024 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
10025
10026         * threads.c: Enable the wait for running threads when exiting.
10027         * icall.c: Suspend all threads before exiting.
10028
10029 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
10030
10031         * assembly.c (mono_assembly_load_reference): Fix warning.
10032
10033 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10034
10035         * threadpool.c: changed the default number of threads per cpu. From now
10036         on, the default will be 20 + (5 * number of cpus) instead of 50.
10037
10038 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
10039
10040         * loader.c (mono_method_get_signature_full): Add locking here.
10041
10042 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
10043
10044         * appdomain.c: Moved methods for parsing and freeing assembly
10045         names to assembly.c.
10046         * assembly.c, domain-internals.h: Created public methods for parsing
10047         assembly names. Fixed mono_assembly_load_with_partial_name:
10048         it now finds the best match, taking into account the version,
10049         token and culture specified in the partial name. Also return
10050         the latest version if no version information is specified.
10051
10052 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
10053
10054         * threadpool.c: replace check for SocketAsyncCall class.
10055
10056 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10057
10058         * threadpool-internals.h:
10059         * Makefile.am: added threadpool-internals.h
10060
10061         * threadpool.c: call mono_unhandled_exception on exceptions not handled
10062         that happen in threadpool threads (tested on MS).
10063         (mono_thread_pool_remove_socket): new function that dispatch any pending
10064         AIO call on a socket that is closing. By now only epoll really needs it,
10065         as select/poll wake up when the socket closes.
10066
10067
10068         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
10069
10070 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
10071
10072         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
10073
10074 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
10075
10076         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
10077
10078 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
10079
10080         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
10081         has an abort request, convert it into a suspend request.
10082
10083 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
10084
10085         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
10086         warning for the usage of `UnmanagedFunctionPointerAttribute' which
10087         is not supported yet.
10088
10089 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10090
10091         * image.c: register assemblies loaded from data (bundles) in the loaded
10092         assemblies hash. Fixes bug #74772.
10093
10094 2005-04-29  Martin Baulig  <martin@ximian.com>
10095
10096         * class.c (mono_type_get_name_recurse): Update to the new naming
10097         schema from the latest .NET 2.x beta2.
10098         (mono_class_setup_vtable_general): If we're a generic instance,
10099         copy the vtable from our generic type definition and inflate all
10100         the methods in it.
10101
10102         * loader.c (find_method): Update to the new naming schema from the
10103         latest .NET 2.x beta2.
10104
10105 2005-04-29  Raja R Harinath  <harinath@gmail.com>
10106
10107         * class.c (mono_class_init): Add a mono_loader_unlock to the
10108         #74734 fix.
10109
10110 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
10111
10112         * icall.c (ves_icall_System_Environment_Exit): Remove the 
10113         suspend_all_other_threads () call for the time being, since it can hang.
10114
10115         * threads.c (mono_thread_manage): Similarly, disable the waiting for
10116         the background threads to exit, since it can also hang.
10117
10118         * class.c (mono_class_init): Applied patch from Ankit Jain 
10119         (radical@gmail.com). Avoid pending init errors when a field refers
10120         to a nested class using a typeref. Fixes #74734.
10121
10122         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
10123         this for dynamic modules.
10124
10125 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10126
10127         * threads.c: don't wait for threads that are in the process of aborting
10128         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
10129         and waiting for background threads to finish. This makes xsp and
10130         mod-mono-server exit without random length delays and/or hangs.
10131
10132 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10133
10134         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
10135
10136 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
10137
10138         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
10139         dynamic types to prevent infinite loops. Fixes #74727.
10140
10141         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
10142         ..._is_assignable_to.
10143
10144 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
10145
10146         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
10147
10148 2005-04-25  Martin Baulig  <martin@ximian.com>
10149
10150         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
10151
10152         * domain.c
10153         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
10154
10155         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
10156
10157         * reflection.c (build_compressed_metadata): Set metadata header
10158         version to 2.0.
10159
10160 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
10161
10162         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
10163         number into an integral and a decimal part. Fixes #70473.
10164
10165         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
10166
10167 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
10168
10169         * culture-info-table.h : reflected the latest locale-builder output.
10170
10171 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10172
10173         * threadpool.c: check for SuspendRequested too when deciding if
10174         mono_thread_interruption_checkpoint should be called.
10175
10176 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10177
10178         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
10179         * threads.c: remove interruption_mutex and use Interlocked instead. When
10180         suspending all the threads, wait for all the suspended events at once.
10181         If we're shutting down and get an APC that is going to be queued,
10182         call mono_thread_execute_interruption immediately, as the thread might
10183         be sleeping on a pthread condition or mutex.
10184
10185         * icall.c: call mono_runtime_set_shutting_down before suspending the
10186         threads.
10187
10188         Fixes bug #74693. And now xsp is happier when exiting.
10189
10190 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
10191
10192         * loader.c (mono_stack_walk): Fix #74690.
10193
10194 2005-04-22  Martin Baulig  <martin@ximian.com>
10195
10196         * mono-debug.h (MonoDebugMethodJitInfo): Added
10197         `MonoDebugMethodJitInfo *jit'.
10198
10199         * mono-debug.c (mono_debug_read_method): Cache the
10200         MonoDebugMethodJitInfo in `address->jit'.
10201         (mono_debug_free_method_jit_info): New public method.
10202
10203 2005-04-22  Martin Baulig  <martin@ximian.com>
10204
10205         * class.c (mono_class_is_assignable_from): Disallow
10206         type parameter -> interface.
10207
10208 2005-04-21  Dick Porter  <dick@ximian.com>
10209
10210         * threads.c (mono_thread_create): Turn an assertion into an error.
10211
10212 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
10213
10214         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
10215         
10216         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
10217         Fix some gcc 4.0 warnings.
10218
10219 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
10220
10221         * file-io.c: fix alt dir separator char on unix systems
10222         and cleanup (fixes bug #71214).
10223
10224 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
10225
10226         * marshal.c: Use CALLVIRT instead of CALL when dispatching
10227         a call to a remote domain, since the method may be an
10228         interface method in the client domain. This fixes bug #74192.
10229
10230 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10231
10232         * threadpool.c: recv/send are now performed before going back to managed
10233         code to save one transition.
10234
10235 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10236
10237         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
10238
10239         * metadata/threadpool.c: removed hack to workaround the bug above.
10240
10241         Fixes bug #74618.
10242
10243 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
10244
10245         * reflection.c reflection.h: Fix handling of parameter defaults in
10246         dynamic methods. Also fixes handling of parameter attributes.
10247         Fixes #74609.
10248
10249         * mono-debug.c (mono_debug_close_image): Fix warning.
10250
10251 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10252
10253         * socket-io.h: replaced old unused field with new 'blocking'.
10254         * threadpool.c: restore socket blocking state on windows(tm).
10255
10256 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
10257
10258         * icall.c: don't return the codebase in the AssemblyName[] returned by
10259         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
10260         * object-internals.h: Removed FIXME (fields were presents) and fixed
10261         versioncompat declaration.
10262
10263 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10264
10265         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
10266         not closed, so don't cleanup when it happens.
10267
10268 2005-04-13  Chris Toshok  <toshok@ximian.com>
10269
10270         * mono-debug-debugger.h: change prototype for
10271         mono_debugger_lookup_type.
10272
10273         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
10274         this function, although it should probably be named
10275         mono_debugger_init_type.
10276
10277 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10278
10279         * threadpool.c: fix non-AIO case.
10280
10281 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
10282
10283         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
10284         the built-in profiler to measure just JIT compilation times.
10285
10286 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10287
10288         * threadpool.c: the epollfd might be closed by another thread at
10289         any time, so ignore EBADF at treat it as a "we're closing" sign.
10290
10291 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10292
10293         * threadpool.c: release the semaphores with a count equals to the number
10294         of working threads in both IO and regular pools. Fixed typo that messed
10295         up the count of IO pool threads. Don't initialize the pipe handles if
10296         we're using epoll.
10297
10298 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10299
10300         * threadpool.c: some systems don't like a NULL when deleting the socket
10301         from epoll.
10302
10303 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10304
10305         * threadpool.c: fix semaphore allocation.
10306
10307 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10308
10309         * threadpool.c: added epoll() based implementation for asynchronous IO
10310         that is used instead of the default poll() when available.
10311         It can be disabled by setting MONO_DISABLE_AIO.
10312
10313 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10314
10315         * threadpool.c: windows needs 'closesocket' and instead of returning
10316         0 when the stream is closed while in select, it returns -1. Fixes bug
10317         #74573.
10318
10319 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
10320
10321         * class.c (class_compute_field_layout): Fix the regression caused by
10322         the previous try.
10323
10324 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10325
10326         * threadpool.c: separate pool for socket async. IO.
10327         * threadpool.h: mono_max_worker_threads is not a global any more.
10328
10329 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
10330
10331         * class.c (class_compute_field_layout): Fix #74549.
10332
10333 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10334
10335         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
10336         use 2 connected sockets instead.
10337
10338 2005-04-08  Miguel de Icaza  <miguel@novell.com>
10339
10340         * mono-config.c: Add new entry point for mkbundle
10341         mono_config_parse_memory. 
10342
10343 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10344
10345         * threadpool.c: removed another unused function.
10346
10347 2005-04-08  Ankit Jain  <radical@corewars.org>
10348
10349         * reflection.c (get_default_param_value_blobs): Add 'types'
10350         parameter to get the types encoded in the constant table.
10351         (mono_param_get_objects): Use the type from the constant table,
10352         not the type of the parameter, when creating default values.
10353         Handle null default values correctly.
10354
10355 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10356
10357         * file-io.c:
10358         * file-io.h:
10359         * threadpool.c:
10360         * threadpool.h:
10361         * icall.c:
10362         * socket-io.c: removed dead code for async IO.
10363
10364 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10365
10366         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
10367
10368         * threadpool.c: intercept socket async. calls and pass them to a thread
10369         that is polling and dispatching the job items to the threadpool as
10370         socket become ready. Fixes bugs #71217, #71933.
10371
10372         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
10373         between char and short/ushort arrays.
10374
10375         * socket-io.c: remove dead code.
10376
10377 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
10378
10379         * locales.c,
10380           icall.c : removed InternalToUpper_Comp() and
10381           InternalToLower_Comp().
10382
10383 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
10384
10385         * char-conversions.h : The tables were incorrectly generated. Should
10386           be generated against invariant culture.
10387
10388 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
10389
10390         * object.c (mono_runtime_invoke_array): Fix return value when 
10391         passing pre-created valuetype objects to ctors.
10392
10393         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
10394         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
10395         Fixes #74338.
10396
10397 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
10398
10399         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
10400         only used with --security and hides the wrong corlib version error.
10401
10402 2005-03-30  Joshua Tauberer  <tauberer@for.net>
10403
10404         * class.c: Changed mono_class_name_from_token so that types
10405         outside of a namespace don't have an initial period.  Improved
10406         the g_warning message used in _mono_class_get when loading
10407         fails.
10408         * assembly.c: In mono_assembly_load_reference, when an assembly
10409         can't be found, "No such file or directory" is misleading and
10410         unhelpful because a few paths were checked for the presence of
10411         the assembly.  When that happens (ENOENT), display a nicer
10412         message indicating the directories that were searched.  In all
10413         cases, the warning is made easier to read for non-hackers.
10414
10415 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
10416
10417         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
10418         project/solution.
10419         * appdomain.h|domain.c: Removed inline from functions.
10420         * appdomain.c: Reduced warnings when compiling on windows.
10421         * icall.c: Fixed output_debug declaration to gunichar2*.
10422         * mono-config.c: Reduced warnings when compiling on windows.
10423         * rand.c: Added missing "windows.h". Added missing return value.
10424         * rawbuffer.c: Added missing winsock2.h for windows.
10425         * sysmath.h: Added mono-compiler.h header to allow/ease 
10426         compilation with non-GCC compilers.
10427         * threads.c: Fixed declarations to compile with VS.NET C compiler.
10428         Removed cast warnings.
10429
10430         Adapted from the work of J Lothian (for VC6).
10431
10432 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
10433
10434         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
10435         from default_path.
10436
10437 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
10438
10439         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
10440         the 2.0 profile.
10441
10442 2005-03-27  Raja R Harinath  <harinath@gmail.com>
10443
10444         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
10445         has to be in $(exec_prefix).  $(prefix) is for arch-independent
10446         stuff, and it would probably use $(prefix)/share rather than
10447         $(prefix)/lib.
10448
10449 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10450
10451         * console-io.c: added 2 includes that might be missing.
10452
10453 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
10454
10455         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
10456         profile.
10457
10458         * reflection.c (create_custom_attr): Allocate the params array using
10459         alloca so it gets GC tracking.
10460
10461 2005-03-23  Chris Toshok  <toshok@ximian.com>
10462
10463         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
10464         out some spew.
10465
10466 2005-03-24  Raja R Harinath  <rharinath@novell.com>
10467
10468         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
10469         changes to pick up any changes in prefix, etc.
10470
10471 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
10472
10473         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
10474         
10475         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
10476         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
10477
10478 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
10479
10480         * class-internals.h object-internals.h class.c reflection.c: Extend the
10481         mono_lookup_dynamic_token () function to return the class of the
10482         token as well. 
10483
10484         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
10485         well. Fixes #73848.
10486
10487 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
10488
10489         * security-manager.c: Skip inheritance checks for intra-corlib
10490         class inheritance and method overrides. This skips a lot of checks
10491         and (anyway) permissions cannot work until corlib is loaded.
10492
10493 2005-03-23  Martin Baulig  <martin@ximian.com>
10494
10495         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
10496         MONO_TYPE_GENERICINST.  
10497
10498 2005-03-23  Martin Baulig  <martin@ximian.com>
10499
10500         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
10501
10502 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
10503
10504         * class.c: added locking comments to some functions.
10505         Cache the interface offsets arrays (saves about 20 KB
10506         of runtime memory in a typical app).
10507         Reduce the time overhead in mono_class_setup_supertypes ().
10508
10509 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
10510
10511         * icall.c: speedup and fix leaks in GetMethodsByName and
10512         GetPropertiesByName.
10513
10514 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
10515
10516         * reflection.c: some locking fixes.
10517
10518 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
10519
10520         * metadata.c: added missing break in case statement.
10521
10522 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
10523
10524         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
10525         typedbyref return values. Fixes #73941.
10526
10527 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
10528
10529         * security-manager.c|h: Added demandunmanaged method and 
10530         suppressunmanagedcodesecurity class to MonoSecurityManager.
10531         Renamed aptc class to allowpartiallytrustedcallers.
10532
10533 2005-03-17  Martin Baulig  <martin@ximian.com>
10534
10535         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
10536
10537 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10538
10539         * file-io.c: disabled file async. IO using aio_*. It uses the
10540         threadpool now. Workaround for bug #73718.
10541
10542 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
10543
10544         * assembly.h, mono-config.c: added code to deal with bundled configs
10545         for bundled assemblies.
10546
10547 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
10548
10549         * *.c, private.h: cleanup, removing old private.h header file.
10550
10551 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
10552
10553         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
10554         and throw_on_unmappable_char attributes.
10555
10556 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
10557
10558         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
10559         _ProcessName_internal.
10560
10561 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
10562
10563         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
10564         #73631.
10565
10566         * icall.c threads.c threads-types.h: Remove slothash icalls as they
10567         are no longer used.
10568
10569 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
10570
10571         * object.c (compute_class_bitmap): Add support for generics. Fixes
10572         #73527.
10573
10574 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
10575
10576         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
10577
10578 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10579
10580         * filewatcher.c: commented out the code for windows watcher, as we don't
10581         use it (we use the managed implementation instead).
10582
10583 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
10584
10585         * object-internals.h (MonoThread): Remove 'unused1' field.
10586
10587         * appdomain.c: Bump corlib version.
10588
10589         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
10590
10591         * reflection.c (mono_reflection_create_runtime_class): Remove the
10592         AssemblyBuilder.Save optimization since it causes too many problems.
10593
10594 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
10595
10596         * exception.c|h: Added mono_get_exception_reflection_type_load to
10597         create a ReflectionTypeLoadException object.
10598         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
10599         to return NULL is a InheritanceDemand fails during reflection. Updated
10600         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
10601         ReflectionTypeLoadException if an InheritanceDemand fails during 
10602         reflection. Added icall mapping for GetLinkDemandSecurity.
10603         * security-manager.c|h: Added ves_icall_System_Security_
10604         SecurityManager_GetLinkDemandSecurity internal call to return the
10605         class and methods permissions set for a LinkDemand. Removed unused
10606         fields in MonoSecurityManager.
10607
10608 2005-03-10  Martin Baulig  <martin@ximian.com>
10609
10610         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
10611         it's a generic instance.
10612
10613 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
10614
10615         * reflection.c (mono_get_object_from_blob): Applied patch from
10616         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
10617
10618         * class.c (mono_class_is_assignable_from): Another try at fixing 
10619         #73469 without breaking anything.
10620
10621 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
10622
10623         * class.c: (mono_class_is_assignable_from): Revert the last changes
10624         since they don't work with generics.
10625         
10626         * class.c (mono_class_is_assignable_from): Fix build bustage.
10627
10628         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
10629         the managed IsAssignableFrom method. Fixes #73469.
10630
10631         * reflection.c (mono_reflection_call_is_assignable_from): New helper
10632         function.
10633
10634 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
10635
10636         * object.c (mono_load_remote_field_new): Fix returning uninitialized
10637         memory when the remoting callback does not sets the out arguments.
10638         Fixes #73007.
10639
10640         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
10641         by mistake.
10642
10643         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
10644
10645         * object-internals.h (MonoStackFrame): Sync with managed object layout.
10646
10647         * appdomain.c: Bump corlib version.
10648
10649 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
10650
10651         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
10652         function.
10653
10654         * threads.c (mono_thread_attach): Detect threads which are not started
10655         by the GC pthread wrappers.
10656
10657 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
10658
10659         * icall.c: Added new icall for RNG.
10660         * rand.c|h: Added new icall to open the RNG. This allows to share a 
10661         single handle on Linux to access /dev/urandom and fix #73183.
10662
10663 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
10664
10665         * object.c: setting the new vtable in a transparent proxy object must
10666         not change the GC descriptor.
10667
10668 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
10669
10670         * object.c: fixed compilation without GCJ support.
10671         * reflection.c: for runtime-created types ensure klass->has_references
10672         is correct (bug #73215).
10673
10674 2005-03-02  Martin Baulig  <martin@ximian.com>
10675
10676         * class.c (mono_class_is_assignable_from): Make this work if
10677         `oklass' is a generic instance; fixes #72831.
10678
10679 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
10680
10681         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
10682         with hasthis set.
10683         
10684         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
10685
10686         * marshal.c: Reorganize native->managed marshalling code to also use
10687         the emit_marshal_... functions.
10688
10689 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
10690
10691         * object.c: typed allocs have issues with bitmap sizes > 30,
10692         so check for max_set >= 30.
10693
10694 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
10695
10696         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
10697         managed code. Fixes #73012.
10698
10699         * metadata.h (MonoMarshalSpec): Add elem_mult field.
10700
10701         * metadata.c reflection.c: Load/Emit elem_mult as well.
10702         
10703         * metadata.h (MonoMarshalSpec): Add comment.
10704
10705         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
10706
10707         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
10708         num_elem to -1 if not given.
10709
10710         * object-internals.h (MonoReflectionMarshal): Add has_size field.
10711
10712         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
10713         given values.
10714
10715 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
10716
10717         * null-gc.c (mono_gc_free_fixed): Was not compilable.
10718
10719 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
10720
10721         * reflection.c (encode_marshal_blob): Encode param_num field as well.
10722
10723         * object-internals.h (MonoReflectionMarshal): Add param_num field.
10724
10725 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
10726
10727         * object.c: generalized the reference bitmap creation
10728         and added hooks for the new GC.
10729         * class-internals.c: removed the gc_bitmap field from MonoClass.
10730
10731 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
10732
10733         * domain.c: help the compiler to produce better code
10734         in mono_jit_info_table_find ().
10735
10736 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
10737
10738         * object.c: make all allocations look typed.
10739
10740 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
10741
10742         * socket-io.c: load Mono.Posix if it's not loaded already
10743         (fixes bug#73033).
10744
10745 2005-02-24  Martin Baulig  <martin@ximian.com>
10746
10747         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
10748         * reflection.c (dup_type): Likewise.
10749
10750 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
10751
10752         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
10753         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
10754
10755 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
10756
10757         * domain.c, threads.c, object-internals.h: make the critical thread
10758         local vars use the fast access mode (even when we're compiled in
10759         a lib). Provide accessors to be used by the jit during codegen.
10760
10761 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10762
10763         * appdomain.c: Changed hook functios behavior to include
10764         support for the reflection only assemblies. Some icalls were changed
10765         to support the mentioned assemblies too. Signatures of static methods
10766         try_assembly_resolve and real_load now have an additional parameter:
10767         refonly.
10768
10769         * assembly.c: General changes to mono_assembly_ methods to support
10770         reflection only api. Functions mono_assembly_open, mono_assembly_load,
10771         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
10772         suffix, to support an additional gbool parameter to specify whether
10773         the assembli is reflection only or not. Created some new hook functions 
10774         to add support for reflection only assemblies. Signatures of static 
10775         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
10776         have now an additional parameter: refonly.
10777
10778         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
10779         indicating whether the assembly is reflection only or not.
10780
10781         * exception.c: Add mono_get_exception_invalid_operation.
10782
10783         * icall.c: Throw an InvalidOperationException when trying to invoke
10784         a property/method/event, or trying to set/get the value of a field.
10785         Also add an icall to retrieve the ref_only flag to the
10786         MonoReflectionAssembly.
10787
10788 2005-02-23  Chris Toshok  <toshok@ximian.com>
10789
10790         Part of fix for #72827.
10791         * mono-debug.c (mono_debug_add_method): add lexical block data to
10792         the info we write.  Kind of a hack at the moment - we copy the
10793         lexical block info from the MonoDebugMethodInfo to the
10794         MonoDebugMethodJitInfo here, before writing it.
10795         (mono_debug_read_method): read the lexical block info.
10796
10797         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
10798
10799         * debug-mono-symfile.h: add lexical block support.
10800
10801         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
10802         support.
10803
10804 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
10805
10806         * loader.c (mono_lookup_pinvoke_call): Fix warning.
10807
10808         * object.c (mono_runtime_free_method): Call mono_free_method () and
10809         put the TODOs there.
10810
10811         * loader.c (mono_free_method): Free up most memory allocated for 
10812         dynamic methods.
10813
10814 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
10815
10816         * reflection.c: properly flag a Type argument to a
10817         named custom attr value (bug #72248).
10818
10819 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
10820
10821         * reflection.c: reduce code duplication in named custom
10822         attribute encoding.
10823
10824 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
10825
10826         * reflection.c: properly encode custom attrs of type object
10827         (bug #72649).
10828
10829 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
10830
10831         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
10832
10833 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
10834
10835         * socket-io.c: load System.dll if it's not loaded already
10836         (bug #72850 and #70477).
10837
10838 2005-02-21  Martin Baulig  <martin@ximian.com>
10839
10840         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
10841         generic instances.
10842
10843 2005-02-21  Martin Baulig  <martin@ximian.com>
10844
10845         * reflection.c (mono_image_build_metadata): We also need to
10846         "fixup" the MethodImpl table after we computed the final method
10847         indices.  Call fixup_methodimpl() to do that.
10848         (fixup_methodimpl): New private method.
10849
10850 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
10851
10852         * assembly.c: special case mscorlib.dll (bug#72536),
10853         patch from Carlos Alberto Cortez.
10854
10855 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
10856
10857         * threads-types.h threads.c: Fix build bustage.
10858
10859         * threads.c: Use a union for long<->double conversions.
10860
10861         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
10862         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
10863
10864         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
10865         containing the checkpoint call with NOT_TAKEN.
10866         
10867         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
10868         checkpoint before pushing the arguments, so they won't have to be
10869         spilled to stack.
10870
10871 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
10872
10873         * domain.c, assembly.c, domain-internals.h: make some data
10874         const and relocation-free.
10875
10876 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
10877
10878         * object.c, appdomain.c, class-internals.h: introduce the
10879         MonoClassRuntimeInfo structure to hold the info needed to
10880         use a class at runtime. Made mono_class_vtable() lock-free
10881         for all the appdomains.
10882
10883 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
10884
10885         * metadata-internals.h, image.c: introduce a per-image mempool to
10886         be used for memory that has the same lifetime as the image.
10887
10888 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
10889
10890         * domain.c: In mono_init_internal(), instead of selecting the first
10891         runtime version supported by an executable, get a list of all
10892         supported versions and select the one for which an mscorlib exists
10893         (since even if the runtime supports a given version, it doesn't mean
10894         that the framework for that version is installed).
10895         Modified get_runtimes_from_exe to support this behavior.
10896         In supported_runtimes, added information about additional system
10897         assembly versions.
10898         
10899         * assembly.c: Added support for more than one system assembly version
10900         per runtime version. Updated the assembly list.
10901         In mono_assembly_remap_version, removed the initial version check,
10902         since we don't know to which version we need to compare until we
10903         get the version set on which the assembly is based.
10904         Moved the code for loading corlib into the new method
10905         mono_assembly_load_corlib(), so it can be used by the initialization
10906         code.
10907         
10908         * domain-internals.h: Updated data structures and added declaration
10909         for mono_assembly_load_corlib.
10910
10911 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
10912
10913         * reflection.c (resolve_object): Fix the creation of the signature in 
10914         the SignatureHelper case.
10915
10916         * assembly.c (mono_assembly_remap_version): Fix binary search.
10917         
10918 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
10919  
10920         * class.c: Added inheritance check when a method is overloaded (from a
10921         virtual method or when implementing an interface) and when a class is
10922         inherited. Added functions to set a failure for a class and to 
10923         retreive the exception from a failure.
10924         * class-internals.h: Added fields to MonoClass to keep the exception
10925         information status for inheritance (or other exceptions) to be thrown
10926         later (i.e. not at load time).
10927         * object.c: Throw the inheritance SecurityException when a type is to 
10928         be created with either class or method inheritance violations.
10929         * reflection.c|h: Fix when getting declsec from a class. Removed 
10930         unrequired code for class. Improved sanity in parameter naming.
10931         * security-manager.c|h: Added functions to check for class and method
10932         inheritance.
10933
10934 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
10935
10936         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
10937         and has_finalize in dynamic types as well.
10938
10939 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
10940
10941         * culture-info-table.h : fixed currency format for en-GB (and so on).
10942
10943 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
10944
10945         * gc.c: ensure the GC handles never have 0 as a value.
10946
10947 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
10948
10949         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
10950         a pointer to a struct to unmanaged code. Fixes #72625.
10951
10952 2005-02-16  Martin Baulig  <martin@ximian.com>
10953
10954         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
10955
10956 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
10957
10958         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
10959
10960 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
10961
10962         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
10963
10964         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
10965         UnmanagedFunctionPointerAttribute, use it for determining calling convention
10966         etc. Fixes #71471.
10967
10968         * reflection.c (mono_custom_attrs_get_attr): New helper function.
10969
10970         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
10971
10972 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
10973
10974         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
10975         changes to make the current context a field in MonoThread.
10976
10977 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
10978
10979         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
10980         the last change.
10981         
10982         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
10983         extracted from mono_marshal_get_native_wrapper.
10984
10985         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
10986         to create wrappers around native functions.
10987
10988         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
10989         delegates for arbitrary function pointers. Fixes #71472.
10990
10991 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
10992
10993         * threads.c: cleaned up the code a little.
10994
10995 2005-02-15  Martin Baulig  <martin@ximian.com>
10996
10997         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
10998         the data table.
10999
11000         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
11001         allocate larger chunks if needed.
11002
11003 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
11004
11005         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
11006         in by mistake.
11007
11008 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
11009
11010         * domain.c: keep the domains in an array and ensure the domain ids
11011         are kept small, so they can be used as indexes to domain-specific data
11012         with a small memory overhead.
11013
11014 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
11015
11016         * icall.c: Handle byref types in Type icalls. Fixes #72544.
11017
11018 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
11019
11020         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
11021
11022 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
11023
11024         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
11025
11026         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
11027         values.
11028
11029         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
11030         
11031 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
11032
11033         * domain-internals.h: add the hashtable here.
11034
11035         * class-internals.h: Remove `info' from MonoMethod
11036
11037         * domain.c: Add a new hashtable, jit_trampoline_hash
11038
11039 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
11040
11041         * object.c: don't set the value of static fields
11042         (fixes bug#72494).
11043
11044 2005-02-11  Martin Baulig  <martin@ximian.com>
11045
11046         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
11047         (mono_debug_add_method): Silently ignore the method if it's too big.
11048         (mono_debug_add_type): Likewise.
11049
11050 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
11051
11052         * threads.c, appdomain.c: remove #ifdefs from the code.
11053
11054 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
11055
11056         * metadata-internals.h: Added flags to MonoAssembly to cache the most
11057         common security informations. This allows us to stay in unmanaged code
11058         when doing LinkDemand and it's special cases (except for the first 
11059         time for initialization). The flags a very much used with --security.
11060         * reflection.c|h: Added code to get declarative security attributes 
11061         for LinkDemand and InheritanceDemand. This required to refactor the
11062         existing code for Demand.
11063         * security-manager.c|h: Added new method fields for the special cases
11064         of LinkDemand.
11065
11066 2005-02-10  Martin Baulig  <martin@ximian.com>
11067
11068         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
11069         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
11070
11071 2005-02-10  Martin Baulig  <martin@ximian.com>
11072
11073         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
11074         debugging code; this is almost a complete rewrite.
11075
11076         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
11077
11078 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
11079
11080         * domain.c, object.h: expose mono_string_equal () and 
11081         mono_string_hash ().
11082         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
11083         it's implemented in managed code.
11084
11085 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11086
11087         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
11088         lo leak objects between appdomains.
11089
11090 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11091
11092         * assembly.c: old compilers compilation fix from 
11093         robertj@gmx.net (Robert Jordan).
11094
11095 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
11096
11097         * class-internals.h: Little reminder for the future.
11098
11099         * debug-helpers.c: Fix up wrapper_type_names
11100
11101 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11102
11103         * image.c, metadata-internals.h: when loading an image from a file,
11104         mmap all of it and use the same codepaths as when using a
11105         in-memory image: the code is simpler and we use less memory
11106         (both writable and readonly).
11107
11108 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
11109
11110         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
11111         API to alloc runtime data structures that need to be tracked by the
11112         GC and contain pointers.
11113         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
11114         make the code more readable and eventually use a different GC.
11115
11116 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
11117
11118         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
11119         for out arguments.
11120         
11121 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
11122
11123         * object.c: In release_type_locks(), don't release the cctor lock
11124         if it has already been released. This fixes a crash in the
11125         thread5 test.
11126
11127 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
11128
11129         * gc.c, marshal.c, icall.c: register a delegate for finalization
11130         only when the native function pointer has been allocated for it.
11131
11132 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
11133
11134         * object.c: cleaned up some code, allocate objects that are
11135         pointer free with the atomic malloc variant. Allocate memory
11136         for static data from the mempool if it's pointer-free.
11137         Allocate the bounds array at the end of the array data, when needed.
11138         * object-internals.h, object.h: move a private function in a private
11139         header.
11140         * class.c: handle missing case in tracking references in fields.
11141
11142 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
11143
11144         * class.c, class-internals.h: keep track if a type has
11145         reference fields in either the instance or static fields.
11146
11147 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
11148
11149         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
11150         and renamed to MonoRuntimeInfo. Added fields to store the expected
11151         framework assembly version. Changed mono_get_framework_version and
11152         mono_get_runtime_version for a single mono_get_runtime_info method.
11153         
11154         * assembly.c: Added method to remap system assembly versions to the
11155         current executing runtime version. Removed old mapping code.
11156         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
11157         
11158         * icall.c, reflection.c: Track api changes.
11159
11160 2005-02-06  Miguel de Icaza  <miguel@novell.com>
11161
11162         * loader.c (method_from_memberref): Improve error reporting,
11163         produce the class name instead of the typeref/typedef index. 
11164
11165 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
11166
11167         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
11168
11169 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11170
11171         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
11172         stdcall and charset name mangling.  Reorganize the code and add
11173         some tracing stuff.
11174
11175 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
11176
11177         * monodiet.c: More iters!
11178
11179         * marshal.c: Iter usage.
11180
11181         * icall.c: Iter usage.
11182
11183         * object.c: Use iters.
11184
11185         * debug-helpers.c: More iters
11186
11187 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11188
11189         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
11190         under win32.
11191
11192 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
11193
11194         * mono-debug-debugger.c: use iters
11195
11196         * class.c, class-internals.h: mono_class_setup_events is static
11197         now
11198
11199         * All callers: use iters
11200
11201 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11202
11203         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
11204         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
11205
11206 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
11207
11208         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
11209
11210         * marshal.h: Add prototypes for ldfld/stfld_remote.
11211
11212         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
11213         this is called during startup.
11214         
11215 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
11216
11217         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
11218         MonoThreadsSync struct private in monitor.c. Changed the way
11219         MonoThreadsSync is allocated so it's faster and there is no
11220         need to keep track of it with a finalizer and it uses less memory.
11221         This also finally allows us to allocate mono objects as ptrfree when
11222         there are no reference fields.
11223
11224 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
11225
11226         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
11227         disappearing link to the GC interface and use them to simplify
11228         the gchandles code.
11229
11230 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
11231
11232         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
11233         stfld_remote which call mono_load/store_field_new. This allows methods
11234         calling ldfld/stfld wrappers to be AOTed.
11235
11236         * console-io.c: Include sys/filio.h under solaris.
11237         
11238         * console-io.c: Include curses.h if needed correctly.
11239
11240 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
11241         
11242         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
11243         method->klass as well.
11244
11245         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
11246
11247         * class.c (mono_class_init): Switch on lazy initialization of 
11248         methods.
11249
11250         * class.c (mono_class_get_finalizer): Handle the case when the 
11251         finalizer is inherited.
11252
11253 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11254
11255         * console-io.c: <curses.h> is needed by term.h on solaris.
11256
11257 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
11258
11259         * icall.c, class-internals.h, monodiet.c, class.c: Remove
11260         mono_class_setup_properties where possible. Remove this ftn from
11261         the header file, and make it static.
11262
11263 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
11264
11265         * loader.c: Add missing setup_... call.
11266
11267         * class.c: Add missing setup_... calls.
11268
11269         * class.c (mono_class_init): Switch on lazy initialization of 
11270         the generic vtable.
11271         
11272         * class.c (mono_class_init): Fix generics broken by the recent changes.
11273
11274         * monodiet.c (handle_type): Add missing setup_... calls.
11275
11276         * class.c: Back out garbage in previous patch.
11277         
11278         * class.c: Add missing setup_... calls.
11279
11280         * class.c (mono_class_get_method_from_name_flags): Avoid calling
11281         mono_class_setup_methods () if possible.
11282
11283         * class-internals.h (MonoClass): Add 'has_cctor' flag.
11284
11285         * class-internals.h (MonoCachedClassInfo): New structure.
11286
11287         * class.c: Initialize properties and events fields of MonoClass lazily.
11288
11289         * class.c: Add infrastructure for lazily initializing the methods and
11290         vtable fields of MonoClass. Not yet used.
11291
11292         * class.c (mono_class_get_finalizer): New helper function.
11293
11294         * class.c: Add infrastructure for loading some class related data from
11295         an AOT file.
11296
11297         * object.c: Add infrastructure for initializing the vtable from data
11298         in the AOT file.
11299
11300         * gc.c (run_finalize): Use mono_class_get_finalizer ().
11301
11302         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
11303         appropriate initialization function before accessing parts of the
11304         MonoClass structure.
11305
11306         * marshal.c: Fix warnings.
11307         
11308         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
11309
11310         * mono-debug-debugger.c (get_exception_message): Use 
11311         mono_class_get_method_from_name_flags ().
11312
11313 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
11314
11315         * reflection.c, appdomain.c: Replace a few manual searches that
11316         Zoltan missed. (Paolo approved this part of my initial patch).
11317
11318 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
11319
11320         * profiler.c: disable recording statistical events at report time.
11321
11322 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11323
11324         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
11325         to byteswap arrays of enum values, too (bug #72080).
11326
11327 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
11328
11329         * appdomain.c (set_domain_search_path): Allow this to be called if
11330         domain->setup is not yet set.
11331
11332         * loader.c (mono_method_get_index): New helper function.
11333
11334         * loader.c reflection.c: Use mono_method_get_index ().
11335
11336         * class.c (mono_class_get_method_from_name_flags): New helper method.
11337
11338         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
11339         this.
11340
11341         * class.c (mono_class_get_cctor): New helper method.
11342
11343         * string-icalls.c object.c class.c marshal.c reflection.c: Use
11344         mono_class_get_method () to look up methods.
11345
11346 2005-02-01  Miguel de Icaza  <miguel@novell.com>
11347
11348         * console-io.c: Fix the build, this should work on Windows.
11349
11350 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
11351
11352         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
11353         be set to null to keep things valid
11354
11355 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11356
11357         * icall.c: added Console 2.0 icalls.
11358         * Makefile.am: added console-io.[ch]
11359         * console-io.[ch]: internal calls for Console 2.0 API.
11360
11361 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11362
11363         * class.c: make sure we consider all the interfaces
11364         when calculating max_interface_id (bug found by
11365         Jeroen Frijters running ikvm).
11366
11367 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
11368
11369         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
11370         valuetype fields to null.
11371
11372         * object.c (set_value): Ditto. Fixes #71669.    
11373
11374 2005-01-31  Martin Baulig  <martin@ximian.com>
11375
11376         * metadata.c (mono_metadata_has_generic_params): New public
11377         function; checks whether something is a generic method.
11378
11379 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
11380
11381         * appdomain.c: fix infinite recursion when adding assemblies.
11382
11383 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
11384
11385         * object.c: Fix small typo to return all items for Environment.
11386         GetCommandLineArgs.
11387
11388 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
11389
11390         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
11391         reflection.c: more domain and assembly-unload related fixes
11392         and memory leaks plugs.
11393
11394 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
11395
11396         * 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.
11397
11398 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
11399
11400         * loader.c (mono_method_signature): Make this method lazy
11401         (mono_get_method_from_token): Don't computate the signature here.
11402
11403         Doing this saves quite a bit of memory. I got 90 kb on starting up
11404         monodoc. It should also save some disk reads on startup.
11405
11406         * *: MonoMethod->signature might be NULL now. You *MUST* use
11407         mono_method_signature.
11408
11409 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
11410
11411         * object.c (mono_runtime_get_main_args): Return an array from the
11412         current domain here. Fixes #71938.
11413
11414 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
11415
11416         * monitor.c: formatting changes to comply with the
11417         mono coding style and remove #ifdefs from the code.
11418
11419 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
11420
11421         * metadata.c, private.h: remove some unneeded data
11422         and use a more compact representation for table schemas.
11423
11424 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
11425
11426         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
11427         to get a better distribution in hash tables.
11428         * *.c: use mono_aligned_addr_hash() where appropriate.
11429         * assembly.c: make var static.
11430
11431 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
11432
11433         * domain-internals.h: Put MonoJitInfo on a diet.
11434
11435         * domain.c: Fix a warning.
11436
11437 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11438
11439         * gc.c: rework the gc handles code to reuse handles
11440         when freed.
11441
11442 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
11443
11444         * domain.c: fixed long standing bug in mono_string_equal() which
11445         was brought to light with the ldstr changes.
11446
11447 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
11448
11449         * reflection.c: Remove warning by adding missing include for marshal.h
11450
11451 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11452
11453         * domain.c, object.c: change the ldstr_table to hold
11454         MonoString* as keys: makes the runtime isinterned lookup
11455         faster and simplifies memory management.
11456
11457 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
11458  
11459         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
11460         possible to add imperative security checks before calling the icall.
11461         * reflection.c: Return security attributes on the original MonoMethod
11462         (and not the wrapped one). This fix permissions on icalls.
11463
11464 2005-01-25  Dick Porter  <dick@ximian.com>
11465
11466         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
11467         the check for mktime() support actually test the mktime() return
11468         value.  "Fixes" bug 71682, though the output is still different to
11469         MS.
11470
11471 2005-01-25  Martin Baulig  <martin@ximian.com>
11472
11473         * class.c (mono_class_is_assignable_from): Make this work for
11474         generic instances.
11475
11476 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
11477
11478         * marshal.c (mono_string_utf8_to_builder)
11479         (mono_string_builder_to_utf16): We might not have ownership of the
11480         string. In thise case, we need to create a new buffer.
11481
11482         * object-internals.h (mono_stringbuilder_capacity): sb->str might
11483         be null, in which case, use the default capacity.
11484
11485 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11486
11487         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
11488         GC events to the profiler.
11489
11490 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
11491
11492         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
11493         if you don't want the GC to run.
11494
11495 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
11496
11497         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
11498         start providing a GC API and keeping different implementations in
11499         their own file.
11500         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
11501
11502 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
11503
11504         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
11505         mmap rather than allocating a huge buffer.
11506         (mono_debug_close_mono_symbol_file): Free the buffer allocated
11507         above.
11508
11509 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
11510
11511         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
11512         and CheckExecutionRights.
11513         * reflection.c|h: Keep the index of the declarative security to be 
11514         used, instead of the pointer, when AOT compiler is used. Also add 
11515         class initialization when requesting demands.
11516         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
11517         CheckExecutionRights. Both properties are now FALSE by default, and
11518         unmodifiable, unless the --security option is used.
11519
11520 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
11521
11522         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
11523         reflection.c: properly refcount images and assemblies, many leaks fixed.
11524
11525 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11526
11527         * threadpool.c: increase the timeout for threads in the thread pool to
11528         10s.  Fixes bug #67159.
11529
11530 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
11531
11532         * class-internals.h: Sun's compiler insists on explicit
11533         signed on bit fields to handle then correctly.
11534
11535 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
11536
11537         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
11538         Make the size of the array fit only the number of invalid path
11539         chars that we have.
11540
11541         * class.c (_mono_class_get): Improve the error reporting when a
11542         class referenced is not found, to assist debugging. 
11543
11544 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
11545
11546         * threads.c: fix off-by-one error.
11547         * domain.c: free data allocated in the domain.
11548
11549 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
11550
11551         * reflection.c (mono_method_body_get_object): Fill out exception info
11552         as well.
11553
11554         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
11555         structure.
11556         
11557 2005-01-19  Martin Baulig  <martin@ximian.com>
11558
11559         * loader.c (mono_get_method_constrained): Make this work again.
11560
11561 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
11562
11563         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
11564         guint16 to match the managed side.
11565
11566         * reflection.c (mono_reflection_body_get_object): Fill out local
11567         variables array.
11568
11569         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
11570         as well.
11571
11572         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
11573         'local_var_sig_token'.
11574
11575 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
11576
11577         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
11578         System.Drawing.
11579
11580         * reflection.c (mono_method_body_get_object): Handle abstract and
11581         runtime methods.
11582
11583 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
11584
11585         * marshal.c, loader.c, class-internals.h, reflection.c:
11586         store the emthod data for a wrapper in an array instead of a list.
11587
11588 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
11589
11590         * marshal.c: change the code to allocate memory more
11591         conservatively for method wrappers.
11592
11593 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
11594
11595         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
11596         fields from MonoClass to the marshal info structure where they belong.
11597
11598 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11599
11600         * class.c, object.c, class-internals.h, marshal.c: rearrange
11601         some fields and tweak some types to lower memory usage.
11602
11603 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
11604
11605         * threads.c (signal_thread_state_change): Handle the case when the
11606         target thread is the current thread.
11607
11608         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
11609
11610         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
11611         emit_ptr_to_object_conv. 
11612
11613         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
11614         marshalling. Fixes #71352.
11615
11616 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
11617
11618         * metadata.h, blob.h: move table enum to blob.h so it can be included
11619         in any header.
11620         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
11621         cut the size of MonoImage/MonoDynamicImage.
11622
11623 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
11624
11625         * profiler.c (mono_profiler_install_simple): Fix default arguments.
11626
11627 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
11628
11629         * reflection.c, reflection.h, icall.c: add a function to check
11630         if an attribute type is defined for a metadata object.
11631
11632 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
11633
11634         * object-internals.h: Added some needed fields from StringBuilder class.
11635         * marshal.c: Set the maxCapacity when creating a StringBuilder.
11636
11637 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
11638
11639         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
11640         threads before shutting down the runtime.
11641
11642         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
11643
11644 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
11645
11646         * object-internal.h, threads.c: implement stacksize and 
11647         parameterized thread start functionality (requires
11648         matching corlib). Marked broken code for later removal.
11649
11650 2005-01-12  Martin Baulig  <martin@ximian.com>
11651
11652         * class-internals.h (MonoGenericClass): Moved the `initialized'
11653         flag to MonoDynamicGenericClass, removed `init_pending'.
11654         (MonoGenericInst): Added `is_reference' flag.
11655
11656 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
11657
11658         * reflection.c (mono_image_create_pefile): Only set the pe_offset
11659         inside the MSDOS header. Fixes #71201.
11660
11661         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
11662         gc thread.
11663         (mono_domain_finalize): Ditto.
11664
11665 2005-01-12  Martin Baulig  <martin@ximian.com>
11666
11667         * class.c (mono_get_shared_generic_class): Use the cache for
11668         non-dynamic generic classes.
11669
11670         * class-internals.h (mono_class_create_generic_2): Removed
11671         function prototype, this function is now static inside class.c.
11672
11673         * class.c (mono_class_create_generic_2): Made this static, only
11674         call it from mono_class_init() and mono_class_setup_parent().
11675         (collect_implemented_interfaces_aux): Call mono_class_init() on
11676         the interfaces we collect.
11677         (mono_class_setup_vtable): Call mono_class_init (class->parent).
11678
11679 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
11680
11681         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
11682         it a real thread handle.
11683
11684         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
11685         MonoJitExceptionInfo, since each catch clause needs its own variable.
11686         
11687 2005-01-11  Dick Porter  <dick@ximian.com>
11688
11689         * image.c (mono_pe_file_open): New variant on mono_image_open()
11690         that does not set up the CLI metadata; used for FileVersionInfo so
11691         it can get the data for windows binaries too.
11692         
11693         * process.c (process_read_string_block): Don't read off the end of
11694         the StringTable block.
11695
11696         These both fix bug 70766.
11697
11698 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
11699
11700         * gc.c: set some fields to NULL at GC cleanup time.
11701         * threads.c: if we quit the main thread, call exit ().
11702
11703 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
11704
11705         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
11706
11707 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
11708
11709         * threads.h, threads.c, object.c: added accessor and settor for
11710         main_thread. Handle it specially when exiting from it: wait
11711         for other foreground threads to exit.
11712
11713 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
11714
11715         * process.c, verify.c: remove some bloat.
11716
11717 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
11718
11719         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
11720         the calling convention to cdecl under win32.
11721
11722 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
11723
11724         * object.c (mono_object_get_size): New function to get the size of
11725         an object instance.
11726
11727         * profiler.c (simple_allocation): Use above.
11728
11729 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
11730
11731         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
11732         ves_icall_System_AppDomain_getRootDomain (as it's not required to
11733         get an appdomain by it's id and we can't assume the root's id is 0).
11734         * domain-internals.h: Change the function prototype to match.
11735         * icall.c: Change the icall table for AppDomain.
11736
11737 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
11738
11739         * locales.c (string_invariant_compare_char): Only compute
11740         GUnicodeTypes in the case where we need them.  Test for ordinality
11741         first and return if so.
11742
11743         From the commit:
11744
11745                 /*
11746                  * FIXME: here we must use the information from c1type and c2type
11747                  * to find out the proper collation, even on the InvariantCulture, the
11748                  * sorting is not done by computing the unicode values, but their
11749                  * actual sort order.
11750                  */
11751
11752 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
11753
11754         * loader.c: for P/Invoke methods, allow the "Internal" shared
11755         library name to refer to the calling process symbol namespace.
11756
11757 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
11758
11759         * Makefile.am: Add the security manager to the build.
11760         * security-manager.c|h: New. Initialization of the security manager.
11761
11762 2005-01-07  Dick Porter  <dick@ximian.com>
11763
11764         * threads.c: 
11765         * monitor.c: Update thread state during Monitor and WaitHandle
11766         waits.  Fixes bug 71031.
11767
11768 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
11769
11770         * reflection.c (property_encode_signature): Correctly handle when the
11771         property has no methods.
11772
11773 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
11774
11775         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
11776         
11777         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
11778         fields from mb, not rmb. Fixes #71017.
11779
11780         * marshal.c (emit_ptr_to_str_conv): Add support for 
11781         ByValTStr -> string conversion. Fixes #71015.
11782
11783         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
11784
11785         * mempool.c (mono_mempool_contains_addr): New helper function.
11786
11787 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
11788
11789         * metadata.c (mono_metadata_compute_size): Fix size calculation of
11790         HasSematics encoded fields.
11791         
11792         * metadata.c (mono_type_to_unmanaged): Improve error message for 
11793         invalid string marshalling.
11794
11795         * metadata.c: Fix warnings.
11796         
11797 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
11798
11799         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
11800         profiler support.
11801
11802 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
11803
11804         * domain.c object.c domain-internals.h: Revert part of r38077 since the
11805         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
11806         tests.
11807
11808 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
11809
11810         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
11811         so methods containing these can be AOTed.
11812
11813 2005-01-03  Martin Baulig  <martin@ximian.com>
11814
11815         * loader.c (find_method): Removed the hack for generic instances.
11816         (method_from_memberref): If our parent is a generic instance, pass
11817         its generic type definition to find_method() and then inflate the
11818         method.
11819         (mono_get_method_constrained): Pass the generic type definition to
11820         find_method() and inflate the method later.
11821
11822         * class-internals.h (MonoStats): Added `generic_class_count'.
11823
11824         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
11825         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
11826
11827         * reflection.c (mono_custom_attrs_from_params): Don't ignore
11828         generic type definitions.
11829
11830 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
11831
11832         * loader.c icall.c: Fix warnings.
11833
11834 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
11835
11836         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
11837         blittable types. Fixes #70864.
11838
11839 2004-12-29  Martin Baulig  <martin@ximian.com>
11840
11841         * icall.c
11842         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
11843
11844         * reflection.c (mono_method_get_object): Create a
11845         "System.Reflection.MonoGenericMethod" for inflated methods; don't
11846         call mono_get_inflated_method().
11847
11848         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
11849
11850 2004-12-27  Martin Baulig  <martin@ximian.com>
11851
11852         * class-internals.h (MonoMethod): Added `is_inflated' flag.
11853         (MonoMethodInflated): Added `inflated' field.
11854
11855         * class.c (mono_class_inflate_generic_method): Don't really
11856         inflate the method here; just set the `is_inflated' flag in the
11857         MonoMethod.
11858         (mono_class_get_inflated_method): Actually inflate the method here
11859         if it's not already inflated; we use the MonoMethodInflated's new
11860         `inflated' field as a cache.
11861
11862 2004-12-26  Martin Baulig  <martin@ximian.com>
11863
11864         * class.c
11865         (inflate_generic_class): Moved some code out of inflate_generic_type().
11866         (mono_class_inflate_generic_method): If we're already inflated,
11867         inflate the context and use the declaring method; ie. make sure
11868         the declaring method of an inflated method is always the generic
11869         method definition.
11870         (mono_class_create_from_typedef): Create
11871         `class->generic_container->context->gclass'.
11872
11873 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
11874
11875         * metadata-internals.h, marshal.c, reflection.c: More
11876         MonoGHashTable->GHashTable.
11877
11878         * domain-internals.h, class.c: Change MonoGHashTable's into
11879         GHashTables for some cases where no gc stuff is used
11880
11881         All users: update apis
11882
11883 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
11884
11885         * metadata.c (builtin_types): Make this `const'. Makes this get
11886         put into the shareable section.
11887         (mono_metadata_init): Casts to make gcc happy.
11888
11889 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
11890
11891         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
11892
11893 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
11894
11895         * icall.c: Added an internal call to retrieve the position and length
11896         of assembly-level declarative security attributes (RequestMinimum, 
11897         RequestOptional and RequestRefuse). This is used by the Assembly class
11898         to re-create the corresponding permission sets.
11899
11900 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
11901
11902         * marshal.c: fix the stelemref wrapper to be type correct
11903         (and faster).
11904
11905 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
11906
11907         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
11908         to do key & 0x7fffffff. Hashtable already does this. It just
11909         results in longer code.
11910
11911 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
11912
11913         * appdomain.c: Bump corlib version.
11914         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
11915         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
11916         * reflection.c|h: Add functions to get declarative security infos
11917         (blob position and length) for assemblies, classes and methods.
11918
11919 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
11920
11921         * reflection.c: sort the constant table (bug #70693).
11922
11923 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
11924
11925         * object-internals.h, threads.c, domain.c: add accessors for
11926         the MonoThread and MonoDomain tls keys.
11927
11928 2004-12-18  Martin Baulig  <martin@ximian.com>
11929
11930         * class.c (inflate_generic_type): If we're inflating a generic
11931         instance, set `ngclass->context->container = context->container';
11932         ie. the container we inflated into.
11933
11934         * metadata.c (mono_metadata_parse_generic_param): Reflect above
11935         inflate_generic_type() changes.
11936
11937 2004-12-17  Martin Baulig  <martin@ximian.com>
11938
11939         * class-internals.h
11940         (MonoGenericClass): Replaced `MonoType *generic_type' with
11941         `MonoClass *generic_class'.  Removed `dynamic_info'; if
11942         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
11943         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
11944
11945 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
11946
11947         * exception.c (mono_exception_from_token): New helper function.
11948
11949 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
11950
11951         * assembly.c (mono_assembly_load_with_partial_name): Call 
11952         mono_assembly_loaded before invoking the preload hooks. Fixes
11953         #70564.
11954
11955         * object-internals.h (MonoThread): Change culture_info and 
11956         ui_culture_info into an array.
11957
11958         * threads.c: Cache culture info objects from more than one appdomain.
11959
11960         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
11961         current UI culture.
11962
11963 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
11964
11965         * threads.h threads.c appdomain.c: Clear the culture_info field of
11966         all threads during unloading if they point to an object in the dying
11967         appdomain.
11968
11969 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
11970
11971         * culture-info.h (TextInfoEntry): New struct
11972         * object-internals.h: sync with managed
11973         * locales.c: fill the `text_info_data' field
11974         * culture-info-tables.h: update
11975
11976 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
11977
11978         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
11979         collector.
11980
11981 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
11982
11983         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
11984         (ves_icall_ModuleBuilder_getMethodToken): Ditto
11985
11986 2004-12-12  Martin Baulig  <martin@ximian.com>
11987
11988         * mono-debug-debugger.c (write_type): If we're an enum and the
11989         builtin types have already been initialized, call mono_class_init().
11990
11991 2004-12-11  Martin Baulig  <martin@ximian.com>
11992
11993         * metadata.c (mono_metadata_load_generic_params): Added
11994         `MonoGenericContainer *parent_container' argument; automatically
11995         compute `container->is_method'; pass the correct owner to
11996         get_constraints().      
11997
11998         * reflection.c (compare_genericparam): Sort the GenericParam table
11999         according to increasing owners. 
12000
12001 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
12002
12003         * profiler.c: allow disabling the default profiler.
12004
12005 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
12006
12007         * decimal.c, icall.c: allow disabling System.Decimal support.
12008
12009 2004-12-09  Marek Safar <marek.safar@seznam.cz>
12010
12011         * reflection.c: Add support for null attribute arguments.
12012
12013 2004-12-09  Martin Baulig  <martin@ximian.com>
12014
12015         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
12016         names to get rid of compiler warnings.
12017
12018 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
12019
12020         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
12021         mono_marshal_load_type_info (). Fixes #69625.
12022         (mono_marshal_get_ptr_to_struct): Likewise.
12023
12024 2004-12-08  Martin Baulig  <martin@ximian.com>
12025
12026         * mono-debug.h: Bumped version number to 47.
12027
12028         * mono-debug-debugger.c
12029         (mono_debugger_event_handler, mono_debugger_event): Take two
12030         guint64 arguments insteed of a gpointer and a guint32.  
12031
12032 2004-12-08  Martin Baulig  <martin@ximian.com>
12033
12034         * debug-mono-symfile.h
12035         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
12036         `address' to `native_offset'.
12037
12038 2004-12-08  Martin Baulig  <martin@ximian.com>
12039
12040         * class.c (mono_class_create_from_typespec): Only inflate if we
12041         either have `context->gclass' or `context->gmethod'.
12042
12043 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
12044
12045         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
12046
12047         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
12048
12049         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
12050
12051         * reflection.c (mono_assembly_get_object): Remove the workaround put
12052         in for the release.
12053         
12054         * appdomain.c: Use the corlib_internal field from MonoAssembly.
12055
12056         * appdomain.c: Bump corlib version.
12057
12058         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
12059         be visible in other appdomains.
12060
12061 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
12062
12063         * threads.c: Interlocked inc and dec for longs were messed up,
12064         use a KISS based impl for this. Fixes 70234
12065
12066 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
12067
12068         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
12069
12070 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12071
12072         * icall.c: fix to follow policy not to allow struct
12073         arguments in icalls.
12074
12075 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12076
12077         * process.c: make the patch that handles spaces in file paths work
12078         on mono/windows too.
12079
12080 2004-12-06  Martin Baulig  <martin@ximian.com>
12081
12082         * class.c (mono_class_create_generic): Call
12083         mono_class_setup_supertypes() if we're dynamic.
12084         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
12085
12086 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
12087
12088         * object-internals.h: Add new fields to MonoThread.
12089
12090         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12091
12092         * icall.c threads-types.h threads.c: Add new icalls.
12093
12094         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
12095
12096         * object-internals.h (MonoReflectionAssembly): Sync object layout with
12097         managed side.
12098
12099         * appdomain.c: Bump corlib version.
12100
12101         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
12102         internal assemblies. Fixes #69181.
12103
12104 2004-12-05  Martin Baulig  <martin@ximian.com>
12105
12106         * class.c (mono_class_inflate_generic_signature): Make this a
12107         no-op if `context' is NULL or we don't have any type parameters;
12108         also copy `sentinelpos'.        
12109
12110 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
12111
12112         * image.c: Add unbox_wrapper_cache.
12113
12114         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
12115
12116         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
12117         function generator.
12118         
12119         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
12120         Fixes #70173.
12121
12122         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
12123         
12124 2004-12-04  Martin Baulig  <martin@ximian.com>
12125
12126         * loader.c (mono_method_get_signature_full): New public function;
12127         like mono_method_get_signature(), but with an additional
12128         `MonoGenericContext *' argument.
12129
12130         * class.c (mono_class_inflate_generic_signature): Formerly known
12131         as inflate_generic_signature(); make this public.
12132
12133 2004-12-04  Martin Baulig  <martin@ximian.com>
12134
12135         * metadata.c
12136         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
12137         instead of a `MonoGenericContainer *'.  
12138         (mono_metadata_parse_array_full): Likewise.
12139         (mono_metadata_parse_signature_full): Likewise.
12140         (mono_metadata_parse_method_signature_full): Likewise.
12141         (mono_metadata_parse_generic_inst): Likewise.
12142         (mono_metadata_parse_generic_param): Likewise.
12143         (mono_metadata_parse_mh_full): Likewise.
12144         (mono_type_create_from_typespec_full): Likewise.
12145
12146 2004-12-03  Martin Baulig  <martin@ximian.com>
12147
12148         * class-internals.h (MonoGenericContainer): Replaced the
12149         `MonoGenericContext * pointer with a `MonoGenericContext'
12150         structure and made it the first element.
12151
12152 2004-12-03  Martin Baulig  <martin@ximian.com>
12153
12154         * class.c
12155         (inflate_generic_type): Set the `context->container' when creating
12156         a new MonoGenericContext.
12157         (mono_class_inflate_generic_method): Likewise.
12158         (mono_class_create_from_typespec): Just use `context->container'
12159         to get the container.
12160
12161         * loader.c (method_from_methodspec): Set `context->parent' from
12162         `context->container' - and if that's a method container, use its
12163         parent.  Also set the `context->container' when creating a new
12164         MonoGenericContext.
12165         (mono_get_method_from_token): Use just `context->container' to get
12166         the container.
12167
12168         * metadata.c (do_mono_metadata_parse_generic_class): Also set
12169         `gclass->context->container'.
12170
12171         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
12172         the `context->container' when creating a new MonoGenericContext.
12173
12174 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
12175
12176         * reflection.c (compare_genericparam): Sort params with identical
12177         owner by their number. Fixes gen-111 on sparc.
12178
12179 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
12180
12181         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
12182         around the domain changes.
12183
12184         * appdomain.c (mono_domain_unload): Handle the case when the thread
12185         calling Unload is itself being aborted during unloading. Fixes #70022.
12186
12187         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
12188
12189         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
12190         checkpoint_func as an icall so it gets a wrapper.
12191         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
12192         in the cross-appdomain wrappers too.
12193
12194         * threads.c (mono_thread_has_appdomain_ref): Make this public.
12195
12196         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
12197
12198         * reflection.c: Fix some memory leaks.
12199         
12200 2004-12-02  Martin Baulig  <martin@ximian.com>
12201
12202         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
12203
12204         * metadata.c (generic_class_cache): New static hashtable.
12205         (mono_metadata_lookup_generic_class): New public method.
12206
12207 2004-12-02  Martin Baulig  <martin@ximian.com>
12208
12209         * class.c (mono_class_create_from_typedef): Call
12210         mono_class_setup_parent() and mono_class_create_mono_type() before
12211         parsing the interfaces.
12212
12213 2004-12-02  Martin Baulig  <martin@ximian.com>
12214
12215         * metadata.c (generic_inst_cache): New static hashtable.
12216         (mono_metadata_lookup_generic_inst): New public function.
12217         (mono_metadata_inflate_generic_inst): New public function.
12218         (mono_metadata_parse_generic_inst): New public function.
12219         (do_mono_metadata_parse_generic_class): Use the new
12220         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
12221         since this'll also use the cache.
12222
12223         * reflection.c (mono_reflection_bind_generic_method_parameters):
12224         Use mono_metadata_lookup_generic_inst() to use the new cache.
12225
12226         * class.c (inflate_mono_type): Use
12227         mono_metadata_inflate_generic_inst() to inflate a generic
12228         instance; this'll also use the new cache.
12229
12230         * loader.c (method_from_methodspec): Use
12231         mono_metadata_parse_generic_inst() and
12232         mono_metadata_inflate_generic_inst() rather than parsing it
12233         manually, so we can use the new cache.
12234
12235 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
12236
12237         * threads.c (wait_for_tids): Do not incorrectly free threads when 
12238         the wait times out.
12239
12240 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
12241
12242         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
12243         iter->args based on whether parameters are passed in registers (i.e.
12244         MONO_ARCH_REGPARMS is defined)
12245
12246 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
12247
12248         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
12249         the exception message. Fixes #70070.
12250         (method_from_methodspec): Fix warnings.
12251
12252 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12253
12254         * process.c: (complete_path) return the path quoted
12255
12256 2004-12-01  Martin Baulig  <martin@ximian.com>
12257
12258         * class-internals.h (MonoGenericInst): New structure.
12259         (MonoGenericClass): Replaced `type_argc', `type_argv' and
12260         `is_open' with `MonoGenericInst *inst'.
12261         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
12262         `is_open' with `MonoGenericInst *inst'.
12263
12264 2004-11-30  Martin Baulig  <martin@ximian.com>
12265
12266         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
12267
12268         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
12269         to `generic_class_cache'.
12270
12271         * metadata.c
12272         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
12273         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
12274         (mono_generic_inst_is_valuetype): Renamed to
12275         mono_generic_class_is_valuetype().
12276
12277         * class-internals.h
12278         (MonoGenericInst): Renamed to MonoGenericClass.
12279         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
12280         (MonoClass): Renamed `generic_inst' to `generic_class'.
12281         (MonoGenericContext): Renamed `ginst' to `gclass'.
12282
12283         * object-internals.h
12284         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
12285
12286         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
12287         mono_reflection_generic_class_initialize().
12288
12289         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
12290         now known as "System.Reflection.MonoGenericClass".
12291         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
12292
12293 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
12294
12295         * class-internals.h: Added a flag field to MonoClass to cache the
12296         declarative security attributes actions associated with the class.
12297         * domain-internals.h: Added booleans to MonoJitInfo to cache the
12298         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
12299         applicable to the JITted method.
12300         * reflection.c|h: Added functions to extract (as flags) which security
12301         actions are available (declaratively) for a method, class or assembly.
12302         * metadata.c|h: Added functions to search the declarative security
12303         table in the metadata.
12304         
12305 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
12306
12307         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
12308         EXPORTEDTYPES are already in the class name cache, so there is no
12309         need to add extra code here to look at them. Just removes a bit of
12310         cruft.
12311
12312         (ves_icall_System_Environment_get_TickCount): No need for #if
12313         WINDOWS. We already have the code in io-layer.
12314
12315 2004-11-28  Martin Baulig  <martin@ximian.com>
12316
12317         * loader.c
12318         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
12319         Fixes gen-112.cs.
12320
12321 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
12322
12323         * assembly.c (do_mono_assembly_open): Instead of having a
12324         conditional WITH_BUNDLE, incorporate support for bundles here, by
12325         having a global `bundles' variable holding a pointer to the actual
12326         bundles. 
12327
12328         (mono_register_bundled_assemblies): New API call used by the
12329         bundle code. 
12330
12331         See mkbundle.1 for details.
12332         
12333 2004-11-27  Martin Baulig  <martin@ximian.com>
12334
12335         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
12336         the vtable for generic methods.
12337
12338 2004-11-26  Martin Baulig  <martin@ximian.com>
12339
12340         * metadata.c
12341         (mono_metadata_generic_method_hash): New public function.
12342         (mono_metadata_generic_method_equal): Likewise.
12343
12344         * class-internals.h
12345         (MonoGenericContainer): Added `GHashTable *method_hash'.
12346
12347         * reflection.c (ReflectionMethodBuilder): Added
12348         `MonoGenericContainer *generic_container'.
12349         (reflection_methodbuilder_to_mono_method): Don't create a new
12350         MonoGenericContainer each time we're called.
12351         (mono_reflection_bind_generic_method_parameters): Use
12352         `container->method_hash' to cache the results so we don't create a
12353         different method if we're called several times with the same
12354         arguments.
12355
12356         * loader.c (method_from_methodspec): Use the new
12357         `container->method_hash' here, too.
12358
12359 2004-11-26  Martin Baulig  <martin@ximian.com>
12360
12361         * class.c (inflate_generic_signature): Correctly compute
12362         `res->has_type_parameters'.
12363         (mono_class_vtable): Use the `has_type_parameters' flag to
12364         determine whether we're a generic method.
12365
12366         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
12367
12368 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
12369
12370         * object.c (mono_runtime_run_main): Fix a small memory leak.
12371
12372 2004-11-25  Martin Baulig  <martin@ximian.com>
12373
12374         * class.c (set_generic_param_owner): Fixed the loop.
12375
12376 2004-11-25  Martin Baulig  <martin@ximian.com>
12377
12378         * object.c (mono_class_vtable): Don't create any JIT wrappers for
12379         generic methods.
12380
12381 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
12382
12383         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
12384         names. Fixes #69787.
12385
12386 2004-11-24  Martin Baulig  <martin@ximian.com>
12387
12388         * class.c (mono_class_create_generic_2): If we don't have a
12389         `ginst->parent', inflate `gklass->parent' to get our parent.
12390
12391 2004-11-24  Martin Baulig  <martin@ximian.com>
12392
12393         * reflection.c (compare_genericparam): Correctly sort the
12394         GenericParam table; fixes #69779.
12395
12396 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
12397
12398         * reflection.c: When writing a PE file, don't create a huge
12399         buffer in memory. Just write the arrays we have to the file.
12400         This reduces memory usage.
12401
12402         * metadata-internals.h: MonoDynamicStream pefile is no longer used
12403         globally.
12404
12405 2004-11-17  Martin Baulig  <martin@ximian.com>
12406
12407         * class.c (mono_class_init): Don't setup `class->parent' for
12408         dynamic instances; moved this to mono_class_generic_2().
12409         (mono_class_create_generic): Also set `klass->inited' for dynamic
12410         generic instances.
12411         (mono_class_create_generic_2): Don't do anything for dynamic
12412         generic instances.  Set `klass->parent' here and also call
12413         mono_class_setup_parent() here. 
12414
12415         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
12416         `MonoType *parent' argument; set `ginst->parent' before calling
12417         mono_class_create_generic_2(), so we set the correct parent.
12418
12419 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
12420
12421         * reflection.c: allow getting attributes from ModuleBuilder
12422         (used by ikvm).
12423
12424 2004-11-17  Martin Baulig  <martin@ximian.com>
12425
12426         * class.c (mono_class_create_from_typedef): If a type parameter is
12427         inherited from an outer class, set its owner to that class.
12428
12429 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
12430
12431         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
12432           for (int*) written size. This fixes bug #69592.
12433
12434 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
12435
12436         * icall.c: Added IsAuthenticodePresnet internal call.
12437         * image.c|h: New function that check a MonoImage for an Authenticode
12438         signature in the certificate PE data directory.
12439         * security.c|h: New internal call to ask the runtime if an 
12440         Authenticode signature seems referenced in the PE header.
12441
12442 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
12443
12444         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
12445
12446         * reflection.c (mono_image_create_pefile): Free the assembly streams
12447         after writing out the assembly file.
12448
12449         * object.c (mono_runtime_run_main): Fix small memory leak.
12450
12451         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
12452         property access modifiers. Fixes #69389.
12453
12454 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
12455
12456         * domain.c, object.c, object-internals.h, domain-internals.h,
12457         object.h, marshal.c: keep dynamic code info per domain.
12458
12459 2004-11-15  Martin Baulig  <martin@ximian.com>
12460
12461         * class.c (mono_type_get_name_recurse): Put type arguments in
12462         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
12463         see bug #68387.
12464
12465 2004-11-15  Martin Baulig  <martin@ximian.com>
12466
12467         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
12468         (mono_class_setup_vtable): When computing `the_cname' for a
12469         generic instance, don't include the namespace since we'd otherwise
12470         add it twice.
12471
12472 2004-11-15  Martin Baulig  <martin@ximian.com>
12473
12474         * class.c (mono_class_create_generic): Changed return type to void.
12475         (mono_class_create_generic_2): New public function; setup
12476         `class->method', `class->field' and `class->interfaces' here
12477         instead of in mono_class_init().
12478
12479         * class.h (mono_class_create_generic): Moved to class-internals.h.
12480
12481 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
12482
12483         * reflection.c (mono_image_create_pefile): take a file HANDLE.
12484         rather than writing to memory, write to this file. Right now,
12485         we are just writting into a buffer, and copying that. However
12486         we can avoid the buffer later.
12487
12488         (mono_dynamic_stream_reset): new function
12489
12490         * icall.c, object-internals.h: update for the above.
12491
12492 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
12493
12494         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
12495         have been using gc'd memory. First it is slower, unlikely
12496         the comment in the source code said, secondly, it increases
12497         our footprint to do it in the gc.
12498
12499         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
12500         the method so that it does not have to copy to managed code.
12501
12502 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
12503
12504         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
12505
12506 2004-11-12  Martin Baulig  <martin@localhost>
12507
12508         * reflection.c (mono_image_create_token): Allow generic method
12509         definitions here, since they may appear in an `.override'; see
12510         gen-98/gen-99 for an example.
12511
12512 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
12513
12514         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
12515         #69365.
12516
12517         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
12518         descriptive.
12519
12520 2004-11-11  Martin Baulig  <martin@ximian.com>
12521
12522         * class.c (mono_class_setup_vtable): In an explicit interface
12523         implementation, the method name now includes the arity.
12524
12525 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
12526
12527         * object.c (mono_array_full_copy): Fix warning.
12528
12529 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
12530
12531         * appdomain.c: Removed look_for_method_by_name(). Use the new method
12532         mono_class_get_method_from_name() instead.
12533         
12534         * class-internals.h: Added two new types of wrappers. 
12535         Added MonoRemotingTarget enum. Added new trampoline function type, which
12536         takes an additional MonoRemotingTarget value as parameter, so it is
12537         possible to request a trampoline for a specific target.
12538         
12539         * class.c: Added new mono_class_get_method_from_name() method.
12540         
12541         * class.h: In MonoRemoteClass, we can have now to vtables, one for
12542         general remoting sinks and one specific for cross domain calls.
12543         
12544         * debug-helpers.c: Added new wrapper names.
12545         
12546         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
12547         of a remote class.
12548         
12549         * image.c: Porperly delete value objects form the remoting invoke hashtable.
12550         
12551         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
12552         with several other methods (mono_marshal_get_xappdomain_dispatch,
12553         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
12554         and others) can generate a fast remoting wrapper for cross domain calls.
12555         More information can be found in docs/remoting.
12556         Other changes: Removed mono_find_method_by_name, and used
12557         mono_class_get_method_from_name instead.
12558         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
12559         is stored in the remoting invoke hashtable.
12560         
12561         * marshal.h: published the new method for getting the xdomain wrapper,
12562         and also added a method for getting the adequate wrapper for a given
12563         method and target.
12564         
12565         * object-internals.h, object.c: Added a couple of methods for capying and
12566         cloning arrays.
12567         Modified mono_install_remoting_trampoline, which takes the new remoting
12568         trampoline that has a remoting target as parameter.
12569         mono_class_proxy_vtable now also takes a remoting target as parameter, and
12570         will return the most suitable vtable for the target.
12571         Added mono_remote_class_vtable, which returns the vtable of a remote class
12572         (which can be the normal remoting vtable or the xdomain vtable).
12573         
12574         * threads.c: the xdomain invoke and dispatch wrappers must also be
12575         protected against interruptions.
12576
12577 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12578
12579         * icall.c: use memmove in BlockCopyInternal when the source and
12580         destination arrays are the same.
12581
12582 2004-11-09  Martin Baulig  <martin@ximian.com>
12583
12584         * class-internals.h (MonoGenericContainer): Removed `method' and
12585         `signature', replaced them with `is_method' and `is_signature'
12586         flags.  Added `context'.
12587
12588         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
12589         instead of a `MonoGenericContainer *'.
12590
12591         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
12592         for dynamic type parameters.
12593         (mono_metadata_load_generic_params): Setup `container->context'.
12594
12595         * reflection.c (mono_reflection_setup_generic_class): Setup
12596         `tb->generic_container->context'.
12597         (do_mono_reflection_bind_generic_parameters): Use
12598         mono_class_inflate_generic_type() to correctly inflate types,
12599         rather than using our own hack just for MONO_TYPE_VAR.
12600
12601 2004-11-09  Martin Baulig  <martin@ximian.com>
12602
12603         * class.c (mono_class_inflate_generic_method): Small fix; don't
12604         crash here.
12605
12606         * icall.c
12607         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
12608         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
12609         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
12610         (ves_icall_Type_BindGenericParameters): Likewise.
12611         (ves_icall_Type_get_IsGenericInstance): Likewise.
12612         (ves_icall_Type_GetGenericParameterPosition): Likewise.
12613         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
12614         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
12615         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
12616
12617 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
12618
12619         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
12620         assembly versions and public key tokens. Fixes #69113.
12621
12622 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
12623
12624         * metadata.c: fix bug introduced with the type cache changes
12625         on 2004-11-06.
12626
12627 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
12628
12629         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
12630         the MonoClass pointer instead of the token in exception clauses.
12631         * reflection.c: updates for the above and make the code not depend
12632         on the structure of MonoExceptionClause.
12633
12634 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
12635
12636         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12637         Add support for dynamic assemblies. Fixes #69114.
12638
12639         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
12640
12641 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
12642
12643         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
12644         since most only those methods use it. the code member of
12645         MonoMethodPInvoke was dead, so that can be removed too. Also,
12646         remove inline_count (again, not used), and move slot so that it
12647         can share bits with some other flags. This saves 8 bytes in the
12648         structure and gives us about 50 kb back for mcs helloworld.cs
12649
12650         * *.[ch]: Do naming changes for the above.
12651
12652         * loader.c (mono_method_get_header): Lazily init the header
12653         on first access.
12654         (mono_get_method_from_token): don't init the header here
12655         (mono_free_method): the header may never be allocated
12656
12657         Overall, this saves 150 kb of unmanaged allocations
12658         for mcs helloworld.cs. That accounts for 10% of the unmanaged
12659         memory at runtime.
12660         
12661         * loader.c, loader.h (mono_method_get_header): new accessor.
12662
12663         * *.[ch]: use the above method. Prepares us to lazily load
12664         the header.
12665
12666         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
12667         three warnings, which are actual bugs (see 69206).
12668
12669         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
12670         unused. Saves a cool 4 bytes / method.
12671
12672 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
12673
12674         * metadata.c (builtin_types): Add types for System.Object here.
12675         (mono_metadata_parse_type_full): Cache MonoType*'s that are
12676         for a class or valuetype from klass->this_arg or klass->byval_arg.
12677
12678         On mcs for a hello world, this gets us down from 21836 MonoType's
12679         to 14560.
12680
12681         (mono_metadata_free_type): Account for the above change.
12682
12683 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
12684
12685         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
12686         exception instead of asserting if name is null.
12687         (ves_icall_System_AppDomain_GetData): Ditto.
12688
12689 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
12690
12691         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
12692         EnumBuilder.
12693
12694         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
12695         Return NULL when the domain does not have entry_assembly set.
12696
12697         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
12698         Add a 'resource_modules' argument.
12699         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
12700
12701         * reflection.c (mono_reflection_create_runtime_class): Move setting
12702         of wastypebuilder here, so mono_get_type_object () returns a MonoType
12703         for enums too.
12704
12705         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
12706         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
12707         Throw an ArgumentNullException if 'ptr' is null.
12708
12709         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
12710         assemblies here. Fixes #69020.
12711
12712 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
12713
12714         * reflection.c (build_compressed_metadata): Fix the previous patch for
12715         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
12716         the stack.
12717
12718 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
12719
12720         * assembly.c (mono_assembly_names_equal): Allow a match if one of
12721         the cultures is false. Fixes #69090.
12722
12723         * reflection.c (build_compressed_metadata): Fix invalid memory read 
12724         detected by valgrind.
12725         
12726         * reflection.c (mono_reflection_get_type): Avoid triggering a 
12727         TypeResolve multiple times for the same type. Fixes #65577.
12728
12729 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
12730
12731         * marshal.c: Avoid using ldftn to call managed functions. It is
12732         much slower than just a call.
12733
12734         * reflection.c (mono_module_get_object): free the basename we
12735         allocate here from glib.
12736         
12737         * reflection.c (ensure_runtime_vtable): make sure to free
12738         overrides.  Also, we were allocating an array of MonoMethod not an
12739         array of MonoMethod*.
12740
12741         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
12742
12743         * image.c (mono_image_close): free image->guid here.
12744
12745 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
12746
12747         * reflection.c: Fix some spec conformance issues with the PE file
12748         structures so mcs compiled apps run on the Net 2.0 beta.
12749
12750 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
12751
12752         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
12753         Implement this. Fixes #67264.
12754
12755         * debug-helpers.h debug-helpers.c marshal.c: Move 
12756         mono_find_method_by_name to debug-helpers.c.
12757
12758 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
12759
12760         * object.c (mono_release_type_locks): type_initialization_hash is
12761         a GHashTable.
12762
12763         * reflection.c object.c object-internals.h: Fix warnings.
12764
12765         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
12766         without accessors. Fixes #61561.
12767
12768         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
12769         application base from the root domain if not set. Fixes #65641.
12770         (mono_runtime_init): Fix warning.
12771
12772 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12773
12774         * appdomain.c: call mono_thread_pool_init.
12775         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
12776         of worker threads based on the number of CPUs and the environment
12777         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
12778         for non-windows (windows) systems.
12779
12780 2004-10-27  Chris Toshok  <toshok@ximian.com>
12781
12782         * mono-debug-debugger.c (write_class): don't call mono_class_init
12783         here, as even with the check for (!klass->init_pending), we get
12784         into a situation where we're hitting cycles in class
12785         initialization.  Fixes #68816.
12786
12787 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
12788
12789         * image.c: Avoid overwriting values in the loaded_images_hash when an
12790         assembly is loaded multiple times. Fixes #61152.
12791
12792         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
12793         so multiple satellite assemblies for the same name can be loaded.
12794         Fixes #68259.
12795
12796         * mono_domain_assembly_preload: Actually return the loaded assembly, 
12797         not NULL.
12798
12799         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
12800         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
12801
12802         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
12803         pending finalizers are not invoked after the appdomain has been 
12804         unloaded. Fixes #67862.
12805
12806 2004-10-22  Martin Baulig  <martin@ximian.com>
12807
12808         * mono-debug-debugger.c
12809         (mono_debugger_runtime_invoke): Don't box valuetypes.
12810
12811 2004-10-22  Chris Toshok  <toshok@ximian.com>
12812
12813         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
12814         don't hide private methods.
12815
12816 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
12817
12818         * icall.c: Allows the runtime to "share" (when known) the public key
12819         token of an assembly. This avoid the need to recalculate the token 
12820         (from the public key) in managed code.
12821
12822 2004-10-21  Chris Toshok  <toshok@ximian.com>
12823
12824         * debug-helpers.c (append_class_name): argh, revert last patch.
12825         
12826 2004-10-21  Chris Toshok  <toshok@ximian.com>
12827
12828         * debug-helpers.c (append_class_name): use '+' as the delimiter,
12829         not '/', so that it matches what the debugger uses to look up
12830         methods.
12831
12832 2004-10-21  Martin Baulig  <martin@ximian.com>
12833
12834         * mono-debug-debugger.c (mono_debugger_throw_exception): New
12835         public method; this is called each time an exception is thrown and
12836         allows the debugger to use exception catch points.
12837
12838 2004-10-21  Martin Baulig  <martin@ximian.com>
12839
12840         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
12841         the stack pointer and the exception object in some struct and pass
12842         that to the debugger.
12843
12844 2004-10-21  Chris Toshok  <toshok@ximian.com>
12845
12846         * mono-debug-debugger.c (do_write_class): add instance/static
12847         event support.  We don't expose "raise" or "other" yet.
12848         (event_is_static): new method.
12849
12850 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
12851
12852         * mono-debug-debugger.c
12853         (mono_debugger_handle_exception): Remove
12854         bogus return value for fussy compilers.
12855
12856 2004-10-20  Martin Baulig  <martin@ximian.com>
12857
12858         * mono-debug-debugger.c
12859         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
12860         (mono_debugger_handled_exception): Likewise.
12861
12862 2004-10-20  Martin Baulig  <martin@ximian.com>
12863
12864         * mono-debug-debugger.h (MonoDebuggerEvent): Added
12865         MONO_DEBUGGER_EVENT_EXCEPTION.
12866
12867         * mono-debug-debugger.c (mono_debugger_handle_exception): New
12868         public function to send the debugger a notification for an
12869         exception and inform it about a catch/finally clause.
12870
12871 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
12872
12873         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
12874         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
12875         fix 2.95 build. 
12876
12877         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
12878
12879 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
12880
12881         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
12882         marshalled as [In,Out]. Fixes #58325.
12883
12884 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
12885
12886         * reflection.c (mono_method_body_get_object): Implement some fields.
12887
12888 2004-10-12  Martin Baulig  <martin@ximian.com>
12889
12890         * reflection.c (mono_reflection_bind_generic_parameters): Small
12891         fix, correctly retrieve our parent from a generic instance.
12892
12893 2004-10-12  Martin Baulig  <martin@ximian.com>
12894
12895         * metadata.c (mono_metadata_generic_param_equal): We always have
12896         an owner.
12897
12898         * class.c
12899         (mono_class_from_generic_parameter): We need to have an owner.
12900         (my_mono_class_from_generic_parameter): Likewise.
12901
12902         * reflection.c (mono_reflection_setup_generic_class): Renamed to
12903         mono_reflection_create_generic_class() and added a new
12904         mono_reflection_setup_generic_class().  
12905         (mono_reflection_initialize_generic_param): If we're a nested
12906         generic type and inherited from the containing class, set our
12907         owner to the outer class.
12908
12909 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
12910
12911         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
12912
12913         * reflection.c (mono_method_body_get_object): New function to create
12914         a MethodBody object.
12915
12916         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
12917
12918 2004-10-11  Martin Baulig  <martin@ximian.com>
12919
12920         * metadata.c (_mono_metadata_type_equal): Renamed to
12921         do_mono_metadata_type_equal() and made static.
12922
12923 2004-10-11  Martin Baulig  <martin@ximian.com>
12924
12925         * appdomain.c: Bump corlib version number to 28.
12926
12927 2004-10-10  Martin Baulig  <martin@ximian.com>
12928
12929         * class-internals.h
12930         (MonoGenericInst): Added `MonoGenericContainer *container'.
12931         (MonoGenericMethod): Likewise.
12932         (MonoGenericContext): Likewise.
12933         (MonoGenericParam): Added `MonoGenericContainer *owner'.
12934
12935         * metadata.c
12936         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
12937         (do_mono_metadata_parse_generic_inst): Likewise.
12938         (mono_metadata_parse_type_full): New public method.  This is the actual
12939         mono_metadata_parse_type() implementation - with an additional
12940         `MonoGenericContainer *' argument.
12941         (mono_metadata_parse_array_full): Likewise.
12942         (mono_metadata_parse_signature_full): Likewise.
12943         (mono_metadata_parse_method_signature_full): Likewise.
12944         (mono_metadata_parse_mh_full): Likewise.
12945         (mono_type_create_from_typespec): Likewise.
12946         (mono_metadata_interfaces_from_typedef_full): New public method;
12947         this is similar to the other _full() methods, but we take a
12948         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
12949         (mono_metadata_parse_generic_param): Take an additional
12950         `MonoGenericContainer *' argument and lookup the MonoGenericParam
12951         from that container.
12952         (mono_metadata_generic_param_equal): New static method to compare
12953         two type parameters.
12954         (_mono_metadata_type_equal): New static method; takes an
12955         additional `gboolean signature_only' argument - if true, we don't
12956         compare the owners of generic parameters.
12957         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
12958         with a TRUE argument - do a signature-only comparision.
12959
12960         * loader.c: Use the new _full() methods and pass the
12961         MonoGenericContainer to them.
12962
12963         * object-internals.h (MonoReflectionTypeBuilder): Added
12964         `MonoGenericContainer *generic_container' field.
12965         (MonoReflectionMethodBuilder): Likewise.
12966
12967 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
12968
12969         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
12970         case initial images of dynamic assemblies.
12971
12972         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
12973
12974         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
12975
12976         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
12977         length of event->other array.
12978         (typebuilder_setup_events): Ditto.
12979
12980         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
12981         'assembly_by_name' and add an 'assemblies' list.
12982
12983         * assembly.h assembly.c: Add a new search hook for determining whenever
12984         an assembly is already loaded. Use this instead of searching in the
12985         loaded_assemblies list.
12986
12987         * domain.c appdomain.c: Implement the new search hook so loaded 
12988         assemblies are now scoped by appdomain. Fixes #67727.
12989
12990 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
12991
12992         * threads.c (mono_thread_attach): Initialize synch_lock field so
12993         mono_thread_detach works again.
12994
12995         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
12996         'lib' too. Fixes #63130.
12997
12998 2004-10-06  Jackson Harper  <jackson@ximian.com>
12999
13000         * culture-info-tables.h: regenerated.
13001
13002 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
13003
13004         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
13005         implemented by other interfaces in the result. Fixes #65764.
13006         
13007         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13008         Handle unloadable modules without crashing.
13009
13010         * image.c (load_modules): Revert the previous patch since modules must
13011         have a fixed index inside the array.
13012         
13013         * image.c (load_modules): Don't include native modules in the modules
13014         array.
13015
13016 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
13017
13018         * reflection.h: Add param_defaults field.
13019
13020         * reflection.c: Add support for parameter defaults in dynamic methods.
13021         Fixes #64595.
13022
13023         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
13024         an empty string when a type has no namespace. Fixes #64230.
13025
13026 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
13027
13028         * tabledefs.h: Added "internal" security actions to support non-CAS
13029         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
13030         Note: they do not seems to be used anymore in 2.0 (new metadata format)
13031
13032 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
13033
13034         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
13035         constructor of abstract class. Fixes #61689.
13036
13037 2004-10-04  Martin Baulig  <martin@ximian.com>
13038
13039         * class-internals.h (MonoGenericContainer): New type.
13040         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
13041         `MonoGenericContainer *generic_container'.
13042         (MonoClass): Replaced `gen_params' and `num_gen_params' with
13043         `MonoGenericContainer *generic_container'.
13044
13045         * metadata.c (mono_metadata_load_generic_params): Return a
13046         `MonoGenericContainer *' instead of a `MonoGenericParam *';
13047         removed the `num' argument.
13048
13049 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
13050
13051         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
13052         for dynamic images.
13053
13054         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
13055         machine fields.
13056
13057         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
13058
13059         * reflection.c: Save pe_kind and machine values into the generated
13060         image file.
13061
13062         * appdomain.c: Bump corlib version number.
13063
13064         * object-internals.h: Reorganize layout of LocalBuilder.
13065
13066         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
13067         New helper function.
13068
13069         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
13070         created MonoType for dynamic types. Fixes #66180.
13071
13072 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
13073
13074         * threadpool.c: the ares hashtable needs a critical section around it.
13075         this prevents some nasty segfaults
13076
13077 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
13078
13079         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
13080         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
13081         bug 67324).
13082         
13083 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
13084
13085         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
13086         
13087 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
13088
13089         * image.c: Always canonicalize image file names, to avoid loading
13090         the same assembly twice when referenced using a relative path.
13091
13092 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
13093
13094         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
13095
13096         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
13097
13098         * marshal.c: Fix warnings.
13099
13100 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
13101
13102         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
13103         attempting to marshal the delegate_trampoline as the method_addr.
13104         This patch has a static hashtable of marshalled delegates so that 
13105         we can map delegate_trampoline addresses back to delegates.  This
13106         allows a delegate passed to managed code to be passed back into native
13107         code.  Fixes #67039
13108
13109 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
13110
13111         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
13112
13113         * reflection.c (method_encode_code): Align method headers properly.
13114         Fixes #66025.
13115
13116 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
13117
13118         * marshal.c: In the runtime invoke wrapper, reset the abort
13119         exception if it is cached. This avoids the automatic rethrowal of 
13120         the exception after the catch of the wrapper. Also check for pending
13121         interruptions before calling the managed method. This is done using
13122         the new method emit_thread_force_interrupt_checkpoint, since the
13123         normal checkpoint method is ignored when running the invoke wrapper.
13124         * object.c: If the abort exception is rethrown, set the abort_exc
13125         field of the thread, so it will be rethrown aftere every catch.
13126         * threadpool.c: Only run an interruption checkpoint if what has been
13127         requested is a stop of the thread (aborts will be ignored).
13128         * threads.c: By default, a thread will now never be interrumped while
13129         running the runtime invoke wrapper (this ensures that runtime_invoke
13130         will always return to the caller if an exception pointer is provided).
13131         There is a new special method mono_thread_force_interruption_checkpoint()
13132         to force an interruption checkpoint even if running a protected
13133         wrapper, which is used by the same runtime invoke wrapper to do a check
13134         at a safe point.
13135
13136 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
13137
13138         * object.c, object-internals.h: Implemented mono_release_type_locks,
13139         which releases the cctor locks held by a thread.
13140         * threads.c, threads.h: In thread_cleanup, release cctor locks held
13141         by a thread. Added mono_thread_exit() method to be used to safely stop
13142         a thread.
13143
13144 2004-09-28  Raja R Harinath  <rharinath@novell.com>
13145
13146         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13147         Move null check before dereference.  Avoid indexing beyond the end
13148         of the 'modules' array.
13149
13150 2004-09-28  Raja R Harinath  <rharinath@novell.com>
13151
13152         * metadata-internals.h (MonoImage): Add module_count field.
13153         * image.c (load_modules): Set image->module_count.
13154         (mono_image_load_file_for_image): Use image->module_count.
13155         * reflection.c (mono_image_load_module): Append to image->modules array 
13156         of dynamic assembly.
13157         (mono_module_get_object): Fix loop to actually increment index.
13158         Use image->module_count.
13159         * assembly.c (mono_assembly_load_references): Use image->module_count.
13160         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
13161         Likewise.
13162
13163 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
13164
13165         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
13166         Avoid assert on generic types.
13167
13168 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
13169
13170         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
13171
13172         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
13173
13174         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
13175         function to convert a MarshalSpec structure to its managed counterpart.
13176
13177         * reflection.c: Fix warnings.
13178         
13179         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
13180         field.
13181
13182         * icall.c (mono_create_icall_signature): Fix build.
13183
13184 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
13185
13186         * icall.c: Add MakePointType icall.
13187
13188         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
13189         warnings.
13190
13191 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13192
13193         * threadpool.c: reuse allocated slots in the queue.
13194
13195 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
13196
13197         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
13198
13199         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
13200
13201         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
13202         previous change.
13203
13204         * tabledefs.h: Add constants for pinvoke attributes BestFit and
13205         ThrowOnUnmappableChar.
13206
13207         * icall.c (ves_icall_Type_GetPacking): New icall.
13208
13209 2004-09-24  Martin Baulig  <martin@ximian.com>
13210
13211         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
13212
13213 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13214
13215         * appdomain.c:
13216         (mono_domain_set): allow setting a domain that is being unloaded.
13217         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
13218         being unloaded.
13219
13220 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
13221
13222         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
13223         the GetCustomAttributes icall.
13224
13225 2004-09-23  Martin Baulig  <martin@ximian.com>
13226
13227         * object-internals.h (MonoReflectionGenericParam): Replaced
13228         'has_ctor_constraint', `has_reference_type' and `has_value_type'
13229         with `guint32 attrs'.
13230
13231 2004-09-23  Martin Baulig  <martin@ximian.com>
13232
13233         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
13234
13235 2004-09-23  Martin Baulig  <martin@ximian.com>
13236
13237         * object-internals.h (GenericParameterAttributes): New enum.
13238
13239 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
13240
13241         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
13242         
13243         * class.c (init_events): Fill out event->other field.
13244
13245         * class.c: Fix warnings.
13246
13247         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
13248
13249 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
13250
13251         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
13252         walk which doesn't supply the IL offset.
13253
13254 2004-09-22  Martin Baulig  <martin@ximian.com>
13255
13256         * reflection.c (mono_reflection_setup_internal_class): If we're
13257         System.ValueType, System.Object or System.Enum, set
13258         `klass->instance_size' and create the vtable.
13259         (mono_reflection_create_internal_class): If we're an enum type,
13260         get the base class from our current corlib.
13261
13262 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
13263
13264         * reflection.h (MonoResolveTokenError): New type.
13265
13266         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
13267         icall.
13268
13269         * icall.c: Add an 'error' argument to the ResolveToken icalls.
13270
13271 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
13272
13273         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
13274         Support also calling constructors, but only for already allocated objects.
13275
13276 2004-09-17  Geoff Norton <gnorton@customerdna.com>
13277
13278         * reflection.c (type_get_qualified_name): If the klass is null
13279         return the typename to avoid a NullRefEx.
13280         (encode_cattr_value): Get the qualified name of the boxed type,
13281         not the underlying enumtype.  Fixes #62984.
13282
13283 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
13284
13285         * marshal.c: Fix problems with previous checkin.
13286
13287 2004-09-21    <vargaz@freemail.hu>
13288
13289         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
13290         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
13291
13292         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
13293
13294 2004-09-21  Geoff Norton <gnorton@customerdna.com>
13295
13296         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
13297         should only return a type for pointers, arrays, and passbyref types.
13298         Fixes bug #63841.
13299
13300 2004-09-21  Martin Baulig  <martin@ximian.com>
13301
13302         * domain.c (mono_debugger_check_runtime_version): New public
13303         function.
13304
13305         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
13306
13307 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
13308
13309         * reflection.c: Added missing sort to the declarative security 
13310         attributes table. MS implementation stops seeing the attributes if the
13311         token number regress in the table (as shown by ildasm and permview).
13312
13313 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
13314
13315         * object-internals.h (MonoReflectionModule): Add 'token' field.
13316         
13317         * reflection.c (mono_reflection_get_token): Add support for Module
13318         and Assembly.
13319         (mono_module_get_object): Set 'token' field.
13320         (mono_module_file_get_object): Set 'token' field.
13321
13322         * icall.c: Add new Assembly and Module icalls.
13323
13324         * appdomain.c: Bump corlib version.
13325
13326 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
13327
13328         * loader.h loader.c class.h class.c: Add helper functions for obtaining
13329         tokens of metadata objects.
13330
13331         * reflection.h reflection.c (mono_reflection_get_token): New function
13332         to obtain the token of a metadata object.
13333
13334         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
13335
13336 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
13337
13338         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
13339         
13340         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
13341
13342 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
13343
13344         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
13345         * object-internals.h: Added 3 MonoArray* members to MonoReflection
13346         AssemblyBuilder to access the permissions set in the class lib.
13347         * reflection.c: Added security attributes encoding step in 
13348         mono_image_build_metadata.
13349         * tabledefs.h: Added new security actions defined in 2.0:
13350         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
13351
13352 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
13353
13354         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
13355         macro parameter.
13356
13357 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
13358  
13359         * locales.c: nullify the ICU_collator member of CompareInfo when it is
13360           finalized. There where random SIGSEVs at program termination, when
13361           an object being finalized was trying to do a string comparison and
13362           the current culture was already finalized.
13363  
13364 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13365
13366         * threads.c: call thread_cleanup before finishing the thread if we get
13367         there.
13368
13369 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
13370
13371         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
13372         assemblies from the parent. Fixes #65665.
13373
13374 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
13375
13376         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
13377         modifiers.
13378
13379 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
13380
13381         * reflection.h: add prototype for mono_get_dbnull_object
13382         * reflection.c: add prototypes for get_default_param_value_blobs 
13383         and mono_get_object_from_blob for fussier compilers
13384
13385 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
13386  
13387         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
13388         false deadlock checks in class initialization.
13389  
13390 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
13391
13392         * image.c (mono_image_addref): Fix comment.
13393
13394         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
13395         possible.
13396
13397 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
13398
13399         * reflection.c (mono_param_get_objects): Modified to return
13400         ParameterInfo.DefaultValue object.
13401
13402         (get_default_param_value_blobs):
13403         (mono_get_object_from_blob):
13404         (mono_get_dbnull_object): New helper routines. 
13405
13406         * object.c (mono_get_constant_value_from_blob): New helper routine
13407         carved out from get_default_field_value ()
13408
13409         * object-internals.h (mono_get_constant_value_from_blob): Added
13410         function declaration.
13411
13412 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
13413
13414         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
13415         referenced assemblies. Fixes #62135.
13416
13417         * exception.h exception.c (mono_get_exception_file_not_found2): New
13418         helper function.
13419
13420 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
13421
13422         * class.h class.c: Add mono_type_get_underlying_type ().
13423
13424 2004-09-09  Geoff Norton <gnorton@customerndna.com>
13425
13426         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
13427         Fix GetTypes() to support dynamically created assemblies.
13428
13429 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
13430
13431         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
13432         
13433         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
13434         previous patch.
13435
13436         * reflection.h reflection.c loader.c: Allow dynamic construction of
13437         pinvoke methods. Fixes #65571.
13438         
13439         * reflection.c (mono_reflection_get_type): Revert previous change since
13440         it causes regressions.
13441
13442 2004-09-08  Martin Baulig  <martin@ximian.com>
13443
13444         * class.c (class_compute_field_layout): Don't call
13445         mono_class_layout_fields() for open generic instances.
13446
13447 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
13448         * threads.c appdomain.c: fix typo in GC macro
13449
13450 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13451
13452         * threads.c: don't call mono_thread_detach() in start_wrapper(),
13453         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
13454
13455 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
13456
13457         * image.c (mono_image_close): Applied patch from 
13458         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
13459         assembly is loaded multiple times from data.
13460         
13461         * image.c (mono_image_open): Fix warning.
13462
13463 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
13464
13465         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
13466         once. Fixes #58334.
13467         
13468         * reflection.c (mono_reflection_create_runtime_class): Initialize
13469         klass->nested_classes. Fixes #61224.
13470
13471 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
13472
13473         * threads.c: sched_yield() on exit, to allow threads to quit.
13474
13475 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
13476
13477         * object.c (mono_unhandled_exception): Remove leftover debug code.
13478
13479 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
13480
13481         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
13482
13483 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
13484
13485         * marshal.c (emit_marshal_array): Really null terminate string arrays.
13486         
13487         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
13488
13489 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
13490
13491         * marshal.c (emit_marshal_array): Null terminate string arrays.
13492         
13493         * marshal.c (raise_auto_layout_exception): Fix warning.
13494
13495         * reflection.c (mono_param_get_objects): Initialize the default value
13496         with DBNull.Value, not null. Fixes #62123.
13497
13498 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
13499
13500         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
13501         throw an exception with a cute explanation.
13502
13503 2004-09-06  Dick Porter  <dick@ximian.com>
13504
13505         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
13506         Close the new process's thread handle, as we don't use it.  The
13507         handle stays around forever otherwise.
13508
13509 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
13510
13511         * object.c (arith_overflow): Fix warning.
13512
13513         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
13514         calling conventions in method refs. Fixes #65352.
13515
13516         * reflection.c: Fix warnings.
13517
13518 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
13519
13520         * icall.c: Add a new icall for Array.Clear
13521
13522 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
13523
13524         * object.c: When allocating an array, we have to throw
13525         an overflow exception if any of the lengths are < 0.
13526
13527 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
13528
13529         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
13530         properly. Also move implementation of string array marshalling to 
13531         managed code. Fixes #42316.
13532
13533 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13534
13535         * assembly.c: provide more information when loading an assembly fails.
13536
13537 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13538
13539         * filewatcher.c: don't expect the development fam package to be
13540         installed.
13541
13542 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
13543
13544         * marshal.c: Make a copy of the signature cookie since it will be
13545         freed by the caller.
13546         
13547         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
13548
13549         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
13550
13551         * metadata.c (mono_metadata_free_marshal_spec): New function to free
13552         marshal specs.
13553
13554         * marshal.c: More refactoring.
13555         
13556         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
13557         smaller functions.
13558
13559 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
13560
13561         * object.c: In mono_message_invoke, fill the output parameter array after
13562           calling the managed method (it was done before the call). This fixes
13563           bug #59299.
13564
13565 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
13566
13567         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
13568         as well.
13569
13570 2004-09-02  Martin Baulig  <martin@ximian.com>
13571
13572         * class.c (mono_class_instance_size): Don't allow generic type
13573         definitions or open generic instances.
13574         (mono_class_array_element_size): If we're a value type, call
13575         mono_class_instance_size() on the original class.
13576
13577         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
13578         handle generic instances.
13579
13580         * mono-debug-debugger.c (write_type): Handle generic instances
13581         like classes.
13582
13583 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
13584
13585         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
13586         the allocation request fails. Fixes #65089.
13587
13588         * object.c (mono_runtime_free_method): Do not call mono_free_method.
13589         
13590         * object.c (mono_runtime_free_method): New function to free a dynamic
13591         method.
13592
13593         * marshal.c (mono_delegate_free_ftnptr): New function to free the
13594         delegate trampoline.
13595
13596         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
13597         with hasthis as dynamic,
13598
13599         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
13600
13601         * domain.c (mono_jit_info_table_remove): New function to remove an
13602         entry from the jit info table.
13603
13604         * class-internals.h (MonoMethod): Add 'dynamic' field.
13605
13606         * loader.c: Fix warnings.
13607
13608 2004-09-01  Martin Baulig  <martin@ximian.com>
13609
13610         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
13611         instead of mono_debugger_lock() because the latter one is a no-op
13612         unless running in the debugger.
13613
13614 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
13615
13616         * class.c (class_compute_field_layout): Classes with auto-layout or
13617         reference fields are not blittable.
13618         
13619 2004-09-01  Dick Porter  <dick@ximian.com>
13620
13621         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
13622         mono_image_get_filename() to get the assembly location.
13623
13624         * icall.c:
13625         * metadata.h: Fix compile warnings
13626
13627 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
13628
13629         * class.c (class_compute_field_layout): System.Object is blittable.
13630
13631         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
13632         as in/out. Fixes #59909.
13633
13634 2004-09-01  Martin Baulig  <martin@ximian.com>
13635
13636         * metadata.h (MONO_TYPE_ISREFERENCE): Call
13637         mono_metadata_generic_inst_is_valuetype() if we're a generic
13638         instance to check whether our underlying type is a reference type.
13639
13640 2004-09-01  Martin Baulig  <martin@ximian.com>
13641
13642         * metadata.c (mono_type_size): If we're a generic instance, call
13643         mono_class_value_size() for value types.
13644
13645 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
13646
13647         * marshal.c: Implement more custom marshalling functionality. Fixes
13648         #64915.
13649
13650 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
13651
13652         * mono-debug.c, debug-mono-symfile.c: add some locking love.
13653
13654 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
13655
13656         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
13657
13658         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
13659
13660         * icall.c: Fix some warnings.
13661
13662         * threads.c (abort_appdomain_thread): Fix unref errors.
13663         (mono_thread_current): Fix THREAD_DEBUG define.
13664
13665 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
13666
13667         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
13668
13669         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
13670
13671 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
13672
13673         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
13674         string arrays.
13675
13676 2004-08-28  Martin Baulig  <martin@ximian.com>
13677
13678         * metadata.c
13679         (mono_metadata_generic_inst_is_valuetype): New public function.
13680
13681         * metadata.h (MONO_TYPE_ISSTRUCT): Call
13682         mono_metadata_generic_inst_is_valuetype() if we're a generic
13683         instance to check whether our underlying type is a valuetype.
13684
13685 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
13686
13687         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
13688         #63768.
13689
13690 2004-08-25  Martin Baulig  <martin@ximian.com>
13691
13692         * loader.c (mono_get_method_from_token): Abstract methods can also
13693         be generic and thus have type parameters.
13694
13695         * metadata-internals.h
13696         (MonoDynamicImage): Added `GPtrArray *gen_params'.
13697
13698         * reflection.c (mono_image_get_generic_param_info): Don't create a
13699         metadata row, just add an entry to the `gen_params' array.
13700         (build_compressed_metadata): Sort the `gen_params' array and then
13701         actually create the metadata.
13702
13703 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13704
13705         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
13706
13707 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
13708
13709         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
13710
13711 2004-08-24  Martin Baulig  <martin@ximian.com>
13712
13713         * class.cs (mono_class_is_subclass_of): Like an interface, a
13714         generic instance also derives from System.Object.
13715
13716 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
13717
13718         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
13719         custom modifiers to be in any order. Fixes #61990.
13720
13721 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
13722
13723         * object.c: Register mono_object_new_fast icall.
13724         
13725         * object.c (mono_class_get_allocation_ftn): Return to calling
13726         mono_object_new_fast, since it seems faster to compute the object 
13727         size in unmanaged code than passing it as a parameter.
13728
13729         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
13730
13731         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
13732         this function with Boehm as the oom handler, so we don't have to check
13733         the result of GC_malloc.
13734
13735         * object.c: Remove checks for oom.
13736
13737         * object.h object.c (mono_class_get_allocation_ftn): New function to
13738         return the icall which can be used to allocate an instance of a given
13739         class. 
13740
13741         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
13742
13743         * class-internals.h: Add 'enabled' field.
13744
13745 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
13746
13747         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
13748
13749 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
13750         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
13751         value 0x0010.
13752
13753 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
13754
13755         * appdomain.c: use the Tls function for appdomain too,
13756         at Zoltan's request. Actually return in mono_context_get
13757
13758         * appdomain.c, profiler.c, threads.c: use __thread
13759
13760 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
13761
13762         * appdomain.c threads.c: Call GC_CreateThread on windows.
13763
13764         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
13765         multiple libraries since this don't work on windows.
13766
13767 2004-08-18  Martin Baulig  <martin@ximian.com>
13768
13769         * class-internals.h
13770         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
13771         MonoMethodHeader.
13772
13773         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
13774         MonoMethodNormal since we also need it for abstract and interface
13775         methods.
13776
13777         * reflection.c
13778         (build_compressed_metadata): Sort the GenericParam table.
13779         (mono_image_create_token): Added `gboolean create_methodspec'
13780         argument; this is false when generating a MethodImpl token.
13781         (reflection_methodbuilder_to_mono_method): Abstract and interface
13782         methods may also have generic parameters.
13783
13784 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
13785
13786         * appdomain.c: thread local alloc
13787
13788 2004-08-17  Martin Baulig  <martin@ximian.com>
13789
13790         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
13791
13792         * icall.c
13793         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
13794         argument.
13795
13796         * class.c (mono_type_get_full_name): New public function.
13797         (mono_type_get_name): Don't include the type arguments.
13798
13799 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
13800
13801         * Makefile.am: Build static versions of libmetadata and libmonoruntime
13802         for inclusion into the mono executable.
13803
13804 2004-08-16  Martin Baulig  <martin@ximian.com>
13805
13806         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
13807         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
13808
13809 2004-08-14  Martin Baulig  <martin@ximian.com>
13810
13811         * class.c (dup_type): Also copy the `byref' field.
13812
13813 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
13814
13815         * reflection.c (create_dynamic_mono_image): Revert the last change 
13816         since it breaks bootstrap.
13817
13818 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
13819
13820         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
13821
13822         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
13823         not free them with g_free.
13824
13825 2004-08-11  Martin Baulig  <martin@ximian.com>
13826
13827         * reflection.c (mono_reflection_setup_internal_class): Also call
13828         mono_class_setup_mono_type() if we already have a `tb->type.type'.
13829
13830 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
13831
13832         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
13833         called during default (first) AppDomain creation. Keep track of
13834         Evidence when loading assemblies.
13835
13836 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
13837
13838         * opcodes.c, opcodes.h: reduce runtime relocations.
13839
13840 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
13841
13842         * culture-info.h, locales.c: fixes and chages to sue the new
13843         optimized format of the locale data.
13844         * culture-info-tables.h: regenerated.
13845
13846 2004-08-06  Geoff Norton <gnorton@customerdna.com>
13847         
13848         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
13849
13850 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
13851
13852         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
13853         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
13854         * domain-internals.h: icall declaration.
13855         * icall.c: icall registration.
13856         * object-internals.h: New fields in MonoAssembly for CAS.
13857
13858 2004-08-05  Duncan Mak  <duncan@ximian.com>
13859
13860         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
13861         CEE_LDELEM_ANY.
13862
13863 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
13864
13865         * reflection.c: fix to deal with object[] arrays in custom ctors
13866         (bug #62550).
13867
13868 2004-08-05  Martin Baulig  <martin@ximian.com>
13869
13870         * class.c (mono_class_array_element_size): Added support for
13871         generic instances and correctly handle "recursive" types.
13872
13873 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
13874
13875         * assembly.c: Fix warnings.
13876
13877 2004-08-04  Martin Baulig  <martin@ximian.com>
13878
13879         * class.c
13880         (mono_type_get_name_recurse): Added `gboolean include_arity'
13881         argument specifying whether or not we should include the generic
13882         arity in the type name.
13883         (_mono_type_get_name): New static function.
13884         (mono_class_setup_vtable): If we're a generic instance, don't
13885         include the generic arity in the names of explicit method
13886         implementations.        
13887
13888 2004-08-03  Martin Baulig  <martin@ximian.com>
13889
13890         * class.c (mono_type_get_name_recurse): Enclose the generic type
13891         arguments in `<', '>'.
13892
13893 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
13894
13895         * gc.c: make GC warning messages use the trace API, they are just
13896         noise to most of the users.
13897
13898 2004-08-03  Martin Baulig  <martin@ximian.com>
13899
13900         * debug-mono-symfile.c (read_string): Correctly read the string.
13901
13902 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
13903
13904         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
13905         
13906         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
13907         icalls.
13908         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
13909
13910 2004-07-30  Martin Baulig  <martin@ximian.com>
13911
13912         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
13913         Reflect latest symbol writer changes.   
13914
13915 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
13916
13917         * object.c: always create an object if null is passed
13918         to Invoke() where a valuetype is expected.
13919
13920 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
13921
13922         * marshal.c (mono_marshal_init): make managed
13923         signatures match native ones better for 64bits.
13924
13925 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13926
13927         * appdomain.c: hack to build correctly the private bin path on windows.
13928         Fixes bug #61991.
13929
13930 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
13931
13932         * assembly.c: Load mscorlib from the correct framework directory
13933           (mono/<version>/mscorlib.dll).
13934         * appdomain.h: Added prototypes for new functions.
13935         * internals.h: Added some prototypes.
13936         * domain.c: When initializing the runtime, get from the executable and
13937           the configuration files the runtime version that the app supports.
13938           Added support methods for reading app.exe.config. Added list of versions
13939           supported by the JIT. Added two new methods: mono_init_from_assembly,
13940           which initializes the runtime and determines the required version from
13941           the provided exe file, and mono_init_version, which initializes
13942           the runtime using the provided version.
13943         * icall.c: Get machine.config from version-specific directory.
13944         * reflection.c: When generating an image, embed the version number
13945           of the current runtime.
13946
13947 2004-07-28  Dick Porter  <dick@ximian.com>
13948
13949         * socket-io.c
13950         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
13951         returned sockaddr size before creating the remote address object.
13952         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
13953         61608.
13954
13955 2004-07-28  Dick Porter  <dick@ximian.com>
13956
13957         * locales.c (string_invariant_compare_char): Fix invariant char
13958         compares between upper and lower cases.  Fixes bug 61458.
13959
13960 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
13961         
13962         * marshal.c: actually cache stelem.ref wrappers.
13963         
13964 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
13965
13966         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
13967         sections and remove the mono_cli_rva_map () function.
13968
13969 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
13970
13971         * debug-mono-symfile.c: fix one more endianess issue, from a patch
13972         by Geoff Norton (<gnorton@customerdna.com>).
13973
13974 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
13975
13976         * class.c: fix class loads for pointer types (typeof(int) !=
13977         typeof(int*)).
13978
13979 2004-07-27  Martin Baulig  <martin@ximian.com>
13980
13981         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
13982         reading the debugging information from an external ".mdb" file.
13983
13984 2004-07-24  Martin Baulig  <martin@ximian.com>
13985
13986         * reflection.c (mono_image_get_type_info): Only write a class
13987         layout entry if we actually have a size or a packing size.
13988
13989 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
13990
13991         * reflection.c (type_get_fully_qualified_name): 
13992         insert cast to get type checking of ?: with non-gcc compilers
13993
13994 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
13995
13996         * rand.c: use g_getenv for both lookups of
13997         MONO_EGD_SOCKET
13998
13999 2004-07-17  Martin Baulig  <martin@ximian.com>
14000
14001         * reflection.c (mono_reflection_bind_generic_method_parameters):
14002         Set `gmethod->reflection_info'.
14003
14004 2004-07-17  Martin Baulig  <martin@ximian.com>
14005
14006         * class.c (mono_class_create_from_typedef): Insert the newly
14007         created class into the hash table before computing the interfaces
14008         since we could be called recursively.
14009
14010 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
14011
14012         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
14013         function to implement stelem.ref in managed code
14014         * class-internals.h, debug-helpers.c: a new wrapper type
14015         for the above.
14016
14017 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
14018
14019         * gc.c: allow GC handles to work even when no GC is compiled in.
14020         Fix part of bug #61134 (GetAddrOfPinnedObject).
14021
14022 2004-07-13  Peter Williams  <peter@newton.cx>
14023  
14024         * process.c (complete_path): Make sure we don't attempt to execute
14025         directories.
14026  
14027 2004-07-12  Geoff Norton <gnorton@customerdna.com>
14028
14029         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
14030           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
14031           and will add/subtract the hour if needed
14032
14033 2004-07-12  Martin Baulig  <martin@ximian.com>
14034
14035         * reflection.c (mono_field_get_object): If we have
14036         `field->generic_info', take the attributes from
14037         `field->generic_info->generic_type'.    
14038
14039 2004-07-12  Martin Baulig  <martin@ximian.com>
14040
14041         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
14042         This function must be called before initializing the runtime.
14043         (mono_debug_init_1): New function; call this after initializing
14044         the runtime, but before loading the assembly.  It tells the
14045         debugger to load corlib and the builtin types.
14046
14047         * mono-debug-debugger.c: Did some larger changes in the debugging
14048         code; support recursive class declarations, make sure we actually
14049         add all classes.
14050
14051 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14052
14053         * debug-helpers.c: undo my previous patch and fixed the real issue in
14054         ../mini/exceptions-x86.c
14055
14056 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14057
14058         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
14059         when no HOME env. variable was set and a NullRef was thrown in a .cctor
14060         called from other .cctors.
14061
14062 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
14063
14064         * loader.c: Removed the mono_loader_wine_init hack now that we are
14065         doing a managed version of Windows.Forms.
14066
14067 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
14068
14069         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
14070         threadpool.c, threads.c: remove static data from rootset.
14071
14072 2004-07-09  Dick Porter  <dick@ximian.com>
14073
14074         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
14075         Don't do any more processing if the matched length was 0.  It was
14076         increasing the size of the string before.  Fixes bug 61167.
14077
14078 2004-07-09  Dick Porter  <dick@ximian.com>
14079
14080         * socket-io.h:
14081         * socket-io.c
14082         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14083         Add support for SO_PEERCRED if its available.
14084
14085 2004-07-09  Peter Bartok <pbartok@novell.com>
14086         * loader.c: winelib.exe.so error message is now only displayed if
14087         MONO_DEBUG is set. To help us avoid questions when people are trying
14088         out the new Managed.Windows.Forms.
14089
14090 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
14091
14092         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
14093         for isinst and castclass wrappers.
14094
14095         * class-internals.h icall.c: Move registration and lookup of JIT icalls
14096         to libmetadata from the JIT, so they could be used by the marshalling
14097         code and the interpreter.
14098
14099         * marshal.c: Register marshalling related JIT icalls here instead of
14100         in mini.c. Use CEE_MONO_ICALL instead of the family of 
14101         CEE_MONO_PROC<x> opcodes to call marshalling functions.
14102
14103         * metadata.h: Remove unneeded marshalling conversions.
14104
14105         * opcodes.c: Update for new opcodes.
14106         
14107 2004-07-08  Martin Baulig  <martin@ximian.com>
14108
14109         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
14110         (mono_debug_get_domain_data): Make this function static.
14111
14112 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
14113
14114         * gc.c, object.h: add nice GC handle API for embedders.
14115
14116 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
14117
14118         * reflection.c: more changes for the new api
14119
14120         * object.c: When we reflect on a field w/ a constant value, it
14121         will not have a memory location, so we must access metadata. Also,
14122         allow easier reading of strings so that we can read them from
14123         the constant data.
14124
14125         * class.c (mono_class_layout_fields): no need for literal fields here.
14126
14127         * class-internals.h: api changes for const fields
14128
14129         * icall.c (ves_icall_get_enum_info): use new apis for const fields
14130
14131 2004-07-06  Martin Baulig  <martin@ximian.com>
14132
14133         * mono-debug.h: Increment version number to 44.
14134
14135         * mono-debug.c (mono_debug_add_wrapper): The second argument is
14136         now a gpointer, rewrote this whole method.
14137
14138         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
14139         function.  Add information about the wrapper in a new "misc table".
14140
14141         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
14142         for the new misc table.
14143
14144 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
14145
14146         * metadata-internals.h image.c: Add a cache for helper signatures.
14147
14148         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
14149
14150 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
14151
14152         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
14153         delegates from a delegate. Fixes #61033.
14154         
14155         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
14156         marshalling of stringbuilder arrays. Fixes #59900.
14157
14158 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
14159
14160         * icall.c: Add EnumBuilder:setup_enum_type icall.
14161
14162 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
14163
14164         * icall.c: Added a new icall for the property version of
14165         OffsetOfStringData.
14166
14167 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
14168
14169         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
14170         it has a constant size across platforms.
14171
14172         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
14173         stack trace.
14174
14175 2004-06-29  Martin Baulig  <martin@ximian.com>
14176
14177         * mono-debug.c (mono_debug_add_method): Protect the whole function
14178         in mono_debugger_lock(), not just parts of it.
14179
14180 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
14181
14182         * reflection.c: make sure padding bytes in heaps are zeroed.
14183
14184 2004-06-24  David Waite  <mass@akuma.org>
14185
14186         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
14187         image.c, loader.c, locales.c, marshal.c, metadata.c,
14188         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
14189         string-icalls.c, threads.c: change to C90-style comments from C99 /
14190         C++ -style
14191
14192 2004-06-24  Dick Porter  <dick@ximian.com>
14193
14194         * threads.c
14195         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
14196         return createdNew.  Fixes bug 60412.
14197
14198         * threads-types.h: 
14199         * icall.c: Add createdNew parameter to CreateMutex icall
14200
14201 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
14202
14203         * reflection.c, object-internals.h: save default value in params.
14204
14205 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14206
14207         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
14208         no need to build a new path combining that with the application base.
14209         Fixes bug #60442.
14210
14211 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
14212
14213         * reflection.c: fixed minor standard compliance issues.
14214
14215 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
14216
14217         * reflection.c: fixed issue with encoding some custom attributes
14218         (arrays in properties and fields, bug #60411).
14219
14220 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14221
14222         * reflection.c: fix start address when copying the public key token.
14223
14224 2004-06-23  Martin Baulig  <martin@ximian.com>
14225
14226         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
14227         the `exc' object in a static object to put it into the GC's root set.
14228
14229 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
14230
14231         * reflection.c: make mono_reflection_setup_internal_class ()
14232         callable a second time to setup a new parent class.
14233
14234 2004-06-23  Dick Porter  <dick@ximian.com>
14235
14236         * threads.c: Check for WAIT_IO_COMPLETION return values.
14237
14238 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
14239
14240         * appdomain.c: Removed the g_free on the public key token. Now copy 
14241         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
14242         * assembly.c: Added public key token string value when loading 
14243         assemblies. Fix bug #60439.
14244         * icall.c: Added missing informations (like public key) in 
14245         GetReferencedAssemblies. Fix #60519.
14246         * image.h: Changed definition for public key token from const char*
14247         public_tok_value to guchar public_key_token [17];
14248         * reflection.c: Updated for changes to public key token.
14249
14250 2004-06-22  Lluis Sanchez Gual
14251
14252         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
14253         for the field in base classes.
14254
14255 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
14256
14257         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
14258         mark headers as not supported, they are installed only for use by the
14259         debugger.
14260
14261 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
14262
14263         * *.c, *.h: avoid namespace pollution in public headers.
14264
14265 2004-06-21  Martin Baulig  <martin@ximian.com>
14266
14267         * exception.c (mono_get_exception_security): It's in
14268         "System.Security", not in "System".
14269
14270         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
14271         the exception classes.
14272
14273 2004-06-21  Martin Baulig  <martin@ximian.com>
14274
14275         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
14276         Protect the exception object from being finalized.
14277
14278 2004-06-21  Martin Baulig  <martin@ximian.com>
14279
14280         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
14281         public function.
14282
14283 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
14284
14285         * reflection.c: Load the assembly in mono_reflection_type_from_name,
14286         if it was not loaded before. Fix parts of #60439.
14287
14288 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
14289
14290         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
14291         code that was broken since Ben's change: wrappers are now
14292         dependent on the method signature only again.
14293
14294 2004-06-21  Martin Baulig  <martin@ximian.com>
14295
14296         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
14297         added interface support.
14298
14299 2004-06-21  Martin Baulig  <martin@ximian.com>
14300
14301         * class.c (mono_vtable_get_static_field_data): New public method.
14302
14303 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
14304
14305         * filewatcher.c : Windows build fix to be compliant with API changes.
14306
14307 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
14308
14309         * class.h, class.c: more accessors.
14310         * metadata.h, metadata.c: prepare for hiding MonoType and
14311         MonoMethodSignature: people should use the accessors from now on
14312         outside of the tree.
14313
14314 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
14315
14316         * *.c, *.h: more API cleanups.
14317
14318 2004-06-18  Jackson Harper  <jackson@ximian.com>
14319
14320         * assembly.c: Trace loading assemblies.
14321         * loader.c: Trace loading native libraries.
14322         * mono-config.c: Trace loading config files.
14323         
14324 2004-06-18  Dick Porter  <dick@ximian.com>
14325
14326         * locales.c: Tell ICU the lengths of strings, it can cope with
14327         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
14328
14329 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
14330
14331         * image.c: swapped name/filename;
14332
14333 2004-06-18  Martin Baulig  <martin@ximian.com>
14334
14335         * mono-debug-debugger.c (write_class): Write the parent class at
14336         the end of the header.
14337
14338 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
14339
14340         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
14341
14342 2004-06-17  Raja R Harinath  <rharinath@novell.com>
14343
14344         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
14345         (bundle_obj): New conditional define.
14346         (BUILT_SOURCES): Remove.
14347         ($(bundle_srcs)): Make parallel-make safe.
14348         (libmonoruntime_la_LIBADD): Make unconditional.
14349         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
14350         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
14351
14352 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
14353
14354         * culture-info-tables.h: It was inconsistent with the latest
14355           supp info files.
14356
14357 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
14358
14359         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
14360         be loaded.
14361
14362         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
14363         with gcc 2.95.
14364
14365 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
14366
14367         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
14368         cleaned up public header threads.h.
14369
14370 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
14371
14372         * Makefile.am, *.c, *.h: more API cleanups.
14373
14374 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
14375
14376         * Makefile.am: removed monosn from compilation.
14377         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
14378         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
14379         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
14380         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
14381         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
14382         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
14383
14384 2004-06-15  Jackson Harper  <jackson@ximian.com>
14385
14386         * assembly.c: Make locales lower case when searching the GAC for
14387         assemblies. gacutil will always make locales lowercase when
14388         installing so this effectively makes them case insensitive.
14389         
14390 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
14391
14392         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
14393         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
14394           parameter which allows to choose whether the wait can be interrupted or 
14395           not. Also added the method mono_monitor_enter(), which locks the monitor
14396           using an infinite wait and without allowing interruption.
14397           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
14398           interrupted.
14399         * object.h: Added new fields in MonoThread. suspend_event holds the event
14400           used to susped/resume the thread. synch_lock is the lock object to use for
14401           modifying the thread state.
14402         * threads.c: Use the new synch_lock object for locking, instead of "this",
14403           which can generate deadlocks.
14404           Moved thread state change in Thread.Sleep and Thread.Join from managed
14405           to unmanaged code. This avoids a deadlock when the thread was suspended
14406           just after acquiring the thread lock.
14407           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
14408           Implemented Thread.Suspend using an event instead of ThreadSuspend,
14409           which is not fully implemented in the io-layer.
14410         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
14411
14412 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
14413
14414         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
14415         threads-types.h: more API cleanups.
14416
14417 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
14418
14419         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
14420         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
14421         threadpool.c, threads.c: first pass at the exported API cleanup.
14422
14423 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
14424
14425         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
14426
14427 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14428
14429         * icall.c: added internalGetHome.
14430
14431 2004-06-14  Dick Porter  <dick@ximian.com>
14432
14433         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
14434         possible to return successfully when '.' or '..' were the only
14435         entries in a directory, but were skipped.  The MonoIOStat was not
14436         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
14437         Fixes bug 59574.
14438
14439 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
14440
14441         * reflection.c: make binaries run on .Net 1.1 by default.
14442
14443 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
14444
14445         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
14446
14447 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
14448
14449         * marshal.c: keep track of struct size with explicit layout
14450         (bug #59979).
14451
14452 2004-06-12  Martin Baulig  <martin@ximian.com>
14453
14454         * mono-debug-debugger.c: Comment out a debugging g_message().
14455
14456 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
14457
14458         * reflection.c, reflection.h: do not free custom attrs that are cached.
14459         * icall.c: use braces to make code clearer.
14460
14461 2004-06-11  Martin Baulig  <martin@ximian.com>
14462
14463         * class.h (MonoInflatedField): New type.
14464         (MonoClassField): Replaced `MonoType *generic_type' with
14465         `MonoInflatedField *generic_info'.
14466
14467         * icall.c
14468         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
14469
14470 2004-06-11  Martin Baulig  <martin@ximian.com>
14471
14472         * reflection.c (mono_image_create_method_token): Correctly encode
14473         varargs methods.
14474
14475 2004-06-11  Martin Baulig  <martin@ximian.com>
14476
14477         * metadata.c (mono_metadata_parse_method_signature): When parsing
14478         a MethodDef which has VarArgs, also set sentinelpos if we don't
14479         have any parameters.
14480
14481 2004-06-11  Martin Baulig  <martin@ximian.com>
14482
14483         * verify.c (mono_method_verify): In CEE_CALL, use
14484         mono_method_get_signature() to get the method's signature, unless
14485         we're a PInvoke method.
14486
14487 2004-06-10  Jackson Harper  <jackson@ximian.com>
14488
14489         * assembly.c: Use <path>/lib/mono/gac for the extra paths
14490         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
14491         logical name as the supplied path is just a prefix to the gac not
14492         the direct path to it.
14493         
14494 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
14495
14496         * reflection.c: make the token for a created method match
14497         the token of the MethodBuilder it was created from
14498         (IKVM requires this behaviour now).
14499
14500 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
14501
14502         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
14503         reflection.c, socket-io.c: leak fixes.
14504
14505 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
14506
14507         * icall.c: handle sentinel pos in vararg methods in position different
14508         from 0.
14509
14510 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14511
14512         * culture-info-tables.h: freshly generated.
14513
14514 2004-06-09  Martin Baulig  <martin@ximian.com>
14515
14516         * loader.c (mono_get_method_constrained): Call `mono_class_init
14517         (constrained_class)'.   
14518
14519 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
14520
14521         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
14522         any methods. Fixes #59629.
14523
14524 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14525
14526         * culture-info-tables.h: reflecting locale-builder updates.
14527
14528 2004-06-08  Dick Porter  <dick@ximian.com>
14529
14530         * object.h:
14531         * locales.c: Fixed compile warnings, including a real bug in
14532         CompareInfo_internal_compare.
14533         
14534 2004-06-08  Dick Porter  <dick@ximian.com>
14535
14536         * locales.c
14537         (ves_icall_System_Globalization_CompareInfo_internal_index):
14538         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
14539         Double-check the resuls of usearches, because ICU currently
14540         ignores most of the collator settings here.  Fixes bug 59720.
14541         
14542 2004-06-08  Dick Porter  <dick@ximian.com>
14543
14544         * locales.c
14545         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
14546         Fix memory leak and segfault-causing typo.  No idea how this one
14547         lasted so long without being noticed.
14548
14549 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
14550
14551         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
14552         any methods. Fixes #59629.
14553
14554 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14555
14556         * assembly.c:
14557         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
14558         own the critical section before). Removed dead code (that's done
14559         in the preload hook).
14560
14561         (mono_assembly_load_with_partial_name): call the preload hook.
14562
14563 2004-06-08  Martin Baulig  <martin@ximian.com>
14564
14565         * metadata.c (mono_metadata_signature_alloc): Default
14566         `sentinelpos' to -1.
14567
14568         * reflection.c (mono_image_get_array_token): Likewise.
14569
14570 2004-06-08  Martin Baulig  <martin@ximian.com>
14571
14572         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
14573
14574         * metadata.c (mono_metadata_parse_method_signature): When parsing
14575         a MethodDef which has VarArgs, set sentinelpos.
14576
14577         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
14578         `gint16' since we're using -1 for non-varargs methods.
14579
14580         * reflection.c
14581         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
14582         (method_encode_signature): Added varargs support.
14583         (method_builder_encode_signature): Likewise.
14584         (mono_image_get_varargs_method_token): New static method.
14585         (mono_image_create_method_token): New public method; this is
14586         called via an icall instead of mono_image_create_token() when
14587         calling a varargs method.       
14588
14589 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
14590
14591         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
14592
14593 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14594
14595         * culture-info-tables.h : Reflecting the latest locale-builder that
14596           fixed empty array representation ({} to {0}).
14597
14598 2004-06-07  Jackson Harper  <jackson@ximian.com>
14599
14600         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
14601         looking up extra gac paths. This allows MONO_GAC_PATH to act
14602         exactly like a prefix.
14603         
14604 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
14605
14606         * reflection.c (mono_reflection_type_from_name): Make a copy of the
14607         type name before modifying it. Fixes #59405.
14608
14609 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14610
14611         * culture-info.h: added fields for "all datetime patterns".
14612         * locales.c: (  ves_icall_System_Globalization_CultureInfo
14613           _construct_datetime_format ()): fill xxx_patterns fields.
14614         * object.h: added fields for "all datetime patterns" to
14615           MonoDateTimeFormatInfo.
14616         * culture-info-tables.h: reflecting locale-builder updates.
14617
14618 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
14619
14620         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
14621         the event has no add and remove methods. Fixes #59629.
14622
14623 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
14624
14625         * object.c: Fixed possible integer overflow when allocating large
14626         strings.
14627
14628 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
14629
14630         * culture-info-tables.h: reflecting locale-builder updates.
14631
14632 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
14633
14634         * culture-info-tables.h: reflecting locale-builder updates.
14635
14636 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
14637
14638         * culture-info-tables.h: reflecting locale-builder updates.
14639
14640 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
14641
14642         * threads.c: Made Thread.Sleep abortable.
14643
14644 2004-06-02  Martin Baulig  <martin@ximian.com>
14645
14646         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
14647
14648         * debug-mono-symfile.h: Bumped symbol file version number to 37.
14649
14650 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
14651
14652         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
14653
14654 2004-05-30  Jackson Harper  <jackson@ximian.com>
14655
14656         * reflection.c: Do not hardcode assembly versions or public key
14657         tokens anymore. All of this except the corlib section was dead
14658         code anyways.
14659         
14660 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
14661
14662         * object.c (mono_runtime_invoke_array): Automatically create boxed
14663         objects for byref valuetypes if needed. Fixes #59300.
14664         
14665         * object.c (mono_method_return_message_restore): Handle 
14666         MONO_TYPE_OBJECT as well.
14667
14668 2004-05-28  Jackson Harper  <jackson@ximian.com>
14669
14670         * reflection.c: The modified type encoding was causing build
14671         problems. Reverted for now.
14672         
14673 2004-05-28  Jackson Harper  <jackson@ximian.com>
14674
14675         * reflection.c/h: Take an assembly ref so that we dont create
14676         fully qualified names when encoding types in the same assembly as
14677         the custom attribute being emitted.
14678         * appdomain.c: Increment version number.
14679         
14680 2004-05-26  Duncan Mak  <duncan@ximian.com>
14681
14682         * icall.c
14683         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
14684         Set the full version number (major, minor, build, revision).
14685
14686 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
14687
14688         * marshal.c (emit_struct_conv): increment src/dst after blit
14689         (mono_marshal_get_managed_wrapper,
14690         mono_marshal_get_native_wrapper): make sure we have marshalling
14691         info before marshalling params (info computation affects
14692         blittable)
14693
14694         * class.c (class_compute_field_layout): correctly deal with
14695         blittable
14696         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
14697         value types (as per what windows dows by default)
14698         (mono_class_setup_mono_type): System.ValueType is blittable
14699         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
14700         blittable
14701
14702         * marshal.c (mono_marshal_load_type_info): flag types  as
14703         non-blittable if the native layout doesn't match the managed
14704         layout
14705
14706 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14707
14708         * appdomain.c: don't add stuff in the private search path that is
14709         above the application base. If application base is not set, there's
14710         no private search path.
14711
14712 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
14713
14714         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
14715         byref struct arguments in native->managed marshalling.
14716
14717 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
14718
14719         * marshal.c (mono_marshal_get_runtime_invoke): correctly
14720         cache methods using signature (special case for methods
14721         that are value type or string class)
14722         
14723         * image.c (mono_image_close): clean up allocated GSList's
14724         in runtime_invoke_cache.
14725
14726 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14727
14728         * mono-config.c: set the correct path for mono_cfg_dir on windows when
14729         there's no MONO_CFG_DIR environment variable defined.
14730
14731 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14732
14733         * threads.c: windows version must be >= 0x0500 to include OpenThread.
14734
14735 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
14736
14737         * threadpool.c: Really wait for 500ms after the async call, even if the wait
14738           is interrumped.
14739         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
14740           before waiting for it, and call CloseHandle after the wait to unref it.
14741           This will make sure that handles are not disposed too early.
14742
14743 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14744
14745         * appdomain.c:
14746         * appdomain.h:
14747         * icall.c: removed
14748         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
14749         needed now.
14750
14751         * object.c: se the application_base only for the domain that runs
14752         Main. Fixes bug #59216,
14753
14754 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14755
14756         * appdomain.c:
14757         * object.c: only the domain in which Main is run have
14758         SetupInformation.ConfigurationFile set, so moved a few lines from
14759         appdomain.c to object.c.
14760
14761 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14762
14763         * appdomain.c: we tried to load [name].(dll|exe), but according
14764         to bug #57710, we must also try [culture]/[name].(dll|exe) and
14765         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
14766         There's a test case attached to bug #58922.
14767
14768 2004-05-27  Dick Porter  <dick@ximian.com>
14769
14770         * icall.c:
14771         * file-io.c: Implemented icalls for locking and unlocking regions
14772         in a file.
14773         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
14774         FALSE on error (fixes both compiler warning and real bug.)
14775
14776 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
14777
14778         * culture-info-tables.h: reflecting locale-builder updates.
14779
14780           (Added missing ChangeLog entry for 05/26)
14781
14782 2004-05-27  Jackson Harper  <jackson@ximian.com>
14783
14784         * locales.c: Fix some cut and paste errors.
14785         
14786 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14787
14788         * mono-config.c: set the correct path for config. directory on windows.
14789
14790 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14791
14792         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
14793           on win32.
14794
14795 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
14796
14797         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
14798         from pinvoke functions.
14799         
14800         * marshal.c (mono_ftnptr_to_delegate): Implement this.
14801
14802 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14803
14804         * culture-info-tables.h: reflecting locale-builder updates.
14805
14806 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
14807
14808         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
14809         #59086.
14810
14811 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
14812
14813         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
14814         * icall.c: Modified icalls for RNG.
14815         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
14816         Windows (CryptoAPI).
14817
14818 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
14819
14820         * locales.c: Fix build.
14821
14822 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14823
14824         * culture-info-tables.h: reflecting locale-builder updates.
14825
14826 2004-05-25  Jackson Harper  <jackson@ximian.com>
14827
14828         * locales.c: When creating the current culture use the $LANGs
14829         specific culture. So DateTimeFormat and NumberFormat entries are created.
14830         
14831 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
14832
14833         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
14834         a char array as parameter.
14835
14836 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
14837
14838         * image.c: In mono_image_open(), always use an absolute path name to
14839           look for already loaded images.
14840
14841 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
14842
14843         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
14844         missing in the windows build (like older cygwin include files).
14845
14846 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
14847
14848         * icall.c: Fixed check for possible integer overflow in Buffer_
14849         BlockCopy icall. Replaced comments style // by /* */.
14850
14851 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
14852
14853         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
14854         
14855         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
14856         check after MONO_VTADDR. Fixes pinvoke2.exe.
14857
14858         * marshal.h marshal.c metadata.h: Add beginnings of support for
14859         ftnptr -> delegate marshalling.
14860
14861 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
14862
14863         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
14864         * threads.c: Fix warnings.
14865
14866 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
14867
14868         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
14869         * icall.c: Registered icalls for Suspend and Resume.
14870         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
14871           Thread.Abort.
14872         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
14873         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
14874         * process.c: Use WaitForSingleObjectEx.
14875         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
14876           checkpoints.
14877         * threads.c, threads.h: Make use of new Ex wait methods. Improved
14878           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
14879           for Suspend and Resume. Added new mono_thread_stop, used for stoping
14880           background threads. Added basic support for Abort in Windows.
14881           Start new threads using a managed delegate invoke wrapper. This wrapper
14882           has an interruption checkpoint that is needed since an interruption
14883           can be requested before the thread leaves the unmanaged code that starts 
14884           the thread.
14885         * marshal.c: Added interruption checkpoint after every native call, and
14886           also before managed calls for wrappers called from unmanaged code to
14887           go into managed code.
14888         * object.h: Added new field in MonoThread to keep track of interruption
14889           requests.
14890
14891 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
14892
14893         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
14894         calls.
14895
14896 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14897
14898         * appdomain.c:
14899         * assembly.c:
14900         * gc.c:
14901         * locales.c:
14902         * mono-config.c:
14903         * rand.c: getenv -> g_getenv (windows!)
14904
14905         * process.c: complete_path is also used on non-windows platforms.
14906
14907 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14908
14909         * icall.c: new signature for Process_Start.
14910
14911         * process.[ch]: new signature for Process_Start. If we're on windows
14912         and UseShellExecute is false, we have to search for the program by
14913         ourselves if we don't get a full path.
14914
14915 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
14916
14917         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
14918         marshalling and call CleanUpNativeData if needed. Fixes #58646.
14919
14920 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14921
14922         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
14923         Fixes bug #58373.
14924
14925 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14926
14927         * process.c: use double quotes to quote program name and arguments on
14928         windows. Fixes bug #58575.
14929
14930 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14931
14932         * file-io.c: don't return "." and ".." when using windows Find*File.
14933
14934 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
14935
14936         * marshal.c: Don't pass wrappers to message init because method 
14937         addressed used to lookup metadata. part of remoting[2|3] fix.
14938
14939 2004-05-15  Jackson Harper  <jackson@ximian.com>
14940
14941         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
14942         path is essentially the same as MONO_PATH except that it points to
14943         GACs instead of lib directories.
14944         * loader.h: The user gac is gone so we dont need function to
14945         enable/disable it.
14946         * mono-config.c: user gac option is now gone.
14947         
14948 2004-05-15  Jackson Harper  <jackson@ximian.com>
14949
14950         * culture-info.h: Make defines more consistent, add calendar data
14951         to the culture info table.
14952         * culture-info-tables.h: Add basic calendar data. Basically
14953         everyone gets default gregorian until all the data is
14954         updated.
14955         * locales.c: Use the new consistent defines. Set calendar data for
14956         culture info objects.
14957         * object.h: add a field for calendar data to CultureInfo
14958         
14959 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
14960
14961         * image.c: image->runtime_invoke_cache is keyed on signatures now.
14962         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
14963         a signature.
14964         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
14965         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
14966         an extra param that is the pointer of the method to invoke. The IL for
14967         the invoke method is no longer specific to the method, but to the
14968         signature of the method. Thus, we can share the same code for multiple
14969         methods. This reduces the number of methods that have to be compiled.
14970
14971 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
14972
14973         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
14974
14975         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14976
14977         * icall.c: Optimize Buffer.BlockCopy.
14978
14979 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14980
14981         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
14982         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
14983         quote). Changed them to "MMMM yyyy".
14984
14985 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
14986
14987         * rand.c
14988         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
14989
14990 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
14991
14992         * reflection.h: Updated after changes to managed structures.
14993
14994         * appdomain.c: Bump corlib version.
14995
14996 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14997
14998         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
14999         windows.
15000
15001 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15002
15003         * Makefile.am: link to ../os/libmonoos.la on windows.
15004
15005         * assembly.c:
15006                 -If MONO_DEBUG, warn about non-existing directories in
15007                 MONO_PATH.
15008                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
15009                 compile time variable.
15010                 -Removed init_default_path and call mono_set_rootdir from
15011                 libmonoos.a instead (windows only).
15012
15013         * assembly.h: declare mono_assembly_getrootdir().
15014
15015         * domain.c:
15016         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
15017
15018         * loader.c: s/getenv/g_getenv/
15019
15020 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
15021
15022         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
15023
15024         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
15025
15026         * metadata.h: Add new marshalling conversions.
15027
15028         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
15029         function.
15030
15031         * reflection.c (mono_reflection_get_type): Lookup the type in all
15032         modules of a multi-module assembly. Fixes #58291.
15033
15034 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
15035
15036         * threads.c: Before aborting a background, set the StopRequested
15037         state.  This avoids throwing the Abort exception.
15038         In mono_thread_manage, don't continue with the shutdown until all
15039         aborted threads have actually stopped.
15040
15041 2004-05-10  Jackson Harper  <jackson@ximian.com>
15042
15043         * locales.c: Remove the modifier from culture names.
15044         
15045 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15046
15047         * Makefile.am: monosn is not installed any more. It has been deprecated
15048         in favor of sn.
15049
15050 2004-05-07  Jackson Harper  <jackson@ximian.com>
15051
15052         * locales.c
15053         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
15054         Fix array construction, add bailout if the length is 0.
15055
15056 2004-05-07  Dick Porter  <dick@ximian.com>
15057
15058         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
15059         machine doesn't have a DNS entry.  Patch by Urs Muff
15060         (umuff@quark.com), fixes bug 57928.
15061
15062 2004-05-06  Jackson Harper  <jackson@ximian.com>
15063
15064         * reflection.c: Handle null PublicTokens properly. alloc mem for
15065         assembly names culture so we dont crash when freeing it.
15066         
15067 2004-05-06  Jackson Harper  <jackson@ximian.com>
15068
15069         * assembly.c: Check the usergac when loading with partial names.
15070         
15071 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
15072
15073         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
15074         does nothing for now (not required for Linux/Windows) but the class
15075         library can call it (and a newer or modified runtime could need it).
15076         * icall.c: Registred icall.
15077
15078 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15079
15080         * loader.c: prints a message on module loading error we set MONO_DEBUG
15081         environment variable.
15082
15083 2004-05-05  Jackson Harper  <jackson@ximian.com>
15084
15085         * appdomain.c: Handle PublicKeyToken=null properly.
15086         
15087 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
15088
15089         * environment.c|h: Added icall ves_icall_System_Environment_
15090         GetOSVersionString to get the current OS version as a string.
15091         * icall.c: Registred icall.
15092
15093 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
15094
15095         * object.c: in mono_object_get_virtual_method(), take into account that
15096         non-virtual methods don't have a slot in the vtable. Check needed when
15097         the object is a proxy.
15098
15099 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
15100
15101         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
15102         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
15103
15104         * object.c (mono_class_compute_gc_descriptor): Fix warning.
15105
15106         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
15107         passed when a valuetype is expected.
15108
15109         * object.c (mono_unhandled_exception): Only set the exit code if the
15110         exception happens in the main thread. Fixes thread5.exe.
15111
15112         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
15113         invalid names. Fixes #58047.
15114
15115 2004-05-03  Jackson Harper  <jackson@ximian.com>
15116
15117         * assembly.c: This line was committed accidently and is unneeded.
15118         
15119 2004-05-03  Jackson Harper  <jackson@ximian.com>
15120
15121         * icall.c: Add new icall for Assembly::LoadWithPartialName
15122         * assembly.c/.h: new function that probes the GAC to load partial
15123         assembly names by Paolo Molaro.
15124         
15125 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15126
15127         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
15128         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
15129         (type_get_fully_qualified_name): Added PublicKeyToken when building a
15130         full type name.
15131
15132 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15133
15134         * appdomain.c: fixed check for 'neutral' culture and removed warning.
15135         * reflection.c: fix bug when parsing a full type name and Version is not
15136         the last thing in the string.
15137
15138 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
15139
15140         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
15141         crashes when it is freed.
15142
15143 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15144
15145         * assembly.c: print the compat warning to stderr.
15146
15147 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
15148
15149         * assembly.c (mono_assembly_load_references): Add a compatibility
15150         hack to run old applications that might be still referencing the
15151         3300-based assemblies, only do this for System.xxx.
15152
15153 2004-05-01  Jackson Harper  <jackson@ximian.com>
15154
15155         * appdomain.c: If the culture is neutral we set it to "".
15156         
15157 2004-04-29  Jackson Harper  <jackson@ximian.com>
15158
15159         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
15160
15161 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
15162  
15163         * string-icalls.c: added low overhead function for copying chars
15164         * icall.c: added needed icall for the above function
15165  
15166 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15167
15168         * icall.c: fix return value of get_global_assembly_cache.  Implemented
15169         Environment.GetLogicalDrives.
15170
15171 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
15172
15173         * rand.c: try and talk to egd or prngd
15174         for random bytes if opening devices fail.
15175
15176 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
15177
15178         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
15179         alignment for the type using the native alignment of its members 
15180         instead of using klass->min_align.
15181
15182         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
15183
15184 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15185
15186         * file-io.c:
15187         * socket-io.c: added check for sys/aio.h.
15188
15189 2004-04-28  Dick Porter  <dick@ximian.com>
15190
15191         * threads.c: Don't abort a thread thats already aborting, when
15192         terminating everything.
15193
15194 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15195
15196         * icall.c: added 2 new async calls for Socket.
15197
15198         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
15199         IO on *nix systems.
15200
15201         * threadpool.c: removed unused variable.
15202
15203 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
15204
15205         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
15206
15207 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
15208
15209         * locales.c: put back string_invariant_tolower () and
15210         string_invariant_toupper ().
15211
15212 2004-04-26 David Waite <mass@akuma.org>
15213
15214         * file-io.h:
15215         * socket-io.h:
15216         * threads.h:
15217         * unicode.h: remove comma from end of enumeration declarations
15218
15219 2004-04-26 David Waite <mass@akuma.org>
15220
15221         * debug-mono-symfile.h:
15222         * decimal.c:
15223         * mono_debug.h:
15224         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
15225
15226
15227 2004-04-26  Jackson Harper  <jackson@ximian.com>
15228
15229         * appdomain.c: Increment version number.
15230         
15231 2004-04-26  Jackson Harper  <jackson@ximian.com>
15232
15233         * appdomain.c: Set assembly references public token value when
15234         PublicKeyToken is specified, not the hash_value. Free public token
15235         values when free assembly name data. Previously the public key
15236         token was hex decoded, however we are using hex encoded public key
15237         tokens, so this is not neccasary.
15238         * assembly.c: Lookup assemblies in the gac if their public token
15239         value is set. Add function to allow enabling user gac
15240         lookups. Specify whether or not the assembly was loaded from the
15241         GAC. Compare full assembly names when checking the cache for
15242         assemblies (Temporarily disabled see comment in code). Remove
15243         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
15244         specifies trace-loader they get extra info to stdout on the
15245         loading of assemblies.
15246         * image.h: Add a field for an assembly references public token
15247         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
15248         whether an assembly has been loaded from the GAC.
15249         * image.c: Remove a corlib -> mscorlib name mapping.
15250         * loader.h: Add function to enable/disable the user gac.
15251         * mono-config.c: Check if the usergac is enabled in the config
15252         file.
15253         * icall.c: New icall to determine whether or not an assembly has
15254         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
15255         * tabldefs.h: Add constant for assemblyref flag that specifies a
15256         full public key is used instead of a public token.
15257         * reflection.c: Remove mscorlib -> corlib mappings. Set
15258         PublicTokenValue instead of hash value. This value is a hex
15259         string so it does not need to be expanded.
15260
15261 2004-04-26  Martin Baulig  <martin@ximian.com>
15262
15263         * mono-debug-debugger.c (mono_debugger_initialize): Set
15264         `mono_debugger_initialized' before calling mono_debug_lock().
15265
15266 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
15267
15268         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
15269           InternalToUpper/InternalToLower.
15270         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
15271           removed invariant culture shortcut.  This is now done in managed code.
15272         * locales.c: (string_invariant_toupper/tolower) removed.
15273
15274 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15275
15276         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
15277         Added Poll internal call.
15278
15279         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
15280         call for Poll. Select was too heavy for polling a single socket.
15281
15282         * threadpool.[ch]: added mono_threadpool_cleanup.
15283         * threads.c: use it. Don't use Thread_Abort on windows.
15284
15285 2004-04-23  Martin Baulig  <martin@ximian.com>
15286
15287         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
15288
15289 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
15290
15291         * icall.c: Registred new icalls for key pair protection and added an
15292         icall for Environment.GetFolderPath on Windows.
15293         * security.c|h: Added new icalls for key pair protection.
15294
15295 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15296
15297         * socket-io.c: don't display the non-supported family warning for known
15298         families. Now this is not displayed on windows when checking support
15299         for IPv4/IPv6.
15300
15301 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15302
15303         * class.c: don't display the layout warning for static fields.
15304
15305 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
15306
15307         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
15308         * locales.c, locales.h: Added new icalls for culture-specific
15309         Char.ToLower and Char.ToUpper.
15310
15311 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15312
15313         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
15314         by David Waite.
15315
15316 2004-04-20  Martin Baulig  <martin@ximian.com>
15317
15318         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
15319         of the type name before passing it to mono_reflection_type_from_name().
15320
15321 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
15322
15323         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
15324         encodings here. Fixes #56965.
15325
15326 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
15327
15328         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
15329         fix test on strstr result not that I can see anything that
15330         relies on the result.
15331
15332 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
15333
15334         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
15335         Fixes #57081.
15336
15337         * marshal.c (mono_marshal_get_string_encoding): New helper function.
15338
15339         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
15340         function to determine which marshalling to use for strings. Fixes
15341         #56965.
15342
15343         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
15344
15345         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
15346
15347 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
15348
15349         * icall.c: #include mono-config.h
15350
15351 2004-04-15  Jackson Harper  <jackson@ximian.com>
15352
15353         * culture-info-tables.h: Fix date formats for en-US culture.
15354         
15355 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
15356
15357         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
15358         ThreadPool.SetMinThreads.
15359         * threadpool.c: Implemented ThreadPool.GetMinThreads and
15360         ThreadPool.SetMinThreads.
15361
15362 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
15363
15364         * mono-config.c: also load the .config file in the directory
15365         where the assembly was found.
15366
15367 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
15368
15369         * assembly.c: load per-assembly config files.
15370         * icall.c: decrapified code to get the config dir and moved to
15371         mono-config.c.
15372         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
15373         per-assembly config files. When doing a dll map lookup give precedence
15374         to the per-assembly data.
15375
15376 2004-04-14  Martin Baulig  <martin@ximian.com>
15377
15378         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
15379         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
15380         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
15381
15382         * mono-debugger-debugger.c: While the debugger is locked, remember
15383         whether the symbol tables have changes and send one single
15384         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
15385
15386 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
15387
15388         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
15389
15390         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
15391         function.
15392
15393         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
15394         account when marshalling string arrays. Fixes #56965.
15395
15396 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
15397
15398         * icall.c: Add new icalls mapping for security.
15399         * security.c|h: Add internal calls for WindowsIdentity,
15400         WindowsImpersonationContext and WindowsPrincipal.
15401
15402 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
15403
15404         * class.c: Added comment to ensure the System.MonoDummy class
15405         is removed when no longer necessary
15406
15407 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
15408
15409         * appdomain.c: Pass arguments to the bootstraping exceptions to
15410         minimize JITed methods at boot
15411
15412         * metadata.c (mono_exception_from_name_two_strings): Allow for the
15413         second string to be null.
15414
15415         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
15416         Change the protocol to minimize the JIT methods at startup.  Now
15417         it Returns the internal codepage, if the value of "int_code_page"
15418         is 1 at entry, and we can not compute a suitable code page
15419         number, returns the code page as a string.
15420
15421 2004-04-13  Jackson Harper  <jackson@ximian.com>
15422
15423         * culture-info-tables.h: Fix number of decimal digits for all
15424         english locales.
15425
15426 2004-04-13  Jackson Harper  <jackson@ximian.com>
15427
15428         * icall.c: Clairfy out of sync error message. It is not always
15429         your corlib that is out of sync.
15430
15431 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
15432
15433         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
15434         properties when only the set accessor is overriden. Fixes #55874.
15435
15436 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
15437
15438         * assembly.c (mono_assembly_load_references): Make this thread safe.
15439         Fixes #56327.
15440
15441 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
15442
15443         * monosn.c: Add missing initialization calls.
15444
15445 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
15446
15447         * locales.c:
15448         ves_icall_System_Globalization_CultureInfo_construct_number_format
15449         Fix g_assert so it compiles on fussier compilers re int/ptr
15450         mismatch
15451
15452 2004-04-08  Dick Porter  <dick@ximian.com>
15453
15454         * socket-io.h:
15455         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
15456         53992.  Also rearrange the code so that the internal calls return
15457         an error value and exceptions are thrown from managed code.
15458
15459         * icall.c: Add type info to the socket icalls.
15460
15461 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15462
15463         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
15464         owes me a beer.
15465
15466 2004-04-07  Martin Baulig  <martin@ximian.com>
15467
15468         * class.c (mono_class_from_generic_parameter): Don't default
15469         `klass->parent' to `mono_defaults.object_type'.
15470
15471 2004-04-07  Martin Baulig  <martin@ximian.com>
15472
15473         * reflection.c (mono_reflection_initialize_generic_parameter): Set
15474         `param->pklass->reflection_info'.       
15475
15476 2004-04-07  Jackson Harper  <jackson@ximian.com>
15477
15478         * culture-info-tables.h: Fix date separator symbol.
15479         
15480 2004-04-07  Martin Baulig  <martin@ximian.com>
15481
15482         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
15483         from System.Type to System.MonoType.
15484
15485 2004-04-07  Martin Baulig  <martin@ximian.com>
15486
15487         * reflection.h
15488         (MonoReflectionGenericParam): Added `has_reference_type' and
15489         `has_value_type' fields.
15490
15491         * reflection.c (mono_image_get_generic_param_info): Encode the
15492         correct flags if we have the `class' or `struct' constraint.
15493
15494 2004-04-07  Martin Baulig  <martin@ximian.com>
15495
15496         * reflection.h
15497         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
15498
15499 2004-04-07  Jackson Harper  <jackson@ximian.com>
15500
15501         * appdomain.c: Revert extra patches, just wanted to bump the
15502         version number.
15503         
15504 2004-04-07  Jackson Harper  <jackson@ximian.com>
15505
15506         * Makefile.am: Add culture-info private headers.
15507         * icall.c: Add new icalls for contructing locales.
15508         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
15509         * locales.h: Declare new culture info construction methods.
15510         * object.h: Add new fields used to avoid the CultureMap to
15511         MonoCultureInfo.
15512         * culture-info.h: Definition of structs used in the culture info
15513         tables.
15514         * culture-info-tables.h: Autogenerated tables that contain culture
15515         info data. This file was generated with the locale-builder tool.
15516         * appdomain.c: Incement corlib version number.
15517         
15518 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
15519
15520         * appdomain.c: (mono_runtime_init) move mono_thread_init
15521         to before mono_object_new calls so critical sections
15522         are initialized before use.
15523
15524 2004-04-07  Martin Baulig  <martin@ximian.com>
15525
15526         * icall.c
15527         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
15528         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
15529         (ves_icall_MonoGenericParam_initialize): Removed.
15530         (monogenericparam_icalls): Removed.
15531         (generictypeparambuilder_icalls): Added new table for
15532         System.Reflection.Emit.GenericTypeParameterBuilder.
15533
15534         * reflection.c
15535         (mono_reflection_define_generic_parameter): Removed.
15536         (mono_reflection_initialize_generic_parameter): This is now called
15537         from GenericTypeParameterBuilder's .ctor.
15538
15539 2004-04-06  Martin Baulig  <martin@ximian.com>
15540
15541         * class.c (mono_class_init): Don't inflate nested classes in a
15542         generic instance.
15543         (mono_type_get_name_recurse): Include the generic arguments for
15544         generic instances and generic type declarations.
15545         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
15546         (_mono_class_get_instantiation_name): Removed.
15547         (mono_class_create_generic): Always use `gklass->name' as our name.
15548
15549         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
15550
15551         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
15552         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
15553         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
15554         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
15555         closed generic methods here.
15556
15557         * reflection.c
15558         (mono_reflection_generic_inst_get_nested_types): Removed.
15559         (inflate_mono_method): Copy the generic parameters from the
15560         MonoMethodHeader into out MonoGenericMethod.
15561
15562 2004-04-06  Martin Baulig  <martin@ximian.com>
15563
15564         * row-indexes.h
15565         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
15566
15567         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
15568
15569         * reflection.c (build_compressed_metadata): If we have any entries
15570         in the GenericParam, MethodSpec or GenericParamConstraint tables,
15571         set the header version to 1.1.
15572
15573 2004-04-06  Martin Baulig  <martin@ximian.com>
15574
15575         * class.c (mono_class_init): If we're a generic instance,
15576         initialize our nested classes, too.
15577         (_mono_class_get_instantiation_name): Deal with the new `!%d'
15578         suffix. 
15579
15580 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15581
15582         * process.c: quote the argument passed to the shell on windows.
15583
15584 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
15585
15586         * threads.c (mono_alloc_special_static_data): Allow this to be
15587         called during startup.
15588
15589 2004-04-02  Martin Baulig  <martin@ximian.com>
15590
15591         * icall.c
15592         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
15593
15594 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
15595
15596         * icall.c: Fix build.
15597
15598 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
15599
15600         * Makefile.am: Added security.c|h.
15601         * icall.c: Added icall for get_UserName;
15602         * security.c: New file for security related icalls. Added function
15603         get_UserName for System.Environment (fix #56144).
15604         * security.h: New. Header file for security.c
15605
15606 2004-04-02  Dick Porter  <dick@ximian.com>
15607
15608         * icall.c: Deleted the icalls that were obsoleted some time ago
15609         by the ICU string code, and which were mixed into the icall
15610         rearranging.  Fixes bug 55969.
15611
15612         * string-icalls.h: 
15613         * string-icalls.c: Deleted the code that those icalls reference.
15614
15615 2004-04-01  Martin Baulig  <martin@ximian.com>
15616
15617         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
15618
15619         * class.c (mono_class_from_generic_parameter): Don't set 
15620         TYPE_ATTRIBUTE_INTERFACE.
15621         (my_mono_class_from_generic_parameter): Likewise.
15622
15623 2004-04-01  Martin Baulig  <martin@ximian.com>
15624
15625         * loader.c (find_method): Added an optional `MonoClass *ic'
15626         argument to search in a specific interface.
15627         (mono_get_method_constrained): New public function.
15628
15629 2004-04-01  Martin Baulig  <martin@ximian.com>
15630
15631         * reflection.c (mono_image_get_generic_field_token): Use the
15632         `handleref' cache here.
15633
15634 2004-04-01  Martin Baulig  <martin@ximian.com>
15635
15636         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
15637
15638         * reflection.c (create_generic_typespec): Use the `typespec' hash
15639         here, not the `typeref' one.    
15640
15641 2004-04-01  Martin Baulig  <martin@ximian.com>
15642
15643         * class.c (mono_class_inflate_generic_type): Moved the
15644         functionality into a new static inflate_generic_type() which
15645         returns NULL if it didn't do anything.  Only increment the
15646         `mono_stats.inflated_type_count' if we actually inflated
15647         something.
15648         (mono_class_get_full): Check the classes type to see whether we
15649         need to inflate it; also inflate MONO_TYPE_(M)VAR.
15650
15651 2004-04-01  Jackson Harper  <jackson@ximian.com>
15652
15653         * reflection.c: Set culture for assembly references.
15654         
15655 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
15656
15657         * reflection.[ch], icall.[ch], Fix support for pinning variables.
15658
15659 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15660
15661         * assembly.c:
15662         (do_mono_assembly_open): the critical section also covers
15663         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
15664
15665 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15666
15667         * threads.c:
15668         (mono_manage_threads): abort the background threads when finishing.
15669         Fixes bug #47232.
15670
15671 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15672
15673         * gc.c: only close the done_event handle if there was no timeout.
15674         C-ified comments.
15675
15676 2004-03-30  Martin Baulig  <martin@ximian.com>
15677
15678         * icall.c (icall_entries): It's called "System.Activator", not
15679         "System.Activation".    
15680
15681 2004-03-30  Martin Baulig  <martin@ximian.com>
15682
15683         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
15684         (mono_class_create_from_typespec): Likewise.
15685
15686 2004-03-30  Martin Baulig  <martin@ximian.com>
15687
15688         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
15689         `has_ctor_constraint' and `initialized'.
15690
15691 2004-03-30  Martin Baulig  <martin@ximian.com>
15692
15693         * reflection.c (encode_new_constraint): New static function to add
15694         the constructor constraint attribute to a type parameter.
15695         (encode_constraints): Call encode_new_constraint() if necessary.
15696
15697         * reflection.h
15698         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
15699
15700         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
15701         
15702 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
15703
15704         * reflection.c, icall.c: add support for pinning variables. 
15705
15706 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
15707
15708         * marshal.c (mono_marshal_get_managed_wrapper):
15709         init bool local with zero rather than null.
15710
15711 2004-03-29  Martin Baulig  <martin@ximian.com>
15712
15713         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
15714         the "official" behavior here.
15715         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
15716
15717 2004-03-29  Martin Baulig  <martin@ximian.com>
15718
15719         * icall.c: Reflect latest API changes.
15720
15721 2004-03-29  Martin Baulig  <martin@ximian.com>
15722
15723         * loader.c (mono_get_method_from_token): Also call
15724         mono_metadata_load_generic_params () for abstract and interface
15725         methods; replace the type arguments in the method signature with
15726         the ones which are loaded from the metadata.
15727
15728 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
15729
15730         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
15731         of the lock is not the current thread. MS.NET don't do it, in spite of
15732         what the documentation says. See bug #56157.
15733
15734 2004-03-28  Martin Baulig  <martin@ximian.com>
15735
15736         * class.c (mono_class_init): Don't call init_properties() and
15737         init_events() for generic instances; set `prop->parent' when
15738         inflating properties.
15739
15740         * reflection.c (mono_generic_inst_get_object): Call
15741         `mono_class_init (ginst->klass)'.
15742         (mono_type_get_object): Only create a MonoGenericInst if your
15743         generic type is a TypeBuilder.
15744         (do_mono_reflection_bind_generic_parameters): Only set
15745         `ginst->is_dynamic' if our generic type is a TypeBuilder.
15746
15747 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
15748
15749         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
15750         Fixes #56091.
15751
15752 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15753
15754         * icall.c: added Kill_internal icall.
15755         * process.[ch]: added Kill_internal icall.
15756
15757 2004-03-25  Martin Baulig  <martin@ximian.com>
15758
15759         * class.h (MonoStats): Added `generic_instance_count',
15760         `inflated_method_count', `inflated_type_count' and
15761         `generics_metadata_size'.       
15762
15763 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15764
15765         * reflection.c: no warnings now.
15766
15767 2004-03-25  Martin Baulig  <martin@ximian.com>
15768
15769         * class.c (mono_class_get_full): New public function; does a
15770         mono_class_get(), but also takes a `MonoGenericContext *'.
15771
15772         * loader.c (mono_field_from_memberref): Renamed to
15773         `field_from_memberref', made static and added `MonoGenericContext *'
15774         argument.
15775         (mono_field_from_token): Added `MonoGenericInst *' argument.
15776         (method_from_memberef): Likewise.
15777         (mono_get_method_from_token): Likewise.
15778         (mono_get_method_full): New public function; does a
15779         mono_get_method(), but also takes a `MonoGenericContext *'.
15780
15781         * verify.c (mono_method_verify): Get the method's generic context
15782         and pass it to mono_field_from_token(), mono_get_method_full() and
15783         mono_class_get_full().
15784
15785 2004-03-25  Martin Baulig  <martin@ximian.com>
15786
15787         * class.c (mono_class_inflate_generic_type): Take a
15788         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
15789         `MonoGenericMethod *'.
15790
15791 2004-03-25  Martin Baulig  <martin@ximian.com>
15792
15793         * loader.h (MonoMethodInflated): Store the MonoGenericContext
15794         instead of the MonoGenericMethod here.
15795
15796 2004-03-25  Martin Baulig  <martin@ximian.com>
15797
15798         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
15799         each time we create a new MonoGenericInst, we also create a new
15800         context which points back to us.
15801
15802         * class.c (inflate_method): Use `ginst->context' instead of
15803         creating a new context.
15804
15805         * loader.c (method_from_memberref): Use
15806         `klass->generic_inst->context' instead of creating a new context.
15807
15808 2004-03-25  Martin Baulig  <martin@ximian.com>
15809
15810         * class.h (MonoGenericContext): New struct.
15811         (MonoGenericMethod): Removed `generic_inst'.
15812
15813         * class.c (mono_class_inflate_generic_method): Take a
15814         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
15815
15816 2004-03-25  Martin Baulig  <martin@ximian.com>
15817
15818         * loader.h (MonoMethodInflated): New typedef.
15819
15820         * metadata.h (MonoMethodSignature): Removed `gen_method', make
15821         `generic_param_count' consume just 30 bits, added `is_inflated'
15822         and `has_type_parameters' flags (one bit each).
15823
15824         * class.c (mono_class_inflate_generic_method): Create a
15825         MonoMethodInflated instead of a MonoMethodNormal and set
15826         `is_inflated' in the method signature.
15827
15828         * class.h (MonoGenericMethod): Removed `generic_method'.
15829
15830 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
15831
15832         * image.c: Make sure the name of a MonoImage is always an absolute path.
15833           This fixes bug #54415.
15834
15835 2004-03-24  Martin Baulig  <martin@ximian.com>
15836
15837         * class.c (mono_class_setup_vtable): If we're a generic instance,
15838         use our generic type's vtable size.
15839
15840 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
15841
15842         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
15843         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
15844         problems.
15845
15846 2004-03-23  Martin Baulig  <martin@ximian.com>
15847
15848         * class.h (MonoDynamicGenericInst): Added `int count_events' and
15849         `MonoEvent *events'.
15850
15851         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
15852         (typebuilder_icalls): Added "get_event_info"; calls
15853         mono_reflection_event_builder_get_event_info(). 
15854
15855         * reflection.c (mono_reflection_generic_inst_initialize): Added
15856         `MonoArray *events'.
15857         (mono_reflection_event_builder_get_event_info): New function.
15858
15859 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
15860
15861         * object.h: add mono_type_initialization_init
15862
15863         * object.c (mono_runtime_class_init): 
15864         implement class constructor synchronization rules
15865         to cope with threading issues.  
15866         add mono_type_initialization_init
15867
15868         * appdomain.c (mono_runtime_init): call 
15869         mono_type_initialization_init
15870
15871         * class.h: removing initializing field from MonoVTable
15872
15873 2004-03-23  Martin Baulig  <martin@ximian.com>
15874
15875         * class.c (my_mono_class_from_generic_parameter): Use
15876         `param->name' if it's not NULL. 
15877
15878 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
15879
15880         * class.c: do not insert non-virtual methods in the vtable.
15881         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
15882         that means the method is non-virtual. This never would have
15883         happened before.
15884
15885 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
15886
15887         * profiler.c: Added lock for accessing coverage_hash.
15888
15889 2004-03-22  Martin Baulig  <martin@ximian.com>
15890
15891         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
15892         `method->method->signature->generic_param_count != 0' to make it
15893         work for interface methods.
15894
15895 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15896
15897         * process.c: quote the string passed to the shell using g_shell_quote.
15898
15899 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15900
15901         * threads.c:
15902         (mono_threads_manage): don't remove the finalizer thread and self
15903         from the threads hash table so that mono_thread_manage can be called
15904         more than once.
15905
15906 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15907
15908         * process.c: quote the arguments when UseShellExecute is true. Fixes
15909         bug #55790.
15910
15911 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15912
15913         * threads.c: set mono_thread_detach as a cleanup routine for every
15914         thread. This way it's always executed upon thread termination, either
15915         aborted or finished normally. No more xsp hangs!
15916
15917 2004-03-17  Martin Baulig  <martin@ximian.com>
15918
15919         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
15920         `int count_nested' and a `MonoType **nested'.
15921
15922         * reflection.c (mono_reflection_bind_generic_parameters): Moved
15923         most of the functionality into a new static
15924         do_mono_reflection_bind_generic_parameters() and don't take a
15925         `MonoType *nested_in' argument any more.  Don't compute nested
15926         types here.
15927         (mono_reflection_generic_inst_get_nested_types): New public method
15928         to get nested types.
15929
15930         * class.c (mono_class_create_generic): Set `klass->nested_in' if
15931         we're a nested class.
15932
15933         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
15934         mono_reflection_generic_inst_get_nested_types() to compute the
15935         nested types.
15936
15937 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
15938
15939         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
15940         descriptive error message under windows.
15941         
15942 2004-03-17  Martin Baulig  <martin@ximian.com>
15943
15944         * class.c (dup_type): Added `const MonoType *original' argument;
15945         copy the attrs from the original type.
15946
15947 2004-03-17  Martin Baulig  <martin@ximian.com>
15948
15949         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
15950         `m->generic_inst_cache' here.
15951
15952 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
15953
15954         * exception.h exception.c: Add stack_overflow_exception.
15955
15956 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15957
15958         * threadpool.c:
15959         (overlapped_callback): call SetEvent *after* invoking the callback.
15960         No need to call CloseHandle.
15961
15962 2004-03-16  Martin Baulig  <martin@ximian.com>
15963
15964         * reflection.c (mono_image_get_fieldref_token): Take a
15965         `MonoReflectionField *' instead of a `MonoClassField *' and a
15966         `MonoClass *'; store the `MonoReflectionField *' in the hash.
15967
15968 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15969
15970         * appdomain.c: don't add the culture to the filename we're looking for
15971         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
15972
15973 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15974
15975         * locales.c: don't ignore symbols when doing case insensitive compares.
15976         Thanks Dick! Fixes bug #54046.
15977
15978         * threads.c: surround 'threads' usage with enter/leave in
15979         mono_thread_manage.
15980
15981 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
15982
15983         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
15984         implicitly marshalled as [Out]. Fixes #55450.
15985
15986         (mono_marshal_get_runtime_invoke): Zero out the result if there is
15987         an exception.
15988
15989 2004-03-16  Martin Baulig  <martin@ximian.com>
15990
15991         * class.c (mono_class_from_generic_parameter): Use the actual
15992         parameter name. 
15993
15994 2004-03-16  Martin Baulig  <martin@ximian.com>
15995
15996         * reflection.c (type_get_signature_size): New static function.
15997         Compues the size of the type in a method signature.
15998         (method_get_signature_size): New static function; calls
15999         type_get_signature_size() to compute the actual size of the
16000         method's signature.
16001         (method_encode_signature): Use method_get_signature_size() to get
16002         the signature's size rather than using `nparams * 10'.
16003
16004 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16005
16006         * file-io.h: define here WapiOverlapped on windows. I don't want the
16007         regular OVERLAPPED one.
16008
16009         * file-io.c:
16010         * threadpool.c: somehow, BindIoCompletionCallback is not found.
16011         Disabling AIO on windows.
16012
16013 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16014
16015         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
16016         bug #55385.
16017
16018 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16019
16020         * appdomain.c: upgraded corlib version.
16021
16022         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
16023         and BeginWrite. Allow opening files for asynchrnous operations.
16024
16025         * file-io.h: new struct that maps FileStreamAsyncResult.
16026         * icall.c: added new icalls.
16027         * process.[ch]: support setting child process environment variables
16028         and use the SHELL or COMSPEC when UseShellExecute is true.
16029
16030         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
16031         callback for async. IO is here and also BindHandle.
16032
16033         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
16034         from here.
16035
16036 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
16037
16038         * reflection.c (create_custom_attr): Allow len == 0.
16039
16040         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
16041         computation on big-endian machines.
16042
16043 2004-03-13  Martin Baulig  <martin@ximian.com>
16044
16045         * class.h (MonoGenericInst): Added `int count_ifaces'.
16046
16047         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
16048         `ginst->count_ifaces' instead `klass->interface_count' since we
16049         may get called before the vtable is created.
16050
16051         * loader.c (mono_method_get_param_names): If we're a generic
16052         instance, return and don't initialize the class.
16053
16054         * reflection.c (mono_reflection_setup_generic_class): Don't call
16055         ensure_runtime_vtable().
16056         (mono_reflection_bind_generic_parameters): Set
16057         `ginst->count_ifaces'.
16058
16059 2004-03-11  Jackson Harper <jackson@ximian.com>
16060
16061         * icall.c:
16062         * unicode.c:
16063         * unicode.h: Remove unused System.Char icalls.
16064         
16065 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
16066
16067         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
16068         code when we P/Invoke the first library in Windows.Forms, instead
16069         of when we first open the assembly.
16070
16071         * assembly.c: Drop the lookup from here.
16072
16073 2004-03-10  Martin Baulig  <martin@ximian.com>
16074
16075         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
16076         class for properties, fields and events.  Finally fixes #54945.
16077
16078 2004-03-10  Martin Baulig  <martin@ximian.com>
16079
16080         * metadata.c (mono_metadata_class_equal): New static function;
16081         checks whether two generic instances or two generic parameters are
16082         equal.
16083         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
16084         compare classes.        
16085
16086 2004-03-10  Martin Baulig  <martin@ximian.com>
16087
16088         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
16089
16090         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
16091         argument and write it into the `reflection_info' field.
16092
16093         * icall.c
16094         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
16095         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
16096
16097 2004-03-09  Jackson Harper  <jackson@ximian.com>
16098
16099         * char-conversions.h: use 8 bits for numeric data its all we need
16100         * icall.c: numeric data is only 8 bits now.
16101
16102 2004-03-09  Martin Baulig  <martin@ximian.com>
16103
16104         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
16105
16106         * class.c (init_properties, init_events): Initialize the new
16107         `parent' field.
16108
16109         * reflection.c (typebuilder_setup_properties): Likewise.
16110         (typebuilder_setup_events): Likewise.
16111
16112         * reflection.h (MonoEventInfo): Replaced `parent with
16113         `declaring_type' and `reflected_type'.
16114
16115         * icall.c (ves_icall_get_property_info): Distinguish between
16116         declaring and reflected type.
16117         (ves_icall_get_event_info): Likewise.
16118
16119 2004-03-09  Martin Baulig  <martin@ximian.com>
16120
16121         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
16122         (ves_icall_Type_GetField): Correctly set field->klass.
16123
16124 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
16125
16126         * loader.h: Fix warning.
16127
16128 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
16129
16130         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
16131         library routine if present.  Notice that it will still continue
16132         executing even if its missing, for those working on the Gtk#
16133         edition of Windows.Forms.
16134
16135         * assembly.c (do_mono_assembly_open): If loading the
16136         System.Windows.Forms call mono_loader_wini_init.
16137
16138 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
16139
16140         * class.h: Added MonoRemoteClass struct.
16141         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
16142         function for MonoStrings.
16143         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
16144         Added internal call for getting the proxy type.
16145         * marshal.c: Get the type of transparent proxies from its remote_class.
16146         Added methods that generate the IL for type checks and casts:
16147         mono_marshal_get_isinst, mono_marshal_get_castclass, 
16148         mono_marshal_get_proxy_cancast.
16149         * marshal.h: Declaration of the previous new methods.
16150         * object.c: Added new moethods for creating and updating MonoRemoteClass
16151         instances: mono_remote_class, mono_upgrade_remote_class, 
16152         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
16153         * verify.c: FIx transparent_proxy_fields layout.
16154         * appdomain.c: Bump corlib version.
16155
16156 2004-03-04  Jackson Harper  <jackson@ximian.com>
16157
16158         * icall.c: Add icall to access char conversion tables.
16159         * char-conversions.h: Character conversion tables.
16160         * Makefile.am: Add char-conversions.h private header file.
16161         
16162 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
16163
16164         * appdomain.c (unload_thread_main): Increase unloading timeout to
16165         10 sec as a temporary workaround for Nant problems.
16166
16167 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
16168
16169         * gc.c: Add checks for GC_enable and GC_disable.
16170
16171         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
16172         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
16173         (bug #54988).
16174         
16175 2004-02-27  Martin Baulig  <martin@ximian.com>
16176
16177         * reflection.c (mono_reflection_bind_generic_parameters): Take a
16178         `MonoReflectionType *' instead of a `MonoType *'.
16179
16180 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
16181
16182         * gc.c (run_finalize): Avoid finalizing the object representing the
16183         finalizer thread.
16184         (finalizer_thread): Fix warning.
16185
16186 2004-02-25  Martin Baulig  <martin@ximian.com>
16187
16188         * class.c (_mono_class_get_instantiation_name): Added `int offset'
16189         argument for nested types.
16190         (mono_class_create_generic): Added support for nested generictypes.
16191
16192         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
16193         `GList *nested'.
16194
16195         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
16196
16197         * reflection.c (method_encode_signature): Increase the minimum
16198         value of `size' from 10 to 11.
16199         (mono_reflection_bind_generic_parameters): Take `int type_argc'
16200         and `MonoType **types' arguments instead of the `MonoArray
16201         *types'; added `MonoType *nested_in'.  Recursively instantiate
16202         nested classes. 
16203
16204 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
16205
16206         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
16207         stack_overflow_ex members which are used by exception handling.
16208
16209         * appdomain.c (mono_runtime_init): Initialize the new members.
16210
16211         * gc.c (mono_gc_enable): New helper function.
16212         * gc.c (mono_gc_disable): New helper function.
16213
16214 2004-02-23  Martin Baulig  <martin@ximian.com>
16215
16216         * icall.c: I must have been really stupid - make it actually work
16217         this time ;-)
16218
16219 2004-02-23  Martin Baulig  <martin@ximian.com>
16220
16221         * loader.c (method_from_memberref): Only inflate the method if
16222         it's in another klass.
16223
16224 2004-02-23  Martin Baulig  <martin@ximian.com>
16225
16226         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
16227         (mono_class_init): If we're a generic instance and an interface,
16228         compute `class->interface_id'; also create `class->interfaces'
16229         here and inflate them.
16230
16231         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
16232         `ginst->is_open'.
16233         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
16234
16235         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
16236
16237 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
16238
16239         * reflection.c (method_encode_code): Improved the error message
16240         generated by the exception.
16241
16242 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16243
16244         * icall.c: Martin did not do what he said in the ChangeLog for
16245         2004-02-18, but put back the changes for properties and events.
16246         Commenting those changes out again and adding comment to bug #54518.
16247         
16248         * process.c: removed warning.
16249
16250 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
16251
16252         * marshal.c (emit_struct_conv): Print an error message instead of
16253         asserting when a type does not have the StructLayout attribute.
16254
16255 2004-02-20  Martin Baulig  <martin@ximian.com>
16256
16257         * reflection.c (mono_type_get_object): Also use the cache for
16258         generic instances.
16259         (mono_reflection_bind_generic_parameters): Always compute
16260         `ginst->ifaces'.        
16261
16262 2004-02-20  Martin Baulig  <martin@ximian.com>
16263
16264         * class.h (MonoGenericMethod): Removed `klass'.
16265
16266         * class.c (mono_class_inflate_generic_method): Added `MonoClass
16267         *klass' argument.
16268
16269 2004-02-20  Martin Baulig  <martin@ximian.com>
16270
16271         * reflection.c (method_encode_methodspec): Actually use the
16272         uninflated signature for the memberref.
16273
16274 2004-02-20  Martin Baulig  <martin@ximian.com>
16275
16276         * class.h (MonoGenericMethod): Removed `declaring'.
16277
16278         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
16279         is NULL, compute it here.
16280
16281 2004-02-20  Martin Baulig  <martin@ximian.com>
16282
16283         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
16284
16285         * metadata.c (mono_metadata_generic_inst_hash): New method.
16286         (mono_metadata_generic_inst_equal): New method.
16287
16288         * reflection.c (mono_reflection_bind_generic_parameters): Use the
16289         `klass->image->generic_inst_cache' cache to avoid creating
16290         duplicate MonoGenericInst's.
16291
16292         * class.c (mono_class_inflate_generic_type): Use the cache.
16293
16294 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
16295
16296         * object.c: fixed gc descriptor calculation for embedded valuetypes.
16297
16298 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16299
16300         * icall.c: added Socket.WSAIoctl icall.
16301
16302         * socket-io.[ch]: implemented
16303         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
16304
16305 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
16306
16307         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
16308
16309 2004-02-18  Urs C Muff  <umuff@quark.com>
16310
16311         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
16312         this work on PPC and other big-endian architectures.
16313
16314         * debug-mono-symfile.h: Prepended the names of all the `guint32'
16315         fields with an underscore to make sure they're only accessed by
16316         the read32() macro.
16317
16318 2004-02-18  Martin Baulig  <martin@ximian.com>
16319
16320         * icall.c: Put the klass->refclass changes back for methods and
16321         fields, but not for properties and events.  We're currently not
16322         distinguishing between DeclaringType and ReflectedType for
16323         properties and events, that's what caused the regressions.
16324
16325 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16326
16327         * object.c:
16328         (mono_async_result_new): the handle can be NULL.
16329
16330         * threadpool.c: Use an event instead of a semaphore, don't initialize
16331         it until needed. This saves quite a few semaphores from being created
16332         when using the threadpool.
16333
16334 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
16335
16336         * object.c (mono_string_is_interned_lookup): Fix interning of long
16337         strings. Fixes #54473.
16338
16339         * domain.c (ldstr_equal): Optimize if the two strings are equal.
16340
16341         * icall.c: Revert the klass->refclass changes since they introduce
16342         regressions (bug #54518).
16343
16344 2004-02-18  Martin Baulig  <martin@ximian.com>
16345
16346         * class.c (mono_class_init): If we're a generic instance and don't
16347         come from a TypeBuilder, inflate our members here.
16348         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
16349         (mono_class_create_generic): New public method.
16350         (mono_class_initialize_generic): Removed.
16351         (get_instantiation_name): Renamed to
16352         _mono_class_get_instantiation_name() and made it public.
16353
16354 2004-02-18  Martin Baulig  <martin@ximian.com>
16355
16356         * class.c (mono_class_inflate_generic_type): Clear the new
16357         instance's `nginst->klass' when inflating a generic instance.
16358         (mono_class_is_subclass_of): Added (basic) support for generic
16359         instances.
16360
16361 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
16362
16363         * appdomain.h, domain.c: use a MonoCodeManager instead of a
16364         MonoMempool to hold compiled native code.
16365
16366 2004-02-17  Martin Baulig  <martin@ximian.com>
16367
16368         * class.h (MonoDynamicGenericInst): Added `count_properties' and
16369         `properties'.
16370
16371         * reflection.c (mono_reflection_generic_inst_initialize): Added
16372         `MonoArray *properties' argument.
16373
16374         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
16375
16376 2004-02-17  Martin Baulig  <martin@ximian.com>
16377
16378         * icall.c (ves_icall_Type_GetFields): Renamed to
16379         ves_icall_Type_GetFields_internal() and added a
16380         `MonoReflectionType *rtype' argument; pass it to
16381         mono_field_get_object() to set the field's "reflected" type.
16382         (ves_icall_Type_GetConstructors): Likewise.
16383         (ves_icall_Type_GetEvents): Likewise.
16384         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
16385         argument; pass it to mono_method_get_object() to set the method's
16386         "reflected" type.       
16387
16388 2004-02-17  Martin Baulig  <martin@ximian.com>
16389
16390         * class.h (MonoDynamicGenericInst): New type.
16391         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
16392
16393         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
16394         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
16395         (ves_icall_MonoGenericInst_GetFields): New interncall.
16396
16397         * class.c (mono_class_from_generic): Don't call
16398         mono_class_initialize_generic() if this is a dynamic instance;
16399         ie. it's being created from a TypeBuilder.
16400         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
16401         `class->byval_arg.type'.
16402
16403         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
16404         to `inflate_method' and made static.
16405         (mono_reflection_inflate_field): Removed.
16406         (mono_reflection_generic_inst_initialize): New public method.
16407
16408         * reflection.h (MonoReflectionGenericInst): Removed `methods',
16409         `ctors' and `fields'; added `initialized'.
16410
16411 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
16412
16413         * debug-helpers.c (mono_method_full_name): Fix output for empty
16414         namespaces.
16415
16416 2004-02-12  Martin Baulig  <martin@ximian.com>
16417
16418         * class.h (MonoClassField): Added `MonoType *generic_type'.
16419
16420         * reflection.c (mono_image_get_fieldref_token): Added support for
16421         instantiated generic types.
16422         (field_encode_inflated_field): Removed.
16423         (mono_image_get_inflated_field_token): Removed.
16424         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
16425
16426         * reflection.h (MonoReflectionInflatedField): Removed.
16427
16428 2004-02-12  Martin Baulig  <martin@ximian.com>
16429
16430         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
16431         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
16432
16433         * reflection.c (mono_image_get_methodspec_token): Take a
16434         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
16435         (mono_image_create_token): Check whether we have a
16436         `method->signature->gen_method' and call
16437         mono_image_get_methodspec_token() if appropriate.
16438         (inflated_method_get_object): Removed.
16439         (mono_reflection_bind_generic_method_parameters): Return a
16440         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
16441         (mono_reflection_inflate_method_or_ctor): Likewise.
16442
16443         * reflection.h (MonoReflectionInflatedMethod): Removed.
16444
16445 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
16446
16447         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
16448         for custom valuetype marshalling.
16449
16450         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
16451
16452 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16453
16454         * icall.c: fixed WSAGetLastError_internal name.
16455
16456 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
16457
16458         * threads.c (mono_thread_attach): Allow this to be called multiple
16459         times for a thread.
16460         
16461         * threads.c (build_wait_tids): Do not wait for ourselves.
16462
16463         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
16464         appdomain list is empty.
16465
16466         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
16467         memory returned by mono_string_builder_to_utf16, since it points into
16468         managed memory. Thanks to Bernie Solomon for noticing this.
16469
16470         * icall.c: Add AppDomainSetup icalls.
16471
16472         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
16473
16474         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
16475         types.
16476
16477         * reflection.c (reflection_methodbuilder_to_mono_method): Save
16478         custom attributes to the method_aux struct. Also fix array indexes etc.
16479
16480         * loader.c (mono_method_get_param_names): Make dynamic case work again.
16481         
16482 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
16483
16484         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
16485         (both static and runtime) and reduce startup time.
16486
16487 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
16488
16489         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
16490         AsAny marshalling conversion instead of crashing.
16491
16492         * marshal.c: Fix warnings.
16493
16494 2004-02-09  Martin Baulig  <martin@ximian.com>
16495
16496         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
16497
16498         * reflection.h (MonoReflectionInflatedMethod): Removed the
16499         `declaring' field, it's now in the unmanaged MonoGenericMethod.
16500
16501         * reflection.c (method_encode_methodspec): Removed the `method'
16502         argument; we get it from `gmethod->declaring'.
16503         (inflated_method_get_object): Removed the `declaring' argument.
16504
16505 2004-02-09  Martin Baulig  <martin@ximian.com>
16506
16507         * class.h (MonoGenericMethod): New type.
16508         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
16509         `generic_method'.
16510
16511         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
16512         a `MonoGenericMethod *gen_method' one.
16513
16514         * class.c (mono_class_inflate_generic_type): Take an additional
16515         `MonoGenericMethod * argument.  This is only non-NULL if we're
16516         inflating types for a generic method.   
16517         (mono_class_inflate_generic_signature): Renamed to
16518         inflate_generic_signature() and made static; take a
16519         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
16520         (inflate_generic_header): Take a `MonoGenericMethod *' argument
16521         instead of a `MonoGenericInst *' one.
16522         (mono_class_inflate_generic_method): Likewise.
16523
16524         * reflection.c (encode_generic_method_sig): Take a
16525         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
16526         (method_encode_methodspec): Likewise.
16527         (inflated_method_get_object): Likewise. 
16528
16529         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
16530         field with a `MonoGenericMethod *gmethod' one.  
16531
16532 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
16533
16534         * class.h (mono_class_has_parent): add parens to expansion
16535         so you can ! this.
16536
16537 2004-02-08  Martin Baulig  <martin@ximian.com>
16538
16539         * image.h (MonoImage): Removed `generics_cache'.
16540
16541         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
16542         instead of a `MonoType *' argument; removed the `inflate_methods'
16543         argument.  Don't inflate methods here.
16544
16545         * loader.c (find_method): If it's a generic instance, call
16546         mono_class_init() on the `sclass->generic_inst->generic_type'.
16547
16548         * metadata.c (mono_type_size): Make this work on uninitialized
16549         generic instances; call it on the `ginst->generic_type's class.
16550
16551         * reflection.c (mono_reflection_bind_generic_parameters): Call
16552         mono_class_from_generic() to create the `ginst->klass'.
16553
16554 2004-02-08  Martin Baulig  <martin@ximian.com>
16555
16556         * class.h (MonoClass): Changed type of `generic_inst' from
16557         `MonoType *' to `MonoGenericInst *'.
16558
16559 2004-02-08  Martin Baulig  <martin@ximian.com>
16560
16561         * icall.c (ves_icall_Type_BindGenericParameters): Just call
16562         mono_type_get_object(), this is now creating a `MonoGenericInst'
16563         for MONO_TYPE_GENERICINST.
16564         (ves_icall_MonoGenericInst_GetParentType): Likewise.
16565         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
16566
16567         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
16568         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
16569         (inflated_method_get_object): Added `MonoClass *refclass' argument.
16570         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
16571         and reflected type.
16572
16573         * reflection.h (MonoReflectionInflatedMethod): Removed
16574         `declaring_type' and `reflected_type'.
16575
16576 2004-02-08  Martin Baulig  <martin@ximian.com>
16577
16578         * class.h (MonoGenericInst): Added `MonoType *parent' and
16579         `MonoType **ifaces'.
16580
16581         * reflection.h (MonoReflectionGenericInst): Removed `klass',
16582         `parent' and `interfaces'.
16583
16584         * reflection.c (mono_reflection_bind_generic_parameters): Take a
16585         `MonoType *' argument and return a `MonoType *'.
16586
16587         * icall.c
16588         (ves_icall_MonoGenericInst_GetParentType): New interncall.
16589         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
16590
16591 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
16592
16593         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
16594         valuetype marshalling.
16595
16596 2004-02-06  Martin Baulig  <martin@ximian.com>
16597
16598         * class.c
16599         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
16600         (my_mono_class_from_generic_parameter): Likewise.
16601
16602 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
16603
16604         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
16605         contents of the symbol files lazily.
16606
16607         * object.h (MonoThread): Add 'name' and 'name_len' fields.
16608
16609         * threads.h threads.c icall.c: New icalls for getting and setting the
16610         threads name.
16611
16612 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
16613
16614         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
16615         Raise an exception when the domain is not found.
16616
16617 2004-02-03  Martin Baulig  <martin@ximian.com>
16618
16619         * reflection.c (mono_image_get_methodspec_token): Use the
16620         uninflated signature; fixes gen-33.
16621
16622 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
16623
16624         * gc.c threads.c: Make the finalizer thread a normal managed thread so
16625         the finalizer code can use thread functionality.
16626
16627         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
16628         the finalizer thread.
16629
16630         * threads.c: Make some functions more robust.
16631
16632         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
16633
16634         * metadata.h: Add new marshalling conventions.
16635
16636         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
16637         stringbuilder marshalling. Fixes #53700.
16638
16639         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
16640
16641         * reflection.c (mono_image_get_type_info): Save declarative security
16642         info.
16643
16644         * reflection.c (mono_image_get_field_info): Handle uninitialized 
16645         unmanaged fields as well.
16646
16647         * appdomain.c: Bump corlib version.
16648
16649 2004-02-01  Martin Baulig  <martin@ximian.com>
16650
16651         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
16652         method type arguments.  
16653
16654 2004-01-30  Duncan Mak  <duncan@ximian.com>
16655
16656         * marshal.h: Add prototype for
16657         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
16658         and
16659         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
16660         fix the build.
16661
16662 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
16663
16664         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
16665         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
16666
16667 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
16668
16669         * marshal.c (mono_marshal_get_native_wrapper): Add support for
16670         custom marshalling of valuetypes.
16671
16672         * marshal.c: Fix some warnings.
16673
16674 2004-01-29  Martin Baulig  <martin@ximian.com>
16675
16676         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
16677         for generic method parameters.
16678
16679         * reflection.c (method_encode_methodspec): Write the uninflated
16680         signature into the methodspec table.
16681         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
16682         is always the uninflated method.
16683         (reflection_methodbuilder_to_mono_method): Copy the generic
16684         parameters from the MethodBuilder into `header->gen_params'.
16685
16686 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
16687
16688         * class.c (mono_class_from_generic_parameter): Fix warning.
16689
16690 2004-01-27  Martin Baulig  <martin@ximian.com>
16691
16692         * class.c (mono_class_from_generic_parameter): Don't create
16693         `klass->methods' here.  
16694
16695 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
16696
16697         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
16698         extension since it does not work with libraries named lib<FOO>.dll.so.
16699
16700 2004-01-25  Martin Baulig  <martin@ximian.com>
16701
16702         * class.c (mono_class_inflate_generic_type): Added support for
16703         MONO_TYPE_GENERICINST.
16704
16705         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
16706         inflate methods on open constructed types.      
16707
16708 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16709
16710         * object.c: fire ProcessExit event in the root AppDomain after running
16711         Main. Fixes bug #53299.
16712
16713 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
16714
16715         * socket-io.c: include the new socket-wrappers.h header.
16716         Use the wrappers instead of the unix socket functions to make the code
16717         more clear.
16718
16719 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
16720
16721         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
16722
16723         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
16724         Fixes #22532.
16725
16726 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
16727
16728         * reflection.c (mono_image_create_pefile): Handle the case when the
16729         entry point is not a MethodBuilder.
16730
16731         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
16732         field to ReflectionMethod since it is not allways a builder.
16733
16734         * reflection.c (type_get_fully_qualified_name): New helper function to
16735         return the fully qualified name of a type.
16736
16737         * reflection.c (encode_marshal_blob): Always emit the fully qualified
16738         type name for custom marshallers.
16739
16740         * reflection.c (mono_marshal_spec_from_builder): Ditto.
16741
16742         * class.c (mono_class_setup_vtable): If a parent class already 
16743         implements an interface, use the implementing methods from that class.
16744         Fixes #53148.
16745
16746 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16747
16748         * threadpool.c: just return instead of ExitThread to allow for thread
16749         clean up earlier.
16750
16751 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
16752
16753         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
16754         when closing resource modules.
16755
16756         * reflection.c (mono_image_create_pefile): Handle the case when the
16757         entry point is not a MethodBuilder.
16758
16759         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
16760         field to ReflectionMethod since it is not allways a builder.
16761
16762 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
16763
16764         * marshal.c (mono_marshal_get_managed_wrapper): 
16765         mono_marshal_alloc takes native int so CONV_I
16766         the arg for 64bits.
16767
16768 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
16769
16770         * reflection.c (fixup_cattrs): New function to fixup the methoddef
16771         tokens in the cattr table. Fixes #53108.
16772
16773 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16774
16775         * loader.c: don't trim ".dll" before looking up in the config file.
16776         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
16777
16778 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
16779
16780         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
16781         Return the module which contains the resource as well.
16782         (ves_icall_System_Reflection_Module_Close): New icall.
16783
16784         * appdomain.c: Bump corlib version number.
16785
16786         * image.c (mono_image_addref): New public function.
16787
16788         * assembly.c: Call mono_image_addref.
16789
16790         * reflection.c (mono_module_get_object): Increase reference count of 
16791         the image.
16792
16793         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
16794         Fixes #22532.
16795
16796         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
16797         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
16798         proper exceptions on DllImport problems.
16799
16800 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
16801
16802         * class.c, metadata.c: eliminate CSIZE macro.
16803
16804 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
16805
16806         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
16807         * object.h: Added async_callback field in MonoAsyncResult.
16808         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
16809         * verify.c: Added async_callback in MonoAsyncResult layout.
16810
16811 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
16812
16813         * reflection.c (mono_reflection_get_custom_attrs): Add support
16814         for Modules.
16815
16816 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
16817
16818         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
16819         marshalling.
16820         (mono_marshal_method_from_wrapper): Add null pointer check.
16821
16822 2004-01-16  Martin Baulig  <martin@ximian.com>
16823
16824         * debug-mono-symfile.h: Set version number to 36 and reflect
16825         latest symbol writer changes.
16826
16827 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
16828
16829         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
16830         multi-dimensional arrays.
16831         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
16832         (mono_class_from_mono_type): Use bounded_array_class_get.
16833         
16834         * class.c (mono_bounded_array_class_get): New function which takes
16835         a 'bounded' bool argument to distinguish vectors from one dimensional
16836         arrays.
16837
16838         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
16839         bounded_array_class_get if the array has bounds.
16840
16841         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
16842         Search modules loaded using AssemblyBuilder:AddModule as well.
16843
16844 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16845
16846         * appdomain.c: increased corlib version.
16847         * filewatcher.c: removed g_print.
16848         * icall.c:
16849         (get_property_info): only allocate what is actually requested.
16850         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
16851
16852 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16853
16854         * Makefile.am: added filewatcher.[ch]
16855         * filewatcher.[ch]: FileSystemWatcher runtime support.
16856         * icall.c: added new FSW icalls.
16857
16858 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
16859
16860         * string-icalls.c: fix stringbuilder regression as suggested by
16861         Iain McCoy <iain@mccoy.id.au>.
16862
16863 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
16864
16865         * process.c (process_read_stringtable_block): Recognize '007f' as
16866         a language neutral stringtable block.
16867
16868 2004-01-12  Patrik Torstensson
16869
16870         * object.h (MonoStringBuilder) : Changed layout to support our
16871         new stringbuilder class.
16872         * marshal.c: Change marshalling to support the new layout of 
16873         string builder.
16874         * appdomain.c: increased version number because new layout of
16875         string builder.
16876
16877 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
16878
16879         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
16880         assembly name as an string instead of an AssemblyName, since it is
16881         easier to extract info from it.
16882
16883         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
16884         the culture subdirectories too. Fixes #52231.
16885
16886 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16887
16888         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
16889         It takes 2 new parameters with an optional name for the method to look
16890         for and case ignoring info.
16891
16892         * threadpool.c: removed unused variable.
16893
16894 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16895
16896         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
16897         It takes 2 new parameters with an optional name for the property to look
16898         for and case ignoring info.
16899         Fixes bug #52753.
16900
16901 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
16902
16903         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
16904         Fix #52451.
16905
16906 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16907
16908         * appdomain.c:
16909         * assembly.c: escape the uri before passing it to g_filename_from_uri.
16910         Fixes bug #52630.
16911
16912 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
16913
16914         * reflection.c: Add support for more than one unmanaged resource.
16915
16916         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
16917         in field->def_value, as done in all other cases.
16918
16919         * reflection.c (mono_reflection_get_custom_attrs): Add support for
16920         TypeBuilders.
16921
16922         * reflection.c (mono_reflection_create_runtime_class): Remove 
16923         errorneous assignment to klass->element_class, since it is already
16924         done in mono_reflection_setup_internal_class.
16925
16926 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16927
16928         * gc.c: added missing LeaveCriticalSection.
16929         * icall.c: indented a couple of lines.
16930         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
16931         if we call EndInvoke inside a callback. Fixes bug #52601.
16932
16933 2004-01-07  Martin Baulig  <martin@ximian.com>
16934
16935         * mono-debug-debugger.h
16936         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
16937
16938 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
16939
16940         * appdomain.c: Use messages in NotImplementedException.
16941
16942         * exception.c (mono_get_exception_not_implemented): Now this takes
16943         a message argument.
16944
16945         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
16946         exception instead of g_asserting an aborting when something is not
16947         implemented.
16948
16949         Add some inline docs.
16950
16951 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
16952
16953         * reflection.h: Update after changes to object layout.
16954
16955         * reflection.c: Implement saving of unmanaged aka win32 resources.
16956
16957         * appdomain.c: Bump version number.
16958
16959         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
16960         Handle missing domains gracefully.
16961
16962 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
16963
16964         * file-io.c : On Windows, there are much more invalid_path_chars.
16965
16966 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
16967
16968         * class.h, object.c: prepare for GetType () speedup.
16969
16970 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
16971
16972         * profiler.c: workaround for --profile null reference exception on
16973           cygwin. Patch by Patrik Torstensson.
16974
16975 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
16976
16977         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
16978         make work for unaligned access.
16979
16980 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
16981
16982         * class.c: small cleanup (class->fields [i] -> field).
16983         * image.c: check address of metadata is valid.
16984
16985 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
16986
16987         * assembly.h assembly.c (mono_assembly_loaded): New public function to
16988         search the list of loaded assemblies.
16989
16990         * reflection.c (mono_reflection_type_from_name): Use 
16991         mono_assembly_loaded instead of mono_image_loaded.
16992
16993         * reflection.c: Fix warnings.
16994
16995 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
16996
16997         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
16998         is dynamic. This is needed since an assembly can contain both dynamic and
16999         non-dynamic images.
17000
17001         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
17002         assembly->dynamic.
17003
17004         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
17005
17006         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
17007         to store modules loaded using AddModule.
17008
17009         * reflection.c (mono_image_fill_file_table): Generalize this so it works
17010         on Modules.
17011
17012         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
17013
17014         * reflection.c (mono_image_fill_export_table_from_module): New function to
17015         fill out the EXPORTEDTYPES table from a module.
17016
17017         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
17018         into a separate function. Also handle loaded non-dynamic modules.
17019
17020         * reflection.c (mono_image_basic_init): Fix memory allocation.
17021
17022         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17023
17024         * assembly.c (mono_assembly_load_references): Make this public.
17025
17026 2003-12-19  Martin Baulig  <martin@ximian.com>
17027
17028         * class.c (mono_class_initialize_generic): Made this static, take
17029         a `MonoGenericInst *' instead of a `MonoClass *'.
17030         (mono_class_from_generic): Call mono_class_initialize_generic()
17031         unless we're already initialized or being called from
17032         do_mono_metadata_parse_generic_inst().
17033
17034         * class.h (MonoGenericInst): Added `initialized' and
17035         `init_pending' flags.
17036
17037         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
17038         `mono_class_init (gklass)' or mono_class_initialize_generic()
17039         here; set `generic_inst->init_pending' while parsing the
17040         `type_argv'.
17041
17042 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
17043
17044         * locales.c: include string.h for memxxx prototypes
17045
17046 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
17047
17048         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
17049         constructor when accessing literal fields.
17050
17051 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
17052
17053         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17054
17055         * reflection.c (assembly_add_resource_manifest): New function to fill
17056         the MANIFESTRESOURCE table.
17057
17058         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
17059
17060         * reflection.h: Update to changes in class layout.
17061
17062         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
17063         Reenable call to mono_runtime_is_shutting_down ().
17064
17065         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
17066         determine if the runtime is shutting down.
17067
17068 2003-12-16  Jackson Harper <jackson@ximian.com>
17069
17070         * icall.c: comment out call to mono_runtime_is_shutting_down to
17071         fix build.
17072         
17073 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
17074
17075         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
17076         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
17077
17078 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
17079
17080         * reflection.c: move definition of swap_with_size
17081         to before its first call
17082
17083 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
17084
17085         * appdomain.c (mono_runtime_is_shutting_down): New public function.
17086
17087         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
17088         icall.
17089
17090         * object.c: Fix warnings.
17091
17092         * icall.c (ves_icall_Type_Get...): Only consider inherited static
17093         members if FlattenHierarchy is set.
17094
17095         * reflection.c (mono_image_add_decl_security): New function to emit
17096         declarative security.
17097
17098         * reflection.h reflection.c: Add support for declarative security.
17099
17100         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
17101         
17102 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
17103
17104         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
17105         
17106         * appdomain.c verify.c: Moved corlib version checking into its own
17107         function in appdomain.c since it needs to create vtables etc.
17108
17109 2003-12-13  Patrik Torstensson <p@rxc.se>
17110
17111         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
17112         instead of unwrapped server.
17113
17114 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
17115
17116         * verify.c (check_corlib): Fix field index.
17117
17118 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
17119
17120         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
17121         GetGacPath icall.
17122
17123 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
17124
17125         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
17126         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
17127         cope with sizeof(size_t) != sizeof(guint32).
17128
17129 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17130
17131         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
17132         in case of failure.
17133
17134 2003-12-10  Mark Crichton <crichton@gimp.org>
17135
17136         * icall.c: removed the GetNonZeroBytes.  We now handle this case
17137         in managed code.
17138
17139         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
17140
17141 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
17142
17143         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
17144         marked as deleted.
17145
17146 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
17147
17148         * verify.c (check_corlib): Handle the case when the version field is 
17149         initialized by a static constructor.
17150
17151 2003-12-08  Patrik Torstensson  <p@rxc.se>
17152
17153     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
17154
17155 2003-12-08  Martin Baulig  <martin@ximian.com>
17156
17157         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
17158         a MonoReflectionGenericParameter, also take the parameter index
17159         and name as arguments.
17160         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
17161         (ves_icall_MonoGenericParam_initialize): New interncall.
17162         (ves_icall_Type_make_byref_type): New interncall.
17163
17164         * reflection.h (MonoReflectionGenericParam): Derive from
17165         MonoReflectionType, not just from MonoObject.  Added `refobj' and
17166         `index' fields.
17167
17168         * reflection.c (mono_reflection_define_generic_parameter): Create
17169         and return a new MonoReflectionGenericParam; don't initialize the
17170         constraints here.
17171         (mono_reflection_initialize_generic_parameter): New public method;
17172         initializes the constraints and creates the `param->pklass'.
17173
17174 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
17175
17176         * reflection.h reflection.c: Use the new fields 'num_types', 
17177         'num_fields' and 'num_methods' to track the number of types etc.
17178
17179         * verify.c (check_corlib): Check corlib version number.
17180
17181 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
17182
17183         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
17184         function works on all methods.
17185
17186 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
17187
17188         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
17189         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
17190         the custom_type_info flag of the transparent proxy.
17191         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
17192         objects that supports IRemotingTypeInfo.
17193         * object.h: Added custom_type_info field in transparent proxy.
17194
17195 2003-12-06  Martin Baulig  <martin@ximian.com>
17196
17197         * class.c (mono_class_create_from_generic): Removed.
17198         (mono_class_from_generic): Check `ginst->klass' before doing
17199         anything else.  This is important to fully support "recursive"
17200         generic types.
17201
17202         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
17203         empty `generic_inst->klass' before doing anything else.
17204
17205 2003-12-06  Dick Porter  <dick@ximian.com>
17206
17207         * verify.c: 
17208         * object.h:
17209         * icall.c:
17210         * locales.c: Use C structs to access class fields.  Don't do a
17211         conversion between MonoString and UChar because both are
17212         platform-endian UTF-16.  Compare now takes startindex and count
17213         parameters.  Add a char overload for IndexOf.  Speed up the
17214         invariant string IndexOf.
17215
17216 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
17217
17218         * Makefile.am (monosn_LDADD): Fix parallel build.
17219
17220 2003-12-04  Martin Baulig  <martin@ximian.com>
17221
17222         * icall.c
17223         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
17224         (ves_icall_Type_make_array_type): New interncall.       
17225
17226 2003-12-04  Martin Baulig  <martin@ximian.com>
17227
17228         * locales.c: also change it in the !HAVE_ICU case.
17229
17230 2003-12-04  Dick Porter  <dick@ximian.com>
17231
17232         * icall.c:
17233         * locales.c: construct_compareinfo is now in CompareInfo, not
17234         CultureInfo.
17235
17236 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
17237
17238         * image.c (mono_image_load_file_for_image): Cache loaded images in the
17239         image->files array.
17240
17241         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
17242         table as well.
17243
17244         * assembly.c (mono_assembly_load_references): Only load references
17245         once.
17246
17247         * class.c (mono_class_from_name): Avoid linear search of the 
17248         EXPORTEDTYPE table.
17249
17250         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
17251
17252 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
17253
17254         * image.h (MonoImage): Add 'field_cache' field.
17255
17256         * loader.c (mono_field_from_token): Cache field lookups.
17257         
17258         * reflection.c (mono_module_get_object): Fix name property.
17259
17260         * icall.c (ves_icall_get_enum_info): Update after changes to 
17261         mono_metadata_get_constant_index ().
17262
17263         * icall.c: Get rid of get_type_info icall, use a separate icall for
17264         each type property to avoid needless memory allocations. Fixes #51514.
17265
17266         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
17267         to avoid needless binary searches.
17268
17269         * class.c (class_compute_field_layout): Move the initialization of
17270         field->def_value to mono_class_vtable ().
17271
17272         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
17273         non-corlib types.
17274
17275         * object.c (mono_object_allocate): Make it inline.
17276
17277         * object.c (mono_object_allocate_spec): Make it inline.
17278         
17279 2003-12-02  Dick Porter  <dick@ximian.com>
17280
17281         * locales.c (create_NumberFormat): NumberFormatInfo construction.
17282         Patch by Mohammad DAMT (mdamt@cdl2000.com).
17283
17284 2003-12-01  Dick Porter  <dick@ximian.com>
17285
17286         * threads.c: Fix signature and call in CreateMutex and
17287         CreateEvent.
17288
17289 2003-12-01  Dick Porter  <dick@ximian.com>
17290
17291         * icall.c: 
17292         * locales.c: Implement string compares and searching
17293
17294         * object.h: Add extra Thread field
17295
17296 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
17297
17298         * reflection.c (fixup_method): Add support for MonoCMethod.
17299
17300 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
17301
17302         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
17303
17304         * reflection.c (assembly_name_to_aname): Allow extra characters in
17305         assembly names. Fixes #51468.
17306
17307 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
17308
17309         * exception.c (mono_exception_from_name_domain): New helper function.
17310
17311         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
17312         exception object in the correct domain.
17313
17314         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
17315         formatting + make a copy a the input data.
17316
17317         * loader.c (mono_get_method_from_token): Methods which contain
17318         native code do not have entries in the ImplMap.
17319
17320         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
17321         Thanks to Gonzalo for spotting this.
17322         
17323         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
17324         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
17325
17326         * assembly.h (mono_assembly_load_from): Split the second part of 
17327         assembly loading into a new public function.
17328
17329         * exception.h (mono_get_exception_bad_image_format): New function.
17330
17331 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
17332
17333         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
17334         Enumerate all modules inside a dynamic assembly. Fixes #51293.
17335         
17336         * icall.c: Add new icall for creating dynamic methods.
17337
17338         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
17339
17340         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
17341
17342         * reflection.c (mono_reflection_create_dynamic_method): New icall to
17343         create a dynamic method.
17344
17345         * reflection.c (resolve_object): New helper function.
17346
17347         * reflection.c: Generalize ReflectionMethodBuilder and the functions
17348         which manipulate it so they can also work on dynamic methods.
17349
17350         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
17351         creating the MonoReflectionMethodAux structure if it is not needed.
17352         
17353         * reflection.h verify.c: Update after changes to object layout.
17354
17355         * reflection.c (method_builder_encode_signature): Fix compilation on
17356         gcc 2.95.x.
17357
17358 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
17359
17360         * appdomain.h: Added support for context static fields. Added static_data
17361           field to MonoAppContext and renamed thread_static_fields to a more
17362           generic special_static_fields in MonoAppDomain, since it can now contain
17363           context static fields.
17364         * domain.c: Updated hashtable name.
17365         * object.c: Replaced field_is_thread_static() for a more generic
17366           field_is_special_static() which also checks for context static attribute.
17367           In mono_class_vtable(), added support for static context fields.
17368         * threads.c: Changed methods that manage thread static fields to more
17369           generic methods so they can be reused both for thread and context static
17370           data.
17371         * threads.h: Declared some new methods.
17372
17373 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
17374
17375         * reflection.h: Update after changes to the managed types.
17376
17377         * reflection.c (encode_custom_modifiers): New helper function.
17378
17379         * reflection.c (method_encode_signature): Emit custom modifiers.
17380
17381         * reflection.c (field_encode_signature): Emit custom modifiers.
17382
17383 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
17384
17385         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
17386
17387         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
17388         implementation.
17389
17390         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
17391         icall.
17392
17393         * object.c (mono_field_get_value_object): New function.
17394
17395         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
17396         specific.
17397
17398 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
17399
17400         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
17401         return a preallocated out-of-memory exception instance.
17402
17403         * object.c (out_of_memory): Use the new function.
17404
17405         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
17406         flag is before the custom modifiers. Fixes #49802.
17407
17408 2003-11-16  Martin Baulig  <martin@ximian.com>
17409
17410         * class.c (mono_class_is_open_constructed_type): Implemented the
17411         MONO_TYPE_GENERICINST case.
17412
17413 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
17414
17415         * assembly.c (mono_assembly_fill_assembly_name): New function to
17416         fill out the MonoAssemblyName structure.
17417         (mono_assembly_open): Use the new function.
17418
17419         * icall.c (fill_reflection_assembly_name): New helper function.
17420
17421         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
17422         new function.
17423
17424         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
17425
17426 2003-11-15  Martin Baulig  <martin@ximian.com>
17427
17428         * class.c (mono_class_is_open_constructed_type): New public
17429         function; checks whether a type is an open constructed type,
17430         ie. whether it still contains type parameters.
17431         (mono_class_inflate_generic_type): If we're a type parameter and
17432         the inflated type is also a MONO_TYPE_(M)VAR, return the original
17433         type.
17434
17435         * class.h (MonoGenericInst): Added `guint32 is_open'.
17436
17437         * loader.c (method_from_methodspec): Check whether we're an open
17438         or closed constructed type and set `ginst->is_open'.
17439
17440         * reflection.c (mono_reflection_bind_generic_parameters): Check
17441         whether we're an open or closed constructed type and set
17442         `ginst->is_open'.
17443         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
17444         from open constructed types.
17445
17446 2003-11-15  Martin Baulig  <martin@ximian.com>
17447
17448         * reflection.c (mono_reflection_bind_generic_parameters): If we're
17449         a generic instance (instead of a generic type declaration) with
17450         unbound generic parameters, bind them to our actual types.
17451
17452 2003-11-14  Martin Baulig  <martin@ximian.com>
17453
17454         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
17455
17456         * reflection.c (mono_reflection_bind_generic_parameters): If we're
17457         an interface type, populate `res->interfaces' with instantiated
17458         versions of all the interfaces we inherit.
17459
17460 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
17461
17462         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
17463         when MONO_PATH is set but doesn't contain the install dir.
17464
17465 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17466
17467         * icall.c:
17468         (ves_icall_Type_GetInterfaces): don't return an interface twice when
17469         it's also implemented in base classes. Fixes bug #50927.
17470
17471 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
17472
17473         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
17474         if this method is called from a finalizer. Fixes #50913.
17475
17476 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
17477
17478         * threads.c: Implement VolatileRead/VolatileWrite
17479
17480         * icall.c: Add new icalls for VolatileRead/VolatileWrite
17481
17482 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
17483
17484         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
17485         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
17486         2.95.3.
17487
17488         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
17489         from Peter Ross (pro@missioncriticalit.com).
17490         
17491 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
17492
17493         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
17494
17495 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
17496
17497         * assembly.c (mono_assembly_load_references): Disable check because it
17498         triggers on older corlibs which lots of people have.
17499
17500 2003-11-12  Jackson Harper  <jackson@ximian.com>
17501
17502         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
17503         load corlib.dll if mscorlib.dll is not found.
17504         * assembly.h: Remove corlib name define.
17505         * class.c:
17506         * domain.c:
17507         * image.c: Change corlib name to mscorlib.
17508         
17509 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
17510
17511         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
17512
17513 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
17514
17515         * appdomain.h: Added loader_optimization here to sync with the C#
17516         code, and add disallow_binding_redirects field.
17517
17518 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
17519
17520         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
17521
17522         * reflection.c (mono_image_build_metadata): Fix crash on modules
17523         with no types.
17524
17525         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
17526
17527         * icall.c (ves_icall_get_method_info): Return callingConvention as
17528         well.
17529
17530         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
17531         namespaces from the EXPORTEDTYPE table as well.
17532
17533         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
17534         from all modules inside the assembly.
17535         
17536 2003-11-11  Martin Baulig  <martin@ximian.com>
17537
17538         * reflection.c (mono_reflection_bind_generic_parameters): Make
17539         this work for interfaces.
17540
17541 2003-11-11  Martin Baulig  <martin@ximian.com>
17542
17543         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
17544
17545 2003-11-11  Martin Baulig  <martin@ximian.com>
17546
17547         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
17548         "MonoInflatedMethod" and "MonoInflatedCtor".
17549
17550 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
17551
17552         * reflection.c (resolution_scope_from_image): Use the assembly table
17553         from the manifest module, since other modules don't have it.
17554
17555         * debug-helpers.c (mono_type_full_name): New helper function.
17556
17557         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
17558
17559         * image.c (mono_image_load_file_for_image): New public function which
17560         is a replacement for the load_file_for_image in class.c.
17561
17562         * assembly.c (mono_assembly_load_module): A wrapper for the function
17563         above which does assembly association and reference loading too.
17564
17565         * class.c (mono_class_from_name): Call mono_assembly_load_module.
17566
17567 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17568
17569         * appdomain.c: not all of the attributes for the full assembly name
17570         are required and the order doesn't matter. Fixes bug #50787.
17571
17572 2003-11-10  Dick Porter  <dick@ximian.com>
17573
17574         * locales.c: Use platform-endian UTF16
17575
17576 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
17577
17578         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
17579         
17580 2003-11-10  Martin Baulig  <martin@ximian.com>
17581
17582         * metadata.c
17583         (mono_metadata_load_generic_params): Make this actually work.
17584
17585         * reflection.c (mono_reflection_bind_generic_parameters): If our
17586         parent is a generic instance, pass all the `types' to it, no
17587         matter whether it has the same number of type parameters or not.
17588
17589 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
17590
17591         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
17592
17593         * assembly.c (mono_assembly_load_references): Move the image<->assembly
17594         assignment code to this function so it gets called recursively for all
17595         modules.
17596
17597         * image.c (load_modules): Remove the assembly assignment since it is
17598         now done by mono_assembly_load_references.
17599         
17600         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
17601         Add 'module' argument.
17602         (mono_module_get_types): New helper function.
17603         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
17604
17605 2003-11-08  Martin Baulig  <martin@ximian.com>
17606
17607         * class.c (mono_class_inflate_generic_method): Interface method
17608         don't have a header.
17609
17610         * reflection.c (mono_image_get_methodspec_token): Take an
17611         additional `MonoGenericInst *' argument instead of reading it from
17612         the header; this is necessary to support interfaces.
17613         (mono_image_create_token): Pass the `MonoGenericInst *' from the
17614         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
17615         (inflated_method_get_object): Take an additional `MonoGenericInst *'
17616         argument.
17617
17618         * reflection.h (MonoReflectionInflatedMethod): Added
17619         `MonoGenericInst *ginst'.
17620
17621 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
17622
17623         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
17624
17625 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
17626
17627         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
17628
17629 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
17630
17631         * reflection.c 
17632         (reflection_methodbuilder_from_method_builder):
17633         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
17634         initialize a ReflectionMethodBuilder structure.
17635         (mono_image_get_methodbuilder_token):
17636         (mono_image_get_ctorbuilder_token): New functions to emit memberref
17637         tokens which point to types in another module inside the same assembly.
17638
17639         * reflection.c: Use the new helper functions.
17640         
17641         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
17642
17643         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
17644         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
17645
17646         * reflection.c (resolution_scope_from_image): Emit a moduleref if
17647         neccesary.
17648
17649         * reflection.c (mono_image_build_metadata): Emit metadata only for the
17650         current module. Emit the manifest only for the main module.
17651
17652         * reflection.c (mono_image_create_token): Add assertion when a 
17653         memberref needs to be created.
17654
17655         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
17656
17657         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
17658         larger buffer for the custom attribute blob. Fixes #50637.
17659         
17660 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17661
17662         * threadpool.c: notify listener on async processing handles after
17663         invoking the async callback. Thanks to Zoltan.
17664
17665 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
17666
17667         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
17668         avoid code duplication.
17669
17670         * reflection.h (MonoDynamicImage): New type which is currently unused,
17671         but will be used through the ref.emit code in place of 
17672         MonoDynamicAssembly.
17673
17674         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
17675         object layout.
17676
17677         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
17678         a MonoDynamicImage instead of just a MonoImage.
17679         
17680         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
17681         icalls to ModuleBuilder but keep their semantics, so they will work
17682         with moduleb->assemblyb. This will change later.
17683         
17684 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
17685
17686         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
17687         object layout.
17688
17689         * reflection.c (mono_image_build_metadata): Avoid creation of a default
17690         main module, since it is now done by the managed code.
17691
17692 2003-11-03  Martin Baulig  <martin@ximian.com>
17693
17694         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
17695         `ginst->klass' here.
17696         (method_encode_methodspec): Don't use the `ginst->generic_method's
17697         klass if it's a generic instance, use `ginst->klass' in this case.
17698
17699 2003-11-03  Martin Baulig  <martin@ximian.com>
17700
17701         * reflection.c (mono_image_get_generic_method_param_info):
17702         Removed, use mono_image_get_generic_param_info() instead.
17703         (mono_image_get_type_info): Write the GenericParam table before
17704         the Method table.  This is neccessary because in the GenericParam
17705         table, type parameters of the class (ie. '!0' etc.) must come
17706         before the ones from its generic methods (ie. '!!0' etc).
17707
17708 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
17709
17710         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
17711
17712 2003-11-02  Martin Baulig  <martin@ximian.com>
17713
17714         * reflection.c (create_generic_typespec): Take a
17715         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
17716         the generic parameters from it.
17717
17718 2003-11-02  Martin Baulig  <martin@ximian.com>
17719
17720         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
17721         instead of a `MonoClassField *' since we just need the type.
17722         (create_generic_typespec): New static function.  Creates a
17723         TypeSpec token for a generic type declaration.
17724         (mono_image_get_generic_field_token): New static function.
17725         (mono_image_create_token): If we're a FieldBuilder in a generic
17726         type declaration, call mono_image_get_generic_field_token() to get
17727         the token.
17728
17729 2003-11-02  Martin Baulig  <martin@ximian.com>
17730
17731         * reflection.h
17732         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
17733         `MonoReflectionGenericInst *declaring_type' and
17734         `MonoReflectionGenericInst *reflected_type' fields.
17735
17736         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
17737         `MonoReflectionGenericInst *declaring_type' and a
17738         `MonoReflectionGenericInst *reflected_type' argument instead of a
17739         single `MonoReflectionGenericInst *type' one.  Set
17740         `res->declaring_type' and `res->reflected_type' from them.
17741         (mono_reflection_inflate_field): Likewise.      
17742
17743 2003-11-02  Martin Baulig  <martin@ximian.com>
17744
17745         * class.c (mono_class_setup_vtable): Don't store generic methods
17746         in the vtable.  
17747
17748 2003-11-02  Martin Baulig  <martin@ximian.com>
17749
17750         * reflection.h (MonoReflectionGenericInst): Added
17751         `MonoReflectionType *declaring_type'.
17752
17753         * reflection.c (mono_reflection_bind_generic_parameters): Use
17754         `if (tb->parent)' instead of `klass->parent'.
17755
17756 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
17757
17758         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
17759         with an empty ASSEMBLY table.
17760
17761         * reflection.c (mono_image_build_metadata): Avoid using the same loop
17762         variable in the inner and outer loops.
17763
17764 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
17765
17766         * metadata.h (mono_metadata_make_token): Put parentheses around macro
17767         argument.
17768
17769         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
17770         
17771         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
17772         icalls. Instead, do everything in managed code. This is needed since
17773         it is hard to restore the original domain etc. in unmanaged code in the
17774         presence of undeniable exceptions.
17775
17776         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
17777         New icalls to push and pop appdomain refs.
17778
17779 2003-10-31  Martin Baulig  <martin@ximian.com>
17780
17781         * class.c (inflate_generic_type): Renamed to
17782         mono_class_inflate_generic_type() and made it public.
17783
17784         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
17785         New interncall.
17786
17787         * loader.c (mono_field_from_memberref): Also set the retklass for
17788         typespecs.
17789
17790         * fielder.c (mono_image_get_inflated_field_token): New static
17791         method; creates a metadata token for an inflated field.
17792         (mono_image_create_token, fixup_method): Added support for
17793         "MonoInflatedField".
17794         (fieldbuilder_to_mono_class_field): New static function.
17795         (mono_reflection_inflate_field): New public function.
17796
17797         * reflection.h
17798         (MonoReflectionGenericInst): Added `MonoArray *fields'.
17799         (MonoReflectionInflatedField): New typedef.     
17800
17801 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
17802
17803         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
17804         for Solaris and other platforms without s6_addr16
17805
17806 2003-10-30  Martin Baulig  <martin@ximian.com>
17807
17808         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
17809         argument instead of two.
17810         (mono_class_inflate_generic_signature): Likewise.
17811         (inflate_generic_header): Likewise.
17812         (mono_class_inflate_generic_method): Likewise.  In addition, if
17813         `ginst->klass' is set, it becomes the new `method->klass'.
17814
17815         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
17816         field.
17817
17818         * reflection.c (encode_generic_method_sig): Write a 0xa as the
17819         first byte. [FIXME]
17820         (method_encode_methodspec): If we have generic parameters, create
17821         a MethodSpec instead of a MethodRef.
17822         (fixup_method): Added support for "MonoInflatedMethod" and
17823         "MonoInflatedCtor".
17824         (mono_image_create_token): Added support for "MonoInflatedMethod"
17825         and "MonoInflatedCtor".
17826         (inflated_method_get_object): New static function; returns a
17827         managed "System.Reflection.MonoInflatedMethod" object.
17828         (mono_reflection_bind_generic_method_parameters): Return a
17829         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
17830         (mono_reflection_inflate_method_or_ctor): Likewise.
17831         (mono_image_get_generic_method_param_info): Initialize unused
17832         fields to zero.
17833         (mono_image_get_generic_param_info): Likewise.
17834
17835         * reflection.h (MonoReflectionInflatedMethod): New public
17836         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
17837         "S.R.MonoInflatedCtor" classes.
17838
17839         * loader.c (method_from_memberref): If we're a TypeSpec and it
17840         resolves to a generic instance, inflate the method.
17841
17842 2003-10-28  Dick Porter  <dick@ximian.com>
17843
17844         * object.c (mono_runtime_run_main): Convert command-line arguments
17845         into utf8, falling back to the user's locale encoding to do so.
17846
17847 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
17848
17849         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
17850         at this time.
17851
17852         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
17853
17854         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
17855         up icalls at method definition time. Partially fixes #33569.
17856
17857 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
17858
17859         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
17860         marshalling of arrays. Fixes #50116.
17861
17862         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
17863
17864         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
17865         points to a vtable in the dying appdomain.
17866
17867         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
17868         listeners into unmanaged code inside the lock.
17869
17870         * object.c (mono_class_vtable): Turn off typed allocation in non-root
17871         domains and add some comments.
17872
17873 2003-10-25  Martin Baulig  <martin@ximian.com>
17874
17875         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
17876
17877         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
17878
17879         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
17880         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
17881         currently parsing.  Create the generic class and store it in
17882         `generic_inst->klass' before parsing the type arguments.  This is
17883         required to support "recursive" definitions; see mcs/tests/gen-23.cs
17884         for an example.
17885         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
17886         to support recursive typespec entries.
17887
17888         * class.c (mono_class_setup_parent): If our parent is a generic
17889         instance, we may get called before it has its name set.
17890         (mono_class_from_generic): Splitted into
17891         mono_class_create_from_generic() and mono_class_initialize_generic().
17892
17893 2003-10-25  Martin Baulig  <martin@ximian.com>
17894
17895         * icall.c (ves_icall_Type_BindGenericParameters): Return a
17896         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
17897         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
17898         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
17899
17900         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
17901         (create_typespec): Likewise.
17902         (mono_reflection_bind_generic_parameters): Return a
17903         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
17904         (mono_reflection_inflate_method_or_ctor): New public function.
17905
17906         * reflection.h (MonoReflectionGenericInst): New typedef.        
17907
17908 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
17909
17910         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
17911         inside the domain lock. Fixes #49993.
17912         
17913         * object.c (mono_class_vtable): When typed allocation is used, 
17914         allocate vtables in the GC heap instead of in the mempool, since the
17915         vtables contain GC descriptors which are used by the collector even
17916         after the domain owning the mempool is unloaded.
17917
17918         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
17919
17920         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
17921         reflect what it does. Also invalidate mempools instead of freeing
17922         them if a define is set.
17923
17924         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
17925         of the appdomain.
17926         
17927         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
17928         hold the finalizable objects in this domain.
17929
17930         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
17931         appdomain.
17932
17933         * appdomain.c (mono_domain_set): New function to set the current
17934         appdomain, but only if it is not being unloaded.
17935
17936         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
17937         appdomain which is being unloaded.
17938         
17939         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
17940         unloading of the root appdomain.
17941
17942         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
17943         icall to execute a method in another appdomain. Intended as a 
17944         replacement for InternalSetDomain, which can confuse the code 
17945         generation in the JIT.
17946
17947         * appdomain.c (mono_domain_is_unloading): New function to determine
17948         whenever an appdomain is unloading.
17949
17950         * appdomain.c (mono_domain_unload): New function to correctly unload
17951         an appdomain.
17952
17953         * assembly.c (mono_assembly_load_references): Check that an assembly
17954         does not references itself.
17955
17956         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
17957         domain manually, it asks the finalizer thread to do it, then waits for
17958         the result. Also added a timeout.
17959
17960         * icall.c: Register the new icalls.
17961
17962         * threads.h threads.c: Export the mono_gc_stop_world and 
17963         mono_gc_start_world functions.
17964         
17965         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
17966         function to fill out the mempool with 0x2a.
17967
17968 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
17969
17970         * reflection.h (MonoReflectionMethodAux): New structure to store
17971         information which is rarely used, thus is not in the MonoMethod
17972         structure.
17973
17974         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
17975         store the aux info.
17976
17977         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
17978         and marshalling info into the aux structure.
17979
17980         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
17981         from the aux structure.
17982
17983         * loader.c (mono_method_get_param_names): Retrieve the param names from
17984         the aux structure.
17985         
17986 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
17987
17988         * exception.h exception.c: Add AppDomainUnloadedException && fix 
17989         warning.
17990
17991 2003-10-21  Dick Porter  <dick@ximian.com>
17992
17993         * socket-io.c
17994         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
17995         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
17996
17997 2003-10-21  Martin Baulig  <martin@ximian.com>
17998
17999         * reflection.c (mono_reflection_bind_generic_parameters):
18000         `klass->parent' is NULL for interfaces.
18001
18002 2003-10-21  Martin Baulig  <martin@ximian.com>
18003
18004         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
18005
18006 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
18007
18008         * exception.c (mono_exception_from_name_msg): New helper function for
18009         creating exceptions and initializing their message field.
18010
18011         * exception.c: Simplify functions using the new helper.
18012
18013         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
18014         New function.
18015
18016         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
18017         mono_raise_exception, since otherwise gcc doesn't generate the function
18018         epilog for raise_exception, confusing the stack unwinding in the JIT.
18019         Fixes #45043.
18020
18021         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
18022         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
18023         Fixes #49499.
18024
18025 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18026
18027         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
18028         utf8.
18029
18030 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
18031
18032         * icall.c: Removed GetUninitializedObject method because
18033           AllocateUninitializedClassInstance does the same.
18034
18035 2003-10-18  Martin Baulig  <martin@ximian.com>
18036
18037         * class.c (inflate_generic_signature): Renamed to
18038         mono_class_inflate_generic_signature() and made it public.
18039         (my_mono_class_from_generic_parameter): New static function; if we
18040         don't already have the generic parameter's MonoClass, create a
18041         very simple one which is just used internally in the runtime and
18042         not passed back to managed code.
18043
18044         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
18045
18046         * metadata.h (MonoMethodSignature): Moved the
18047         `MonoGenericParam *gen_params' to the MonoMethodHeader.
18048         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
18049
18050         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
18051         ves_icall_MonoMethod_GetGenericArguments(); this is now an
18052         interncall on the MonoMethod class, not on MethodInfo.
18053         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
18054         calling mono_reflection_bind_generic_method_parameters() directly.
18055
18056         * loader.c (mono_method_get_signature): If this is a MethodSpec;
18057         return the already computed `method->signature'.
18058         (method_from_methodspec): New static function to load a method
18059         from a MethodSpec entry.
18060         (mono_get_method_from_token): Call the new method_from_methodspec()
18061         for MethodSpec tokens.  
18062         (mono_get_method_from_token): If we're a generic method, load the
18063         type parameters.
18064
18065         * reflection.c (mono_image_get_memberref_token): Allow
18066         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
18067         table.
18068         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
18069         (mono_image_create_token): First check whether it's a generic
18070         method (so we'd need to create a MethodSpec), then do the other
18071         two alternatives.
18072         (mono_reflection_bind_generic_method_parameters): Return a
18073         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
18074         called directly from the interncall.
18075
18076 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
18077
18078         * reflection.c (load_public_key): Move loading of the public key
18079         into managed code.
18080
18081         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
18082
18083         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
18084         fields.
18085
18086         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
18087         culture, hash_alg and public_key. Fixes #49555.
18088
18089 2003-10-17  Martin Baulig  <martin@ximian.com>
18090
18091         * class.h (MonoGenericInst): Moved this declaration here and added
18092         `MonoMethod *generic_method'.
18093
18094         * icall.c
18095         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
18096         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
18097
18098         * metadata.c (mono_metadata_type_equal): Two types of
18099         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
18100         index; ie. don't compare the address of the `MonoGenericParam'
18101         structure.
18102         (mono_metadata_load_generic_params): Removed the `MonoMethod
18103         *method' argument.
18104
18105         * metadata.h (MonoGenericInst): Moved declaration to class.h.
18106         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
18107
18108         * reflection.c (method_encode_signature): Encode the number of
18109         generic parameters.
18110         (encode_generic_method_sig): New static function.
18111         (method_encode_methodspec): New static function; creates an entry
18112         in the MethodSpec table for a generic method.
18113         (mono_image_get_methodspec_token): New static function.
18114         (mono_image_create_token): Call mono_image_get_methodspec_token()
18115         for generic methods.
18116         (mono_reflection_bind_generic_method_parameters): New public
18117         function.  Instantiates a generic method.
18118
18119 2003-10-16  Martin Baulig  <martin@ximian.com>
18120
18121         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
18122         *gen_params' here from MonoMethodHeader.
18123
18124         * metadata.c (mono_metadata_parse_method_signature): If we have
18125         generic parameters, initialize `method->gen_params' and then set
18126         the correct `type->data.generic_param' in all the parameters.
18127
18128 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
18129
18130         * threads.c (mono_threads_get_default_stacksize): New function to 
18131         return the default stacksize.
18132
18133         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
18134         termination of the finalizer thread, since the previous method had
18135         race conditions. Fixes #49628.
18136
18137         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
18138         as for the other managed threads.
18139
18140 2003-10-16  Martin Baulig  <martin@ximian.com>
18141
18142         * class.c (inflate_generic_signature): Copy `generic_param_count'
18143         and `gen_params'.
18144
18145         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
18146         New interncall.
18147
18148         * metadata.c (mono_metadata_parse_method_signature): Actually set
18149         the `method->generic_param_count' here.
18150         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
18151
18152 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
18153
18154         * object.h: Add a new field to TypedRef to simplify the implementation
18155         of the REFANY opcodes in the JIT.
18156
18157         * icall.c: Make use of the new field.
18158
18159         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
18160         dynamically.
18161
18162 2003-10-15  Martin Baulig  <martin@ximian.com>
18163
18164         * class.c (mono_class_from_gen_param): Renamed to
18165         mono_class_from_generic_parameter() and moved most of the
18166         functionality from mono_reflection_define_generic_parameter()
18167         here; ie. we create a "real" class here.
18168         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
18169         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
18170         previously been called.
18171
18172         * class.h (MonoGenericParam): Moved the declaration of this struct
18173         here from metadata.h and added `MonoMethod *method'.
18174
18175         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
18176         interncall.
18177
18178         * loader.c (mono_get_method_from_token): If we have any generic
18179         parameters, call mono_metadata_load_generic_params() to read them
18180         from the MONO_TABLE_GENERICPAR.
18181
18182         * metadata.c (mono_metadata_load_generic_params): Added
18183         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
18184
18185         * metadata.h (MonoMethodSignature): Replaced
18186         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
18187         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
18188
18189         * reflection.c (mono_reflection_define_generic_parameter): Moved
18190         most of the functionality into the new
18191         mono_class_from_generic_parameter(); set the `method' field if
18192         we're a method parameter.       
18193
18194 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
18195
18196         * marshal.c (emit_struct_conv): if native size is 0
18197         emit no code.
18198
18199 2003-10-14  Martin Baulig  <martin@ximian.com>
18200
18201         * icall.c: The generics API has changed in the spec since it was
18202         added to System.Type; these modifications make it match the spec
18203         again.
18204         (ves_icall_Type_GetGenericParameters): Renamed to
18205         `ves_icall_Type_GetGenericArguments'.
18206         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
18207         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
18208         `ves_icall_MonoType_get_HasGenericArguments'.
18209         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
18210         `ves_icall_MonoType_get_IsGenericParameter'.
18211         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
18212         this is no interncall anymore.
18213         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
18214         `ves_icall_TypeBuilder_get_IsGenericParameter'.
18215
18216 2003-10-14  Martin Baulig  <martin@ximian.com>
18217
18218         * reflection.c (mono_reflection_bind_generic_parameters): Also
18219         inflate generic methods if we're reading the class from IL.
18220
18221 2003-10-13  Martin Baulig  <martin@ximian.com>
18222
18223         * reflection.c (mono_reflection_define_generic_parameter): This
18224         method isn't called directly from the icall anymore; take a
18225         `MonoReflectionAssemblyBuilder *' so we can use this for type and
18226         method generic parameters.
18227         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
18228         (method_builder_encode_signature): Encode generic parameters.
18229         (mono_image_get_method_info): Write generic params to the
18230         MONO_TABLE_GENERICPARAM table.
18231
18232         * reflection.h (MonoReflectionMethodBuilder): Added
18233         `MonoArray *generic_params'.
18234
18235         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
18236
18237         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
18238         wrapper for mono_reflection_define_generic_parameter().
18239         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
18240
18241 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
18242
18243         * marshal.h: Add missing function to fix build.
18244
18245         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
18246         the SetLastError pinvoke attribute.
18247
18248         * marshal.c (mono_marshal_set_last_error): New helper function called
18249         by the generated code.
18250         
18251         * marshal.c (mono_mb_emit_branch): New helper function.
18252
18253         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
18254
18255         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
18256         classes as parameters and return values of delegates. Fixes #29256. 
18257
18258 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
18259
18260         * locales.c: use gint32 in non HAVE_ICU case
18261
18262 2003-10-11  Martin Baulig  <martin@ximian.com>
18263
18264         * mono-debug.c (mono_debug_add_method): Added a workaround for
18265         bug #48591.
18266
18267 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
18268
18269         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
18270         delegates passed to native code must use the STDCALL calling 
18271         convention. Fixes #35987.
18272
18273 2003-10-10  Martin Baulig  <martin@ximian.com>
18274
18275         * class.c (inflate_generic_type): If we're inflating for a generic
18276         type instance (and not for a generic method), return
18277         MONO_TYPE_MVAR unchanged.
18278
18279 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18280
18281         * string-icalls.c: Join ignores null strings in the source array.
18282         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
18283         * threads.c: GetAvailableTheads is slightly more accurate.
18284
18285 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
18286
18287         * threads.h threads.c : add mono_threads_set_default_stacksize
18288         and pass default to CreateThread calls.
18289
18290 2003-10-09  Dick Porter  <dick@ximian.com>
18291
18292         * icall.c:
18293         * locales.h:
18294         * locales.c: Internal calls for constructing CultureInfo and
18295         related objects from libicu (if its available.)
18296
18297 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
18298
18299         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
18300
18301 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18302
18303         * threadpool.c: added an argument to async_invoke_thread that is the
18304         item to process, pass the MonoAsyncResult to the thread start function
18305         when creating a new thread. This way we don't need to acquire any lock
18306         when we're creating a new thread. Readded a semaphore for faster
18307         response times (instead of that Sleep i added).
18308
18309 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
18310
18311         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
18312         get daylight change dates better on Windows, fix handling
18313         of platforms without tm_gmtoff.
18314
18315 2003-10-06  Martin Baulig  <martin@ximian.com>
18316
18317         * class.c (inflate_generic_method): Renamed to
18318         mono_class_inflate_generic_method() and made public.
18319         (mono_class_init): Don't inflate the generic methods here.
18320         (mono_class_from_generic): Added `gboolean inflate_methods'
18321         argument.  Inflate the methods here.
18322
18323         * loader.c (mono_method_get_param_names): Ignore instances of
18324         generic types for the moment.
18325
18326         * reflection.c (fixup_method): Added support for inflated methods.
18327         (mono_image_create_token): Use mono_image_get_methodref_token()
18328         for inflated methods.
18329         (mono_custom_attrs_from_param): Ignore instances of generic types
18330         for the moment.
18331         (mono_reflection_bind_generic_parameters): New public function.
18332         Moved all the functionality from
18333         ves_icall_Type_BindGenericParameters() here and added support for
18334         dynamic types.
18335         (mono_reflection_define_generic_parameter): Initialize
18336         `klass->methods' here.
18337
18338         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
18339         functionality into mono_reflection_define_generic_parameter().
18340         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
18341         TypeBuilder, return that TypeBuilder.
18342
18343 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18344
18345         * appdomain.c: removed mono_delegate_semaphore.
18346
18347         * threadpool.c:
18348         (mono_thread_pool_add): moved hash table creation inside and the thread 
18349         creation outside of the critical region.
18350         (mono_thread_pool_finish): removed obsolete code.
18351         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
18352         continue or exit the thread depending on the queue.
18353
18354 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
18355
18356         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
18357         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
18358         handle more bool marshalling options
18359
18360 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
18361
18362         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
18363         arrays of structs. Also add a more descriptive error message when
18364         a structure member is marshalled as LPArray.
18365
18366 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
18367
18368         * marshal.c (mono_marshal_get_native_wrapper): Add support for
18369         marshalling arrays of complex types. Fixes #29098. Also remove an
18370         usused and incomplete function.
18371
18372 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
18373
18374         * gc.c: report heap_size - free_bytes as total memory allocated
18375         (bug#49362).
18376
18377 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
18378
18379         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
18380         fix timezone handling problems on Windows.
18381         
18382         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
18383         asserts when the year is outside the range handled by ms the functions.
18384
18385         * class.c (setup_interface_offsets): If the class is an interface,
18386         fill out its interface_offsets slot.
18387
18388 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18389
18390         * threadpool.c: mark threadpool threads as background.
18391
18392 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
18393
18394         * decimal.c - define DECINLINE to nothing if not using GCC
18395
18396 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
18397
18398         * assembly.c: More refcount fixes.
18399
18400 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18401
18402         * string-icalls.c: if we're not trimming, return the same string.
18403         When not splitting, don't create a new string.
18404
18405 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18406
18407         * image.c:
18408         (mono_image_open): increment the ref_count inside the critical section.
18409
18410 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
18411
18412         * image.c (mono_image_open): Fix reference counting bug.
18413
18414 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
18415
18416         * marshal.c (mono_marshal_type_size) struct alignment changed for 
18417         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
18418         64bits. Avoid leak in mono_marshal_get_native_wrapper when
18419         mono_lookup_pinvoke_call throws.        
18420
18421 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
18422
18423         * reflection.c (mono_reflection_parse_type): Fix #49114.
18424
18425         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
18426         temporary workaround for cygwin header problem.
18427
18428         * object.c (mono_object_isinst): Synchronize this with the code
18429         generated by the JIT for casts.
18430
18431 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
18432
18433         * reflection.c (encode_type): Fix #38332.
18434
18435 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
18436
18437         * marshal.c (mono_marshal_method_from_wrapper): New function to return
18438         the original method from the wrapper method.
18439
18440 2003-09-25  Martin Baulig  <martin@ximian.com>
18441
18442         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
18443         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
18444         (ves_icall_Type_get_IsGenericInstance): New interncall.
18445
18446 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
18447
18448         * object.c: fix cast warning in big endian code.
18449
18450 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
18451
18452         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
18453         
18454 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18455
18456         * assembly.c: don't call check_env from mono_assembly_load. It's
18457         already done once in mono_assemblies_init and may cause headaches when
18458         multiple threads are loading assemblies.
18459
18460 2003-09-19  Martin Baulig  <martin@ximian.com>
18461
18462         * reflection.c (mono_reflection_define_generic_parameter): Don't
18463         allocate `klass->methods', set `klass->flags' to
18464         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
18465
18466 2003-09-18  Martin Baulig  <martin@ximian.com>
18467
18468         * class.c (mono_class_init): Don't create `class->methods' if it's
18469         already initialized.
18470
18471         * metadata.c (mono_metadata_load_generic_params): Make this
18472         actually work.
18473
18474         * reflection.c (mono_reflection_define_generic_parameter): Set
18475         parent class and interfaces from the constraints.
18476
18477         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
18478         to keep this struct in sync with the declaration in TypeBuilder.cs.
18479
18480 2003-09-17  Martin Baulig  <martin@ximian.com>
18481
18482         * metadata.h (MonoType): Replaced the data's `int type_param'
18483         field with `MonoGenericParam *generic_param'.
18484         (MonoGenericParam): Added `MonoClass *klass'.
18485
18486         * class.c (mono_class_from_gen_param): Removed the
18487         `MonoImage *image' and `int type_num' arguments.
18488
18489         * metadata.c (mono_metadata_parse_generic_param): New static
18490         method; creates a MonoGenericParam which just contains the index.
18491         (do_mono_metadata_parse_type): Call
18492         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
18493         MONO_TYPE_MVAR.
18494
18495         * reflection.c (mono_image_typedef_or_ref): Generic type
18496         parameters may be in the same assembly, but never use a typedef
18497         for them.
18498         (mono_reflection_define_generic_parameter): We're now creating a
18499         "real" class for the type parameter; it's now safe to call
18500         mono_class_from_mono_type() on the class'es type, it'll do the
18501         right thing.
18502
18503 2003-09-16  Martin Baulig  <martin@ximian.com>
18504
18505         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
18506         `symfile->range_entry_size' and `symfile->class_entry_size' here;
18507         the `symfile' data structure must be fully initialized before it
18508         gets added to the table.
18509
18510 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
18511
18512         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
18513
18514         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
18515         class init trampolines.
18516
18517 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
18518
18519         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
18520         to the built-in profiler to turn off time and allocation profiling
18521         respectively.
18522
18523 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
18524
18525         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
18526         g_direct_equal.
18527
18528         * debug-helpers.c (mono_method_full_name): Print the wrapper type
18529         in human readable form.
18530
18531 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
18532
18533         * reflection.c icall.c: Fixed warnings.
18534
18535         * image.c (load_class_names): Use a temporary hash table to hold the
18536         namespaces in order to avoid doing many string comparisons.
18537
18538         * image.h: Fix typo.
18539
18540         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
18541         Pass NULL instead of g_direct_equal to the GHashTable constructor 
18542         since the NULL case is short-circuited inside g_hash_table_lookup, 
18543         leading to better performance.  
18544
18545         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
18546         obtain the first custom attribute for a given index. Depends on the
18547         CustomAttribute table being sorted by the parent field.
18548
18549         * reflection.c (mono_custom_attrs_from_index): Use the new function 
18550         for better performance.
18551
18552 2003-09-07  Martin Baulig  <martin@ximian.com>
18553
18554         * class.c (mono_class_init): If we're a generic instance, inflate
18555         all our methods instead of loading them from the image.
18556         (mono_class_from_generic): Set `class->methods = gklass->methods'.
18557
18558 2003-09-07  Martin Baulig  <martin@ximian.com>
18559
18560         * mono-debug-debugger.c: Added support for constructors.
18561
18562 2003-09-06  Martin Baulig  <martin@ximian.com>
18563
18564         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
18565         New interncall.
18566
18567         * reflection.c (mono_reflection_setup_generic_class): Call
18568         ensure_runtime_vtable() to create the vtable.
18569
18570 2003-09-05  Martin Baulig  <martin@ximian.com>
18571
18572         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
18573         MONO_TYPE_MVAR.
18574
18575 2003-09-04  Martin Baulig  <martin@ximian.com>
18576
18577         * reflection.c (mono_reflection_define_generic_parameter): Generic
18578         parameters start with zero.
18579
18580 2003-09-04  Martin Baulig  <martin@ximian.com>
18581
18582         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
18583
18584         * reflection.h (MonoReflectionGenericParam): New typedef.
18585         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
18586         the generic parameters from the managed TypeBuilder.
18587
18588         * reflection.c (mono_reflection_define_generic_parameter): New function.
18589         (mono_reflection_create_runtime_class): Encode generic parameters.
18590         (mono_reflection_setup_generic_class): New function; this is
18591         called after adding adding all generic params to the TypeBuilder.
18592         (encode_type): Added MONO_TYPE_VAR.
18593
18594 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
18595
18596         * class.h class.c (mono_class_needs_cctor_run): Moved this method
18597         here from the JIT.
18598
18599         * assembly.h assembly.c: Moved the AOT loading code into an assembly
18600         load hook.
18601
18602 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
18603
18604         * reflection.h reflection.c class.h class.c: Delete duplicate 
18605         definition of mono_type_get_name () from reflection.c and export the
18606         one in class.c.
18607
18608         * class.c: Class loading fixes from Bernie Solomon 
18609         (bernard@ugsolutions.com).
18610
18611         * reflection.c: Endianness fixes from Bernie Solomon 
18612         (bernard@ugsolutions.com).
18613         
18614 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
18615
18616         * assembly.h assembly.c: Define a file format version for AOT
18617         libraries.
18618         
18619         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
18620
18621         * appdomain.h (MonoJitInfo): New field to determine whenever the
18622         code is domain neutral.
18623         
18624 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
18625
18626         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
18627
18628 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
18629
18630         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
18631         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
18632         Avoid caching the result since strings must be domain specific. Fixes
18633         #48050.
18634
18635 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
18636
18637         * marshal.c (mono_marshal_init): Make this callable multiple times
18638         since it is hard to find a correct place to call it.
18639
18640         * object.c (mono_runtime_class_init): Execute static constructors in
18641         the correct appdomain.
18642
18643         * image.c (build_guid_table): Handle the case when multiple images have
18644         the same GUID.
18645
18646 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18647
18648         * icall.c: added a couple of icalls for System.Web.
18649
18650 2003-08-28  Martin Baulig  <martin@ximian.com>
18651
18652         * icall.c (ves_icall_Type_BindGenericParameters): Use
18653         `klass->generic_inst' instead of `&klass->byval_arg' in the
18654         mono_type_get_object() call.  The returned type must be
18655         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
18656
18657 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
18658
18659         * NOTES: New file.
18660
18661         * object.c (mono_class_proxy_vtable): Make it thread safe.
18662
18663         * pedump.c: Fix warning.
18664
18665         * object.c appdomain.h: Get rid of metadata_section. 
18666         It is no longer needed and it was causing deadlocks with domain->lock.
18667
18668         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
18669
18670 2003-08-26  Martin Baulig  <martin@ximian.com>
18671
18672         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
18673
18674 2003-08-26  Martin Baulig  <martin@ximian.com>
18675
18676         * pedump.c (main): Call mono_metadata_init(),
18677         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
18678         and mono_loader_init().
18679
18680 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
18681
18682         * loader.h: Add missing include to fix build.
18683
18684         * image.h: mono_image_load_references is no more.
18685
18686         * assembly.c: Reworked assembly loading to make it really thread safe.
18687         After these changes, the assembly returned by mono_assembly_open is
18688         fully initialized, i.e. all its references assemblies are loaded.
18689
18690         * assembly.c (mono_image_load_references): Renamed to 
18691         mono_assembly_load_references, and made private, since clients no
18692         longer need to call it.
18693
18694         * class.c: Removed calls to mono_assembly_load_references, since it was
18695         a source of deadlocks.
18696
18697         * loader.h loader.c class.h class.c: Protect data structures using a 
18698         new lock, the loader lock.
18699
18700         * class.c (mono_class_setup_vtable): Create temporary hash tables and
18701         GPtrArrays only when needed.
18702
18703         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
18704         into empty structures by mcs. Fixes pinvoke7.cs.
18705         
18706         * domain.c (mono_init): Call a new initialization function.
18707
18708         * appdomain.c (mono_runtime_init): Call the new initializer function
18709         of the marshal module.
18710
18711         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
18712         inserted into empty structures by mcs. Fixes pinvoke7.cs.
18713
18714         * marshal.h marshal.c: Added locks around the wrapper caches to make
18715         this module thread safe.
18716
18717         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
18718         this argument. Fixes pinvoke1.exe.
18719
18720 2003-08-25  Lluis Sanchez <lluis@ximian.com>
18721
18722         * object.h: Added call_type field to MonoMethodMessage and the corresponding
18723         enumeration of values. Removed fields to store remote call output values in
18724         MonoAsyncResult. Not needed any more.
18725         * object.c: Initialize call_type and async_result fields in mono_message_init.
18726         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
18727         dispatching the message.
18728         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
18729         async call to finish. To do it use a message with EndInvoke call type.
18730
18731 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
18732
18733         * loader.h loader.c (mono_method_hash_marhal_info): New function which
18734         determines whenever a method has marshalling info.
18735
18736 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18737
18738         * assembly.c: fix the build on windows.
18739
18740 2003-08-22 Lluis Sanchez <lluis@ximian.com>
18741
18742         * object.cs: Fixed bug #47785.
18743
18744 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
18745
18746         * string-icalls.c (StringReplace): If their are no occurances of
18747         the old string found return a reference to the supplied
18748         string. This saves some memory and matches MS behavoir.
18749         
18750 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18751
18752         * socket-io.c: fixed compilation for systems that define AF_INET6
18753         and don't define SOL_IP/SOL_IPV6.
18754
18755 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
18756
18757         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
18758         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
18759
18760         * rawbuffer.c rawbuffer.h: Make this module thread safe.
18761
18762         * domain.c: Make this module thread safe.
18763
18764         * domain.c (mono_init): Call new initialization function.
18765
18766         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
18767         reference types too. Fixes #38812.
18768
18769         * image.c (mono_image_init): Fixed warnings.
18770
18771         * class.c (mono_class_from_typeref): Handle assembly load failure
18772         correctly.
18773
18774         * appdomain.c (add_assemblies_to_domain): Handle the case when
18775         the references of an assembly are not yet loaded.
18776
18777         * metadata.c image.c assembly.c: Moved initialization of global
18778         variables to a separate function called at startup since lazy 
18779         initialization of these variables is not thread safe.
18780         
18781         * image.c assembly.c: Made this module thread safe by adding locks in 
18782         the appropriate places.
18783
18784         * domain.c (mono_init): Call the new initialization functions of the
18785         three modules.
18786
18787 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
18788
18789         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
18790           make a direct call. It is proxy's work to make the call asynchronous.
18791           mono_delegate_end_invoke(): If the targe is a proxy, just collect
18792           the return values.
18793         * object.cs: mono_method_call_message_new(): read AsyncResult and
18794           state object from parameters list, if this info is requested.
18795         * object.h: Added fields to store remote call output values in
18796           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
18797
18798 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
18799
18800         * object.h: add needed fields to MonoThread.
18801         * threads.c, threads.h: allow registering a function to cleanup data
18802         allocated per thread by the JIT.
18803
18804 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18805
18806         * loader.h: portability fix by Bernie Solomon
18807         * <bernard@ugsolutions.com>.
18808
18809 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
18810
18811         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
18812         return a MonoArray. This simplifies the code and also ensures that
18813         the cache allways contains an object reference as a value.
18814
18815         * icall.c (ves_icall_get_parameter_info): Simplified using the new
18816         function.
18817
18818 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18819
18820         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
18821         fixes a problem with byte ordering when getting the address family for
18822         a socket.
18823
18824 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
18825
18826         * .cvsignore: Added monosn.
18827
18828         * reflection.h reflection.c loader.c: Added support for parameter
18829         marshalling to dynamically created types. Fixes #47295.
18830
18831 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
18832
18833         * rand.c: remove useless warnings.
18834
18835 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
18836
18837         * class.c: implemented ldtoken for methods and fieldrefs.
18838
18839 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18840
18841         * threadpool.c: when mono_async_invoke was called, no one took care of
18842         monitoring the queue. So if the method invoked took some time and we
18843         got new async invoke requests after 500 ms (the thread created waited
18844         that long in WaitForSingleObject), the new async invoke was not called
18845         until the previous one finished.
18846
18847         This is fixed now. Thanks to Totte for helping with it.
18848
18849 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18850
18851         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
18852
18853 2003-08-11  Martin Baulig  <martin@ximian.com>
18854
18855         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
18856
18857 2003-08-06  Martin Baulig  <martin@ximian.com>
18858
18859         * mono-debug-debugger.c: Added support for static fields,
18860         properties and methods.
18861
18862 2003-08-06  Martin Baulig  <martin@ximian.com>
18863
18864         * mono-debug-debugger.c: Don't store the MonoString's vtable to
18865         make this work for applications with multiple application domains.
18866
18867 2003-08-04  Martin Baulig  <martin@ximian.com>
18868
18869         * mono-debug-debugger.c: Completely reworked the type support; the
18870         most important thing is that we're now just using one single
18871         `MonoType' instance per type.
18872
18873 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
18874
18875         * mono-endian.h, mono-endian.c, icall.c: Added icall
18876         ves_icall_System_Double_AssertEndianity to assert double word endianity
18877         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
18878
18879 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
18880
18881         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
18882         support, icalls and fixes.
18883
18884 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
18885
18886         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
18887         classes that are a punctuation character in .NET is not the same a
18888         g_unichar_ispunct.
18889
18890 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18891
18892         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
18893
18894 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
18895
18896         * icall.c: Add new MemCopy internalcall.
18897         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
18898         Simplified code; It is not necessary to handle all the cases here,
18899         as the C# code takes care of it.  Only handle the case of the name
18900         resource embedded into the assembly.
18901
18902         Changed signature to return the data pointer and the size of the
18903         data. 
18904
18905 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
18906
18907         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
18908         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
18909
18910 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
18911
18912         * socket-io.c: ignore EINTR error in select.
18913
18914 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
18915
18916         * class.h, class.c: removed unused subclasses field in MonoClass.
18917
18918 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
18919
18920         * icall.c: improve fix of get_base_definition(). If the parent class
18921           doesn't have the mehod, look at the parent of the parent.
18922         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
18923           to check if a parameter is an in or out parameter
18924           (PARAM_ATTRIBUTE_IN is not set by default).
18925           mono_method_return_message_restore(): Use mono_class_value_size to
18926           get the size of a value type. mono_type_stack_size (parameterType)
18927           does not return the correct value if parameterType is byRef.
18928           mono_load_remote_field(), mono_load_remote_field_new(),
18929           mono_store_remote_field(), mono_store_remote_field_new():
18930           raise exception if the remote call returns an exception.
18931
18932 2003-07-28  Martin Baulig  <martin@ximian.com>
18933
18934         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
18935         method.  This is a wrapper around mono_runtime_invoke() which
18936         boxes the instance object if neccessary.
18937
18938 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
18939
18940         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
18941         metadata.h, row-indexes.h, verify.c: first cut of generics support.
18942
18943 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
18944
18945         * icall.c: disable mcs bug workaround.
18946
18947 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
18948
18949         * object.c (mono_runtime_class_init): Take the metadata_section
18950         mutex before obtaining the domain mutex.
18951
18952         * appdomain.h: Added definition of metadata_section mutex here. 
18953
18954         * object.c: define metadata_mutex here.
18955
18956 2003-07-24  Ravi Pratap  <ravi@ximian.com>
18957
18958         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
18959         fixed.
18960
18961 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
18962
18963         * reflection.c: Fix bug #46669
18964
18965 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18966
18967         * exception.c:
18968         * exception.h:
18969         * icall.c:
18970         * object.h: fill in the type name for TypeLoadException.
18971
18972 2003-07-23  Ravi Pratap  <ravi@ximian.com>
18973
18974         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
18975         relationship between TypeBuilders while compiling corlib) and bug
18976         45993 (Array types returned from the runtime while compiling
18977         corlib were from the loaded corlib).
18978
18979 2003-07-22  Martin Baulig  <martin@ximian.com>
18980
18981         * mono-debug-debugger.c: Reworked the type support a bit more;
18982         distinguish between types and classes.
18983
18984 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
18985
18986         * icall.c: add IsArrayImpl icall.
18987
18988 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
18989
18990         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
18991         initializing real_size only once. Also fix bug #46602.
18992
18993 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
18994
18995         * object.c: Renamed mono_metadata_section to metadata_section.
18996
18997 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
18998
18999         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
19000           empty array if the type is an array. Fixed.
19001           ves_icall_MonoMethod_get_base_definition: if the base method
19002           is abstract, get the MethodInfo from the list of methods of
19003           the class.
19004         * reflection.c: ParameterInfo.PositionImpl should be zero-based
19005           and it was 1-based. Fixed in mono_param_get_objects.
19006
19007 2003-07-20  Martin Baulig  <martin@ximian.com>
19008
19009         * mono-debug.h: Set version number to 31.
19010         (mono_debug_init): Added `MonoDomain *' argument.
19011
19012         * mono-debug-debugger.c: Reworked the type support; explicitly
19013         tell the debugger about builtin types; pass the `klass' address to
19014         the debugger.
19015
19016 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
19017
19018         * image.c: Allow new metadata tables to be loaded without a
19019         warning. Also update the warning message to give the new constant value.
19020                 
19021 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19022
19023         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
19024         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
19025         array type representation changes.
19026
19027 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19028
19029         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
19030         on Environment.Exit () call.
19031
19032 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19033
19034         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
19035         requires a matching corlib.
19036
19037 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
19038
19039         * Changelog: My editor decided to add a CR to each line. Sorry about that.
19040           Committed again without the CRs.
19041         
19042 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
19043
19044         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
19045           getting it from the "this" socket instance. Did not work
19046           if the socket is a subclass of Socket.
19047           Also fixed bug #35371.
19048
19049 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19050
19051         * metadata.c: fixed size for TypedByRef.
19052         * loader.c: when searching for a method, consider the vararg amrker.
19053         * unicode.c, decimal.c: constify some arrays.
19054
19055 2003-07-15  Dick Porter  <dick@ximian.com>
19056
19057         * socket-io.c: Fixed compilation for gcc < 3.2.
19058
19059         Fixed compilation for machines that don't have AF_INET6 (thanks to
19060         Bernie Solomon <bernard@ugsolutions.com> for that part.)
19061
19062         Fixed compile warnings.
19063         
19064         Fixed formatting and line endings.
19065
19066 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
19067
19068         * socket-io.h:
19069         * socket-io.c: Added IPv6 support.
19070
19071 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
19072
19073         * class.c (mono_class_is_assignable_from): New function to implement
19074         the is_assignable_from logic. Used by mono_object_isinst, 
19075         Type::IsAssignableFrom () and the interpreter.
19076
19077         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
19078         Object, even interfaces.
19079         
19080         * object.c (mono_object_isinst): Implement in terms of 
19081         is_assignable_from.
19082
19083         * icall.c (ves_icall_type_is_assignable_from): New icall.
19084
19085 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
19086
19087         * domain.c (foreach_domain): fix compiler warning.
19088
19089 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
19090
19091         * image.c (load_metadata_ptrs): use g_strndup because strndup is
19092         not available on all plattforms
19093
19094 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
19095
19096         * image.h image.c: Store the metadata version string in MonoImage.
19097         * icall.c: New icall to retrieve the image version.
19098         * reflection.c (create_dynamic_image): Fill in the image version field
19099         * reflection.c (build_compressed_metadata): Use the image version
19100         from the image structure.
19101
19102 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19103
19104         * appdomain.c: modified comment.
19105         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
19106         That will be its last iteration when mono_gc_cleanup is called from
19107         mono_runtime_cleanup and before the domain is unloaded.
19108
19109         Fixes bug #45962.
19110
19111 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
19112
19113         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
19114         attributes.
19115
19116 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19117
19118         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
19119         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
19120         Bernie Solomon <bernard@ugsolutions.com>.
19121
19122 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19123
19124         * object.c, object.h: provide mono_object_new_fast() for faster
19125         allocation in some special cases.
19126
19127 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19128
19129         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
19130         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
19131
19132 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19133
19134         * threadpool.c: fix leaks.
19135
19136 2003-07-01  Dick Porter  <dick@ximian.com>
19137
19138         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
19139         using MonoGHashTables.  Fixes threadpool bug posted to list.
19140
19141 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
19142
19143         * image.h, image.c: added support to load an assembly from a byte array.
19144         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
19145         assembly bundle support.
19146
19147 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
19148
19149         * threadpool.c (mono_thread_pool_add): keep a reference to the
19150         AsyncResult to prevent GC
19151
19152 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
19153
19154         * class.c: leak fix.
19155
19156 2003-06-25  Dick Porter  <dick@ximian.com>
19157
19158         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
19159         for the async object, the WaitHandle object will close the handle.
19160         Fixes bug 45321.
19161
19162 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19163
19164         * class.c: in mono_array_class_get (), lookup from the hash with the
19165         same type we insert: this works around a bug in
19166         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
19167         lluis. The real fix will have to wait for after the release.
19168
19169 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19170
19171         * icall.c: fix memory leak when getting type members.
19172
19173 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
19174
19175         * reflection.c: added more pubtoken special cases.
19176
19177 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19178
19179         * class.c: handle field offset correctly when class size
19180         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
19181
19182 2003-06-20  Martin Baulig  <martin@ximian.com>
19183
19184         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
19185         *image' field.
19186
19187 2003-06-20  Martin Baulig  <martin@ximian.com>
19188
19189         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
19190
19191 2003-06-20  Martin Baulig  <martin@ximian.com>
19192
19193         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
19194         just distinguish between variables in registers and variables at
19195         an offset relative to a register.
19196
19197 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19198
19199         * icall.c: #ifdef out latest changes until mcs is fixed.
19200
19201 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19202
19203         * icall.c: return members in metadata order.
19204
19205 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19206
19207         * icall.c: avoid infinite loop in GetTimeZoneData.
19208
19209 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
19210
19211         * icall.c: added Marshal.Prelink/All icalls.
19212
19213 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
19214
19215         * object.c, object.h: fix warnings and do some overflow checking
19216         when creating arrays.
19217
19218 2003-06-17  Dick Porter  <dick@ximian.com>
19219
19220         * file-io.h:
19221         * file-io.c: File attributes need to be tweaked slightly when
19222         passed from the managed to the w32 world.
19223
19224 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19225         * profiler.h profiler-private.h profiler.c: Rework last patch
19226         based on suggestion by Paolo.
19227         
19228 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19229
19230         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
19231         instruction level coverage data collection.
19232         * profiler.h profiler.c (: Added new callback function which can be
19233         used by the profiler to limit which functions should have coverage
19234         instrumentation.
19235         * profiler.c (mono_profiler_load): Call g_module_build_path to
19236         generate the file name of the profiler library.
19237
19238 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19239
19240         * profiler.c, profiler.h, profiler-private.h: added basic block 
19241         coverage profiling API.
19242
19243 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
19244
19245         * reflection.c (mono_reflection_create_runtime_class): Add support
19246         for events in dynamically generated code.
19247
19248         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
19249         not allocated.
19250
19251 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19252
19253         * icall.c: when getting timezone info, return reasonable values if we
19254         can't get the actual data.
19255
19256 2003-06-14  Dick Porter  <dick@ximian.com>
19257
19258         * threads.c (start_wrapper): Remove the reference to the thread
19259         object in the TLS data, so the thread object can be finalized.
19260         This won't be reached if the thread threw an uncaught exception,
19261         so those thread handles will stay referenced :-( (This is due to
19262         missing support for scanning thread-specific data in the Boehm GC
19263         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
19264
19265 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
19266
19267         * reflection.c: ensure streams and tables are first allocated with
19268         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
19269
19270 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19271
19272         * icall.c: fixed GetElementType for byrefs (bug# 44792).
19273
19274 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
19275
19276         * reflection.c (mono_reflection_create_runtime_class): Add support for
19277         properties to dynamically created classes.
19278         * reflection.c: Fix a few places where non-MonoObjects were inserted
19279         into the tokens hashtable.
19280
19281 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19282
19283         * object.c: some support to handle out of memory exceptions.
19284
19285 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
19286
19287         * marshal.c (mono_marshal_get_native_wrapper): support reference
19288         return types
19289
19290 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19291
19292         * object.h, object.c: more portability stuff from Bernie Solomon.
19293         Unexport mono_object_allocate(). Added mono_object_unbox ().
19294         Set exitcode when an unhandled exception is thrown.
19295
19296 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
19297
19298         * marshal.c (mono_marshal_get_native_wrapper): use custom
19299         marshaler for return types.
19300
19301 2003-06-10  Dick Porter  <dick@ximian.com>
19302
19303         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
19304         ip_mreq is available
19305
19306 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
19307
19308         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
19309         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
19310         by Bernie Solomon <bernard@ugsolutions.com>.
19311
19312 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
19313
19314         * gc.c (mono_gc_init): Avoid error message on shutdown when
19315         GC_DONT_GC=1 is used.
19316
19317         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
19318         New icall to return the GUID of a module.
19319
19320 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19321
19322         * class.c: ensure instance size always includes the parent's size
19323         even whem class size is set explicitly (fixes bug#44294).
19324
19325 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19326
19327         * profiler.h, profiler.c: made the simple profiler thread-safe,
19328         get more accurate timing info. Allow the loading of an
19329         externally-developed profiler module.
19330
19331 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
19332
19333         * marshal.c (mono_marshal_get_native_wrapper): improved
19334         class/byref arguments.
19335         (mono_marshal_get_native_wrapper): better string marshaling support.
19336
19337 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
19338
19339         * class.c: ensure .pack and .size are handled correctly and
19340         simplified layout of static fields.
19341
19342 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
19343
19344         * appdomain.c
19345         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
19346
19347         * loader.c (mono_lookup_pinvoke_call): look for modules in the
19348         current directory (fix bug 44008)
19349
19350 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
19351
19352         * marshal.c (mono_marshal_get_native_wrapper): started support for
19353         custom marshalers.
19354         (mono_delegate_to_ftnptr): consider marshalling specifications
19355
19356 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19357
19358         * reflection.c, reflection.h: emit custom marshal info.
19359
19360 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19361
19362         * object.c: free the GError.
19363         * icall.c: added CloseEvent_internal.
19364         * threads.[ch]:
19365         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
19366         call.
19367
19368 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
19369
19370         * loader.c (mono_method_get_signature): Add support for dynamic
19371         assemblies.
19372
19373 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
19374
19375         * reflection.c: fixed bug #43905.
19376
19377 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19378
19379         * class.c, domain.c, icall.c, metadata.h, object.h: support for
19380         handling TypedReference and ArgIterator.
19381         * loader.c, loader.h: added function to get signature at call site.
19382
19383 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19384
19385         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
19386         data readonly. Buglets and warning fixes. Some MethodSpec support.
19387
19388 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19389
19390         * class.h, class.c, object.c: remove relative numbering support.
19391
19392 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
19393
19394         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
19395         free the string, until we get a chance to fix Gtk#
19396
19397 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19398
19399         * marshal.c: revert last patch.
19400
19401 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19402
19403         * icall.c: updates for new mono_class_vtable() not calling
19404         the type constructor anymore.
19405
19406 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
19407
19408         * object.h, object.c: separate vtable creation from type
19409         initialization. Make running the .cctor thread safe.
19410
19411 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
19412
19413         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
19414
19415 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
19416
19417         * loader.c (mono_get_method): consider calling convention
19418
19419 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
19420
19421         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
19422         to return the invisible global type for a module.
19423
19424         * reflection.c (mono_image_build_metadata): Emit global fields too.
19425
19426 2003-05-20  Peter Williams  <peterw@ximian.com>
19427
19428         * loader.c (mono_lookup_internal_call): Add a few newlines.
19429
19430 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
19431
19432         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
19433         literal strings.
19434
19435         * appdomain.c (set_domain_search_path): Recalculate search path when
19436         AppDomainSetup.PrivateBinPath changes.
19437
19438         * object.c (mono_class_compute_gc_descriptor): It turns out some
19439         parts of the class libs (like System.Thread) holds pointers to
19440         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
19441         to treat native int a pointer type here.
19442         
19443 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
19444
19445         * appdomain.h, domain.c: add hashtable for jump target resolution.
19446
19447 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
19448
19449         * reflection.h reflection.c icall.c: Added new icalls 
19450         GetManifestResourceInfoInternal, GetModulesInternal and support
19451         infrastructure.
19452
19453 2003-05-16  Dick Porter  <dick@ximian.com>
19454
19455         * icall.c:
19456         * file-io.h:
19457         * file-io.c: Implement System.IO.MonoIO::GetTempPath
19458
19459 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
19460
19461         * object.c: mono_store_remote_field: little fix to previous patch.
19462
19463 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19464
19465         * class.c: add constructors to array classes.
19466         * icall.c: special case array construction for InternalInvoke (),
19467
19468 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
19469
19470         * class.h class.c reflection.c object.c: Added support for field
19471         defaults in dynamically generated classes.
19472
19473 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19474
19475         * reflection.c: properly encode charset for ddlimport.
19476
19477 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
19478
19479         * threads.c: allow compiling without GC.
19480
19481 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19482
19483         * appdomain.h, object.c, object.h, threads.c, threads.h: added
19484         handling of thread static data.
19485
19486 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19487
19488         * reflection.h, reflection.c: added mono_custom_attrs_free ().
19489
19490 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
19491
19492         * class.c (mono_array_class_get): always set the serializable flags
19493         (mono_array_class_get): always set the SEALED attribute for array types
19494
19495 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
19496
19497         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
19498         attributes (fix for bug 42021).
19499
19500 2003-05-12  Dick Porter  <dick@ximian.com>
19501
19502         * gc.c: Don't run finalizers when the finalizer thread is
19503         finishing up, because the default domain has already been
19504         destroyed.
19505
19506 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
19507
19508         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
19509         value is null, we should throw an exception.   This is slightly
19510         different than the other conventions used for the constructor.
19511
19512 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19513
19514         * socket-io.c: fixed windows build.
19515
19516 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19517
19518         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
19519
19520 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
19521
19522         * object.c (mono_string_new_wrapper): Compatibility fix for MS
19523         compilers.
19524
19525 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
19526
19527         * class.c (mono_class_layout_fields): Add experimental GC aware
19528         auto layout facility. Requires class library changes to work correctly.
19529
19530         (mono_class_setup_vtable): Avoid overriding explicit interface
19531         method implementations. Fixes iface3.exe test.
19532
19533         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
19534         object reference.
19535         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
19536         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
19537
19538         * metadata.h: Add new type classification macro which determines
19539         whenever the type holds an object reference.
19540
19541 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
19542
19543         * marshal.c (mono_marshal_get_native_wrapper): cleanups
19544
19545 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
19546
19547         * gc.c (finalizer_thread): Work around a GC bug.
19548
19549 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
19550
19551         * marshal.c (emit_struct_conv): allow unions
19552
19553         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
19554
19555 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
19556
19557         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
19558
19559 2003-05-06  Martin Baulig  <martin@ximian.com>
19560
19561         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
19562
19563 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19564
19565         * socket-io.c:
19566         (Select_internal): allow NULLs, don't create arrays if not needed.
19567         Coupled with Socket.cs changes.
19568
19569         * threadpool.c:
19570         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
19571         register a finalizer for it that will close the semaphore handle. This
19572         fixes the leak and make Lupus' test run with > 4080 loops.
19573
19574 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
19575
19576         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
19577         Jerome Laban (bug #42287)
19578
19579 2003-05-02  Martin Baulig  <martin@ximian.com>
19580
19581         * debug-mono-symfile.h
19582         (MonoSymbolFile): Moved declaration into mono-debug.h.
19583         (MonoDebugMethodJitInfo): Likewise.
19584         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
19585         argument.
19586         (_mono_debug_address_from_il_offset): Take a
19587         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
19588
19589         * mono-debug.h
19590         (MonoDebugDomainData): New struct.
19591         (mono_debug_get_domain_data): New function.
19592         (mono_debug_add_method): Take an additional `MonoDomain *'
19593         argument.
19594         (mono_debug_source_location_from_address): Likewise.
19595         (mono_debug_il_offset_from_address): Likewise.
19596         (mono_debug_address_from_il_offset): Likewise.
19597
19598 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
19599
19600         * reflection.c: one more check for null type in custom attrs.
19601
19602 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19603
19604         * reflection.c: avoid warning (comparison is always false due to limited
19605         range of data type).
19606
19607 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19608
19609         * icall.c: throw an exception in Type.GetField if the argument 'name'
19610         is NULL.
19611
19612 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
19613
19614         * reflection.c: fixed handling of enums in named arguments to custom
19615         attributes (bug #42123).
19616
19617 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19618
19619         * reflection.c: use the right array element type and handle
19620         a null for a Type argument, too.
19621
19622 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
19623
19624         * reflection.c: handle arrays as arguments to custom attributes.
19625
19626 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
19627
19628         * reflection.c: handle a string value in a custom attr
19629         ctor that takes an object.
19630
19631 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
19632
19633         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
19634         (fix bug #42063)
19635
19636 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
19637
19638         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
19639
19640 2003-04-27  Martin Baulig  <martin@ximian.com>
19641
19642         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
19643         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
19644         MONO_DEBUGGER_EVENT_BREAKPOINT.
19645         (mono_breakpoint_trampoline_code): Removed.
19646         (mono_debugger_event_handler): The last argument is now a
19647         `guint32'.
19648         (mono_debugger_insert_breakpoint_full): Removed the
19649         `use_trampoline' argument.
19650         (mono_debugger_method_has_breakpoint): Likewise.
19651         (mono_debugger_trampoline_breakpoint_callback): Renamed to
19652         mono_debugger_breakpoint_callback(); take the method and
19653         breakpoint number as arguments.
19654
19655 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19656
19657         * metadata.c: fix off by one when loading parameters attributes.
19658
19659 2003-04-24  Martin Baulig  <martin@ximian.com>
19660
19661         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
19662
19663 2003-04-24  Martin Baulig  <martin@ximian.com>
19664
19665         * mono-debug-debugger.c: Moved all code which interacts with the
19666         Mono Debugger here.
19667
19668         * debug-mono-symfile.c: This code now just deals with the symbol
19669         file itself, the debugger code is now in mono-debug-debugger.c.
19670
19671 2003-04-23  Martin Baulig  <martin@ximian.com>
19672
19673         * mono-debug.c (mono_debug_source_location_from_il_offset):
19674         New method; like mono_debug_source_location_from_address(), but
19675         takes an IL offset instead of a machine address.
19676
19677 2003-04-23  Martin Baulig  <martin@ximian.com>
19678
19679         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
19680         `line' field; this is now computed by the debugger.
19681
19682 2003-04-23  Martin Baulig  <martin@ximian.com>
19683
19684         * mono-debug.[ch]: New files.  This is the new debugging interface.
19685
19686         * mono-debug-debugger.[ch]: New files.  Moved all code which
19687         interacts with the Mono Debugger here.
19688
19689 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
19690
19691         * domain.c (mono_init): initialize mono_defaults.monitor_class
19692
19693 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
19694
19695         * reflection.c (method_encode_code): Add a spicy exception to help
19696         future compiler authors.
19697
19698 2003-04-21  Martin Baulig  <martin@ximian.com>
19699
19700         * icall.c
19701         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
19702         Make this work with relative pathnames; g_filename_to_uri() needs
19703         an absolute filename.
19704
19705 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
19706
19707         * icall.c: Track name changes in Object and ValueType.
19708
19709 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
19710
19711         * metadata.c (mono_type_stack_size): size should be a multiple of
19712         sizeof (gpointer)
19713
19714 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19715
19716         * gc.c:
19717         (internal_domain_finalize): moved into mono_domain_finalize. No need
19718         to create another thread because the finalizers will be run in the
19719         finalizer thread.
19720         
19721         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
19722         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
19723         to be run (MS does this too).
19724
19725 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
19726
19727         * object.c (mono_class_compute_gc_descriptor): Update comment.
19728
19729         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
19730
19731         * image.h: Add synchronized wrapper cache.
19732
19733         * image.c (do_mono_image_open): Initialize cache.
19734
19735         * reflection.c (create_dynamic_mono_image): Initialize cache.
19736
19737 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19738
19739         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
19740         ves_icall_System_Buffer_ByteLengthInternal.
19741
19742 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19743
19744         * reflection.c: setup klass->nested_in earlier. Allow
19745         a dash in the assembly name.
19746
19747 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
19748
19749         * metadata.c (mono_type_to_unmanaged): dont access
19750         type->data.klass for MONO_TYPE_OBJECT
19751         (mono_type_to_unmanaged): consider System.Delegate class
19752
19753 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
19754
19755         * class.c: just setup supertypes in the proper place instead of
19756         initializing the full element class for arrays.
19757
19758 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
19759
19760         * class.c: ensure the element class of arrays is initialized.
19761         Setup the supertype info for array classes, too.
19762
19763 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
19764
19765         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
19766
19767 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19768
19769         * Makefile.am: re-added -m option when running cygpath. This way,
19770         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
19771         separator.
19772         * mono-config.c: same codepath for locating mono config file for WIN32
19773         and the rest.
19774         * assembly.c: if mono_assembly_setrootdir is called, don't override
19775         the value set.
19776
19777 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19778
19779         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
19780         MONO_ASSEMBLIES variable.
19781
19782 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
19783
19784         * icall.c: added Assembly::GetNamespaces() icall.
19785
19786 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19787
19788         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
19789
19790 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
19791
19792         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
19793         * object.c: fixed bug in the construction of vtable for proxies
19794
19795 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
19796
19797         * object.c (mono_array_new): Mark mono_array_new as an icall.
19798
19799 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19800
19801         * class.c: fixed test for public method when overriding interfaces.
19802         Closes bug #40970.
19803
19804 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19805
19806         * appdomain.h, domain.c: added mono_domain_foreach() to
19807         be able to access the currently loaded appdomains.
19808         * object.c: make string interning work across sppdomains.
19809         Mark some functions for use as icalls.
19810
19811 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
19812
19813         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
19814
19815         * reflection.h reflection.c: Allocate long living data using 
19816         GC_MALLOC_ATOMIC so the collector does not need to scan it.
19817
19818         * reflection.c: Double the allocation size in streams instead of
19819         increasing it, to prevent unneccesary copying on large assemblies.
19820         
19821         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
19822         creation if the assembly does not have the Run flag set.
19823
19824 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19825
19826         * class.h: avoid the C++ keywords in header files (Jerome Laban
19827         spotted and fixed this).
19828
19829 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19830
19831         * object.c:
19832         (mono_unhandled_exception): fill in the arguments for the
19833         UnhandledException event. Only trigger that event for the default
19834         domain (as MS does).
19835
19836 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
19837
19838         * object.c: Improve typed allocation stuff based on suggestions from
19839         Paolo. Also turn it on if the GC library supports it.
19840
19841 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
19842
19843         * object.c object.h class.h: Added experimental typed allocation
19844         facility using the interfaces in gc_gcj.h.
19845
19846         * os/gc_wrapper.h: Added new include files.
19847         
19848 2003-04-03  Martin Baulig  <martin@ximian.com>
19849
19850         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
19851         which is not yet enabled by default.
19852
19853         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
19854         functions.
19855         (mono_gc_lock, mono_gc_unlock): New static functions.
19856
19857         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
19858         functions; stop/start the world for the garbage collector.  This
19859         is using the windows API; we need to complete the SuspendThread()/
19860         ResumeThread() implementation in the io-layer to make this work on Unix.
19861         (mono_gc_push_all_stacks): New public function; tells the garbage
19862         collector about the stack pointers from all managed threads.
19863
19864 2003-04-03  Martin Baulig  <martin@ximian.com>
19865
19866         * object.h (MonoThread): Added `gpointer stack_ptr'.
19867
19868         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
19869
19870 2003-04-03  Martin Baulig  <martin@ximian.com>
19871
19872         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
19873
19874 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
19875
19876         * reflection.c (typebuilder_setup_fields): Initialize field.first and
19877         field.last.
19878
19879 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
19880
19881         * loader.c (mono_lookup_internal_call): Report the corlib that is
19882         out of sync.
19883
19884 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
19885
19886         * icall.c (ves_icall_type_GetTypeCode): fixed check for
19887         System.DBNull (it's class not valuetype).
19888
19889 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
19890
19891         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
19892         if the array method was already assigned a token (fixes bug#40646).
19893
19894 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
19895
19896         * reflection.c (mono_reflection_get_type): Attempt type resolve even
19897         if no assembly is given.
19898
19899 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
19900
19901         * metadata.h: Added the new tables.
19902
19903         * row-indexes.h: Added definitions for new tables.
19904
19905         * metadata.c: Add schemas for new tables, and add support for
19906         computing the sizes of them.
19907
19908         * class.c: Update for handling the new type cases.
19909
19910 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
19911
19912         * metadata.h (MONO_TYPE_IS_VOID): new macro
19913
19914 2003-03-31  Martin Baulig  <martin@ximian.com>
19915
19916         * threads.h (MonoThreadCallbacks): Added `thread_created'.
19917
19918         * threads.c (mono_thread_new_init): Call `thread_created' in the
19919         mono_thread_callbacks.
19920
19921 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
19922
19923         * loader.h: added marshalbyrefobject_class to mono_defaults
19924         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
19925         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
19926           generation of output parameters.
19927           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
19928         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
19929           contextbound and the target object belongs to the context of the caller.
19930         * object.h: added context and unwrapped_server variables in MonoRealProxy.
19931         * object.c: Implemented support for interfaces and abstract classes
19932           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
19933           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
19934
19935 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
19936
19937         * class.h class.c (mono_class_is_subclass_of): New function.
19938         
19939         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
19940         routines for most common case (calls from ArrayList::ToArray).
19941
19942         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
19943         routine so programs which call Environment::Exit() can be profiled.
19944
19945         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
19946         Added MONO_ARCH_SAVE_REGS.
19947
19948         * icall.c (ves_icall_type_is_subtype_of): Use new function.
19949
19950 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
19951
19952         * blob.h: Add a couple of new MonoType types definitions.
19953
19954         * tabledefs.h: Add a couple of new call convs.
19955
19956 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
19957
19958         * reflection.h (MonoReflectionDynamicAssembly): track changes in
19959         the layout of the class.
19960
19961         * reflection.c (alloc_table): double the size on overflow to avoid
19962         unnecessary copying.
19963
19964         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
19965         avoid filling out metadata tables and blobs. Also set mb->ilgen to
19966         null so it can be garbage collected.
19967         
19968 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
19969
19970         * reflection.c (mono_reflection_get_type): Return the resolved type
19971         only if it is in the assembly we searched.
19972
19973         * reflection.c (ensure_runtime_vtable): Initialize method slots.
19974
19975         * class.c (mono_class_setup_vtable): Set the slot of the overriding
19976         method.
19977
19978 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19979
19980         * appdomain.c:
19981         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
19982         the right one is 'file:///blah', but MS allows it.
19983         * assembly.c:
19984         (mono_assembly_open): allow 'file://blah'
19985
19986         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
19987
19988 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
19989
19990         * socket-io.c: fixes bug #40310.
19991
19992 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
19993
19994         * reflection.c (mono_reflection_parse_type): handle deeply nested
19995         types correctly.
19996
19997         * reflection.c (mono_image_create_token): Use unique token values
19998         since they will be put into a hash table.
19999
20000         * class.c (mono_class_setup_vtable): If a method occurs in more than
20001         one place in the vtable, and it gets overriden, then change the
20002         other occurances too.
20003
20004         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
20005         object as return type.
20006
20007 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20008
20009         * icall.c: Deleted "ToString" implementation for double and float
20010         because they are full implemented in managed code.
20011
20012 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20013
20014         * reflection.c, reflection.h: implemented and exported functions
20015         to retrieve info about custom attributes.
20016
20017 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20018
20019         * appdomain.c: moved Uri handling to assembly.c
20020         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
20021         work when using a file Uri in *nix and windows.
20022
20023         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
20024         GetReferencedAssemblies.
20025
20026 2003-03-18  Dick Porter  <dick@ximian.com>
20027
20028         * icall.c: Rename a couple of internal calls
20029
20030         * threads.c: Set the thread state to Stopped when a thread exits.
20031         Fixes bug 39377.
20032
20033 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
20034
20035         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
20036         New icall.
20037
20038         * object.c (mono_class_vtable): fix warning.
20039
20040 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
20041
20042         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
20043
20044         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
20045         memory.
20046         (method_encode_clauses): Create exception info structures in the right
20047         order.
20048         (mono_reflection_setup_internal_class): Initialize supertypes field.
20049
20050         * class.c object.c: Handle interfaces which implement other interfaces 
20051         correctly.
20052
20053         * class.h class.c: Move the supertypes array initialization code into 
20054         a separate function so it can be used for dynamic types too. Also call
20055         it earlier, in mono_class_init(), since it can be used before the
20056         type is initialized.
20057
20058 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20059
20060         * Makefile.am:
20061         * assembly.c:
20062         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
20063
20064         * appdomain.c:
20065         * appdomain.h:
20066         * marshal.c:
20067         * object.c: remove warnings.
20068
20069 2003-03-13  Martin Baulig  <martin@ximian.com>
20070
20071         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
20072         (MonoDebugLexicalBlockEntry): New types.
20073
20074         * debug-mono-symfile.c
20075         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
20076
20077 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20078
20079         * process.c: ret can be any non-zero value accroding to MS doc.
20080
20081 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
20082
20083         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
20084         fixing a warning for a miss-used prototype, would have cause
20085         random memory corruption.
20086
20087 2003-03-07  Martin Baulig  <martin@ximian.com>
20088
20089         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
20090         getting really annoying ....
20091
20092 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
20093
20094         * reflection.c (fixup_method): added support for array methods.
20095
20096 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
20097
20098         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
20099         (pointed out by Michael Adams).
20100
20101 2003-03-04  Dick Porter  <dick@ximian.com>
20102
20103         * icall.c: Temporarily reverted the Double and Single ToString()
20104         change, because it broke nunit.
20105
20106 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
20107
20108         * object.h, threads.h: make include files compatible with C++
20109         (patch by Jerome Laban <jlaban@wanadoo.fr>).
20110
20111 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20112
20113         * icall.c: Erased ToString helper functions for Double and Single.
20114         Now, that implementations ar all in managed code (Double and Single
20115         Formatters).
20116
20117 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
20118
20119         * appdomain.c: Added method for initializing the default context of
20120         a domain. Added internal call for getting the default context.
20121         * appdomain.h: Added context variable in MonoDomain struct.
20122         * domain.c: mono_domain_set also sets the default context of the domain
20123         * icall.c: Mapped internal method InternalGetDefaultContext.
20124         * object.c: mono_object_get_virtual_method returns always a remoting
20125         wrapper if the object is a transparent proxy.
20126         mono_runtime_invoke_array: when creating an object by calling the
20127         constructor, if the created object is a proxy, then the constructor should
20128         be called using the a remoting wrapper.
20129
20130 2003-03-03  Dick Porter  <dick@ximian.com>
20131
20132         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
20133         variable so it compiles on solaris.  Problem spotted by
20134         Christopher Taylor <ct@cs.clemson.edu>
20135
20136 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20137
20138         * appdomain.c:
20139         (get_info_from_assembly_name): don't leak value.
20140
20141         * icall.c:
20142         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
20143         result.
20144
20145 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
20146
20147         * assembly.c: export mono_image_load_references ().
20148         * class.c: handle function pointers. mono_class_from_name() now
20149         supports nested type names directly.
20150
20151 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
20152
20153         * reflection.h reflection.c: Encode already created dynamic methods 
20154         and fields correctly as a DEF instead of a REF.
20155
20156         * reflection.c: Get rid of the force_ref argument to 
20157         mono_image_typedef_or_ref since it was wrong in the first place.
20158
20159         * string-icalls.c: add error checking to string constructors according
20160         to the MSDN docs.
20161
20162         * reflection.c: Emit types in the order their TypeBuilders were 
20163         created. Previously, a new table index was assigned to each type before
20164         the tables were emitted. This was wrong because the signature blob
20165         might already refer to a type by its original table index.
20166
20167 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
20168
20169         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
20170         change.
20171         
20172 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20173
20174         * Makefile.am: make assemblies dir have \ instead of / on windows.
20175
20176 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
20177
20178         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
20179         iterate over the NESTEDCLASS table using a linear search since the
20180         table is not guaranteed to be sorted by the secondary key.
20181
20182         * class.c (mono_class_create_from_typedef): fixed up call to
20183         mono_metadata_nesting_typedef.
20184         
20185 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
20186
20187         * marshal.c (mono_string_to_byvalstr): clear the memory as
20188         suggested by Jerome Laban <jlaban@wanadoo.fr>
20189
20190 2003-02-26  Dick Porter  <dick@ximian.com>
20191
20192         * process.c: Cope with padding in .rsrc blocks
20193
20194 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
20195
20196         * metadata.h: reverted the filter_len change, it breaks reflection
20197         
20198 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
20199
20200         * metadata.h: added a new field to store the filter_len
20201         
20202
20203 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
20204
20205         * reflection.c: handle custom attributes for types and members
20206         created with Reflection.Emit (bug#38422).
20207
20208 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
20209
20210         * reflection.c: define RTSpecialName automatically for constructors for
20211         compatibility with MS.NET.
20212
20213         * reflection.c (mono_reflection_create_runtime_class): initialize
20214         nested_in field of dynamically created classes.
20215
20216 2003-02-22  Martin Baulig  <martin@ximian.com>
20217
20218         * debug-mono-symfile.h: Incremented version number.
20219
20220 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
20221
20222         * object.h icall.c process.c: fix warnings.
20223
20224 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
20225
20226         * appdomain.h appdomain.c:
20227         (mono_domain_try_type_resolve): split the 
20228         name_or_tb argument into a name and a tb argument.
20229         (mono_domain_has_type_resolve): new function to check whenever the
20230         application has registered a TypeResolve event handler.
20231         
20232         * icall.c reflection.h reflection.c: move the type resolve logic into
20233         mono_reflection_get_type () so it will be invoked when 
20234         Assembly::GetType () is called.
20235
20236         * reflection.c:
20237         (mono_reflection_get_type): renamed to get_type_internal.
20238         (mono_reflection_get_type): fixed type name generation so it works 
20239         for nested types too.
20240         (mono_reflection_get_type): call has_type_resolve () to avoid the 
20241         costly type name generation if there is no resolve event handler.
20242
20243 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20244
20245         * class.c, image.c: load exported types from file references.
20246
20247 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
20248
20249         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
20250           used to cache the managed methods used to create proxies and make 
20251           remote invocation of methods.
20252         * class.h: Added in MonoVTable a flag to indicate that a class needs 
20253           to be remotely created.
20254         * object.c: Modified the method mono_class_vtable(). It now initializes 
20255           the remote flag of the vtable. Modified mono_object_new_specific(), 
20256           so now it checks the remote flag.
20257         * icall.c: Added a couple of internal methods, one for enabling instance 
20258           creation interception for a type, and one for creating objects bypassing
20259           the remote check.
20260
20261 2003-02-18  Martin Baulig  <martin@ximian.com>
20262
20263         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
20264         New interncall to get a method's metadata token.
20265
20266         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
20267         New interncall for the debugger.
20268
20269 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
20270
20271         * class.c (mono_class_setup_vtable): allocate supertype array
20272
20273 2003-02-18  Martin Baulig  <martin@ximian.com>
20274
20275         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
20276
20277 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20278
20279         * reflection.c:
20280         (assembly_name_to_aname): jump over unknown properties (i've found
20281         something like: 'type, assembly, version=xxx, custom=null, public...',
20282         so now will ignore custom=null and still get the rest of the values).
20283
20284 2003-02-17  Dick Porter  <dick@ximian.com>
20285
20286         * threads.c: Have Thread.Start() wait for a semaphore to signal
20287         that the thread has set up all its local data.  This fixes bug
20288         34323, where Abort() raced the new thread's TLS data.
20289
20290         Also removes the handle_store() call from start_wrapper, because
20291         threads are now always created suspended and there is no longer a
20292         race between the parent and child threads to store the info.
20293
20294 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
20295
20296         * image.c: explain the #- heap issue in a message, hopefully
20297         avoiding FAQs on mono-list.
20298
20299 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20300
20301         * icall.c:
20302         (GetEntryAssembly): if the domain has not invoked
20303         AppDomain.ExecuteAssembly yet, return the assembly of the default
20304         AppDomain.
20305
20306 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
20307
20308         * class.c (mono_ldtoken): make it work in dynamic assemblies.
20309
20310 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
20311
20312         * metadata.c, reflection.c: simple speedup to type hash
20313         and equals code.
20314
20315 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
20316
20317         * image.c, image.h, class.c, assembly.c: move module loading
20318         to MonoImage. When loading metadata, consider alignemnet from
20319         the start of metadata, not from the metadata address in memory.
20320
20321 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
20322
20323         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
20324         AssemblyBuilder objects. Factored out custom attribute creation into
20325         a separate function.
20326         (create_custom_attr): new function to create custom attributes.
20327
20328 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
20329
20330         * Makefile.am: Got tired of typing the full pathname to pedump.
20331         Until there is another option, am installing this.
20332
20333 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
20334
20335         * class.c (class_compute_field_layout): always set field->parent 
20336         (mono_ldtoken): use mono_defaults.fieldhandle_class;
20337
20338 2003-02-11  Dick Porter  <dick@ximian.com>
20339
20340         * threads-types.h:
20341         * monitor.c: Rewrote Monitor, making lock much faster and
20342         Pulse/Wait work as specified.  Also uses much fewer handles, and only
20343         creates them as needed.
20344
20345         * exception.c: Added SynchronizationLockException
20346
20347         * threads.c: Deleted old Monitor implementation.  The new one is
20348         in a new file.
20349
20350 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
20351
20352         * class.c: handled TypedReference type code. Set the correct size for
20353         class data. Setup interface_offsets for interface classes, too.
20354
20355 2003-02-09  Martin Baulig  <martin@ximian.com>
20356
20357         * debug-mono-symfile.h: Reflect latest symbol writer changes.
20358
20359 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
20360
20361         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
20362         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
20363         * object.c: fixed mono_object_get_virtual_method () for interfaces.
20364         * verify.c: check for code that runs after the end of the method.
20365
20366 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20367
20368         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
20369         "System.Math::Round2".
20370         * sysmath.h: Added Floor, Round and Round2 definitions.
20371         * sysmath.c: Modified certain functions that were not 100% compliant
20372         with MS.NET (math precision) and added the implementation of Floor,
20373         Round and Round2.
20374
20375 2003-02-07  Martin Baulig  <martin@ximian.com>
20376
20377         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
20378
20379 2003-02-07  Martin Baulig  <martin@ximian.com>
20380
20381         * debug-mono-symfile.c: Reflected latest symwriter changes.
20382         (mono_debug_create_mono_symbol_file): Removed.
20383         (mono_debug_open_mono_symbol_file): Take an argument which
20384         specifies whether to create a dynamic symbol file.
20385
20386 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
20387
20388         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
20389
20390 2003-02-05  Martin Baulig  <martin@ximian.com>
20391
20392         * reflection.c (mono_image_build_metadata): Make this public,
20393         protect it against being called multiple times, don't create
20394         resources and don't build the compressed metadata here.
20395         (mono_image_create_pefile): Do this here.
20396
20397         * icall.c
20398         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
20399
20400 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20401
20402         * socket-io.c: fixed bug #36322.
20403
20404 2003-02-06  Piers Haken <piersh@friskit.com>
20405
20406         * appdomain.[ch]:
20407         * class.h:
20408         * debug-mono-symfile.c:
20409         * icall.c:
20410         * loader.c:
20411         * mono-config.c:
20412         * monosn.c:
20413         * reflection.c:
20414         * socket-io.c: warning cleanups
20415
20416 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
20417
20418         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
20419         function. works like remoting invoke, but does a check for the Proxy first.
20420
20421 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
20422
20423         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
20424
20425 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
20426
20427         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
20428         array of pointers.
20429         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
20430         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
20431
20432         * object.c (mono_store_remote_field_new): used by the new jit
20433         instead of mono_store_remote_field
20434         (mono_load_remote_field_new): used by the new jit
20435         instead of mono_load_remote_field
20436
20437 2003-02-05  Patrik Torstensson
20438
20439         * appdomain.c: changed unload to take the domain id instead
20440         of domain
20441         
20442         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
20443
20444
20445 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20446
20447         * appdomain.c: don't look for assemblies in ApplicationBase if
20448         PrivateBinPathProbe is set.
20449
20450 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20451
20452         * object.c: make the first argument in main_args contain the absolute
20453         path to the assembly. Fixes bug #37511.
20454
20455 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20456
20457         * icall.c: get correct UTC offset for countries not using daylight
20458         time saving. Fixes bug #30030.
20459
20460 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20461
20462         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
20463         and 1 are the family).
20464
20465 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
20466
20467         * icall.c (ves_icall_InternalExecute): removed wrong assertion
20468
20469         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
20470
20471 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
20472
20473         * reflection.c: added support for SignatureHelper tokens, which is
20474         needed by the Calli opcode.
20475
20476         * reflection.h: track changes to SignatureHelper class.
20477
20478         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
20479
20480 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20481
20482         * appdomain.c: fixed loading assemblies from PrivateBinPath.
20483
20484 2003-02-03  Patrik Torstensson
20485         * appdomain.[c|h], domain.c : 
20486          - Added support for getting a domain via domain id
20487          - Support for setting and getting domain from System.AppDomain 
20488            (used in cross appdomain channel)
20489          - Added support for get/set for a MonoAppContext on a thread 
20490            (Context class in System.Runtime.Remoting.Contexts),
20491          - Removed hack in Get/SetData and ExecuteAssembly.
20492         
20493         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
20494         the managed world to get control when a proxy is created.
20495
20496         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
20497         
20498 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
20499
20500         * icall.c
20501         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
20502         Populate the codebase field as well.
20503
20504 2003-02-02  Martin Baulig  <martin@ximian.com>
20505
20506         * debug-mono-symfile.c
20507         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
20508         (mono_debug_symfile_add_method): Allow interncalls.
20509
20510 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20511
20512         * icall.c: throw parse exception if strtod fails or the string is empty.
20513
20514 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
20515
20516         * marshal.c: handle object type separately from defined
20517         class types.
20518
20519 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
20520
20521         * marshal.c: handle NATIVE_LPSTR for strings when it's
20522         explicitly specified.
20523
20524 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
20525
20526         * reflection.c, reflection.h, icall.c: setup the reflection
20527         handle cache for ModuleBuilders and AssemblyBuilders.
20528
20529 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
20530
20531         * reflection.c (reflection_methodbuilder_to_mono_method): set
20532         pinvoke flag
20533
20534 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20535
20536         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
20537
20538 2003-01-29  Dick Porter  <dick@ximian.com>
20539
20540         * threads.c: No need for the fake_thread kludge now that Thread
20541         doesn't run a class constructor
20542         
20543 2003-01-29  Dick Porter  <dick@ximian.com>
20544
20545         * threads.c: Use g_direct_hash instead of the rather bogus
20546         g_int_hash
20547
20548 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
20549
20550         * marshal.c (mono_marshal_get_native_wrapper): add check for null
20551         (fix pinvoke12.exe)
20552         (mono_marshal_get_struct_to_ptr): generate valid IL code
20553         (mono_marshal_get_ptr_to_struct): generate valid IL code
20554         (*): correctly set sig->pinvoke, we need to memdup the signature
20555         to do that
20556
20557 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20558
20559         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
20560         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
20561
20562 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
20563
20564         * profiler.c: provide more callers information.
20565
20566 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
20567
20568         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
20569
20570         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
20571
20572         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
20573
20574 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20575
20576         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
20577         exception instead of going into an infinite loop on dates which it 
20578         can't yet handle.
20579
20580         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
20581         out-of-range exception if needed.
20582
20583         * class.c (mono_class_setup_vtable): allow a virtual method to provide
20584         an implementation for an interface method and to override an inherited
20585         method at the same time. 
20586         Imagine a scenario when a virtual method is used to override a
20587         virtual abstract method in a parent class, and this same method 
20588         provides an implementation for an method inherited from an interface. 
20589         In this case, the interface resolution code will set im->slot, which 
20590         means that the virtual method override pass will skip this method 
20591         which means a pointer to the abstract method inherited from the parent
20592         will remain in the vtable of this non-abstract class.
20593
20594         * class.c: (mono_class_setup_vtable): continue search for a real 
20595         method if only an abstract method is found.     
20596
20597 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
20598
20599         * reflection.c: add size to encoding for ByValStr and ByValArray
20600         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
20601
20602 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20603
20604         * class.c (mono_class_setup_vtable): pass the override info as an
20605         argument.
20606
20607         * class.c (mono_class_setup_vtable): set the slot of overriding methods
20608         correctly.
20609         
20610         * reflection.c (ensure_runtime_vtable); add support for method 
20611         overrides.
20612         
20613 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20614
20615         * reflection.c (resolution_scope_from_image): Hack to work to work with
20616         dynamic assemblies.
20617
20618         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
20619         added a 'force_ref' argument to force this function to allways return 
20620         a TypeRef. This is needed by mono_image_get_memberref_token ().
20621         
20622 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20623
20624         * reflection.c (mono_image_get_type_info): interfaces really don't have
20625         a parent.
20626
20627         * reflection.c (mono_image_basic_init): fill out missing fields of
20628         image structure.
20629
20630         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
20631         dynamic assemblies. This is required so dynamic assemblies show up in
20632         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
20633         Type::GetType() etc. This is consistent with MS behaviour.
20634
20635         * image.c image.h reflection.c: add newly created classes to the name 
20636         cache so mono_class_get () will find them.      
20637
20638 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20639
20640         First part of changes to get IKVM.NET running under mono.
20641         
20642         * appdomain.h, appdomain.c: added new function 
20643         mono_domain_try_type_resolve() which will emit TypeResolve events. 
20644         This function will call AppDomain::DoTypeResolve to do the actual work.
20645
20646         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
20647         moved existing code dealing with dynamic tokens to a new function 
20648         called mono_reflection_lookup_dynamic_token (). This function will 
20649         raise TypeResolve events when appropriate. Since reflection.c is not 
20650         part of libmetadata, a new hook function called 
20651         mono_lookup_dynamic_token() is added to class.c which will call this.
20652
20653         * assembly.h assembly.c: make the invoke_load_hook function public,
20654         so it can be called for dynamic assemblies.
20655
20656         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
20657
20658         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
20659         type isn't found.
20660
20661         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
20662         MonoGHashTable, since it contains pointers to objects which the GC 
20663         needs to track.
20664
20665         * assembly.c (search_loaded): remove unused variable.
20666         
20667 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
20668
20669         * object.c: fixed issue exposed by gcc-generated IL programs
20670         that use RVA data for pointers.
20671
20672 2003-01-25  Martin Baulig  <martin@ximian.com>
20673
20674         * threads.c (start_wrapper): Moved the initialization of
20675         `start_func' above the mono_new_thread_init() call to which we
20676         pass it as argument.
20677
20678 2003-01-24  Martin Baulig  <martin@ximian.com>
20679
20680         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
20681         the MonoThread pointer.
20682
20683 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
20684
20685         * icall.c: Rename `PowImpl' to Pow.
20686
20687 2003-01-23  Dick Porter  <dick@ximian.com>
20688
20689         * threads.c (start_wrapper): Create a Thread object if needed, so
20690         the Main() thread can do the class initialisation in a subthread
20691         that has been set up to allow managed code execution.
20692
20693         Pass the thread ID instead of the MonoThread pointer to the thread
20694         start and attach callbacks.  This change is required, because the
20695         jit thread start callback must be called _before_ the Thread
20696         object can be created.
20697         
20698         (mono_thread_init): Removed much object creation code that is no
20699         longer needed.  No managed code is called from here now.
20700
20701         * object.c (mono_runtime_exec_managed_code): Create a subthread
20702         for Main, and call back to the runtime to use it.
20703         Set the exit code when Main exits.
20704
20705         * gc.c: Make sure domain finalisation happens in a subthread.
20706         Re-enable threaded GC, fixing bug 31333 (again).
20707
20708         * environment.c: System.Environment internall calls (so far just
20709         ExitCode is here, the others are still in icall.c)
20710
20711         * appdomain.c (mono_runtime_cleanup): All threads running managed
20712         code should have finished before mono_runtime_cleanup() is
20713         reached, so no need to clean up threads.
20714
20715 2003-01-22  Martin Baulig  <martin@ximian.com>
20716
20717         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
20718         `gpointer func' arguments.      
20719         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
20720         but added `MonoThread *thread' argument.
20721         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
20722
20723         * threads.c (mono_new_thread_init): Added `gpointer func' argument
20724         and pass it to the mono_thread_start_cb callback.
20725         (mono_install_thread_callbacks): New public function to install a
20726         set of callbacks which are set by the debugger.
20727         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
20728
20729 2003-01-22  Martin Baulig  <martin@ximian.com>
20730
20731         * Makefile.am: Install debug-mono-symfile.h.
20732
20733 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
20734
20735         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
20736
20737 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
20738
20739         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
20740         * class.c (mono_ptr_class_get): correctly set access levels of pointers
20741         (mono_array_class_get): correctly set access levels of arrays
20742
20743 2003-01-20      Patrik Torstensson
20744         * image.h (MonoAssemblyName): changed major, minor, build, revision
20745         from signed to unsigned.
20746
20747 2003-01-20  sean kasun <skasun@azstarnet.com>
20748
20749         * reflection.c (load_cattr_value): Now this handles
20750         MONO_TYPE_SZARRAY.  Fixes bug #35629
20751
20752 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
20753
20754         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
20755         integer value
20756
20757 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20758
20759         * decimal.c: fixed bug #26056.
20760
20761 2003-01-17  Martin Baulig  <martin@ximian.com>
20762
20763         * gc.c: Raise an ExecutionEngineException instead of using g_error().
20764
20765 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20766
20767         * exception.[ch]:
20768         (mono_get_exception_type_initialization): new function.
20769
20770         * object.c: throw a TypeInitializationException when an exception is
20771         thrown invoking the class constructor.
20772
20773 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20774
20775         * reflection.c: fixed attribute reading.
20776
20777 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20778
20779         * icall.c:
20780         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
20781         provided, look for the type in the calling assembly and then in
20782         mscorlib; if the assembly name is provided, only try that one.
20783
20784 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
20785
20786         * object.c: register the vtable before there is a chance it's
20787         queried again recursively.
20788
20789 2003-01-13  Duncan Mak  <duncan@ximian.com>
20790
20791         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
20792         gc-internal.h. 
20793         
20794 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
20795
20796         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
20797
20798 2003-01-11  Martin Baulig  <martin@ximian.com>
20799
20800         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
20801         this to 20 for the release.
20802
20803 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
20804
20805         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
20806
20807         * loader.c (mono_method_get_marshal_info): bug fix
20808
20809         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
20810         structures with explicit layout
20811
20812 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
20813
20814         * profiler.c: made the output more readable (and sorted). 
20815         Added caller information for the allocation profiler.
20816
20817 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
20818
20819         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
20820
20821 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20822
20823         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
20824         to get value types.
20825         
20826 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
20827
20828         * object.c, profiler.h, profiler.c, profiler-private.h:
20829         Added object allocation profiler.
20830
20831 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
20832
20833         * reflection.h, reflection.c: handle global methods.
20834         Compress blob entries.
20835
20836 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
20837
20838         * marshal.c: fix compilation.
20839
20840 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
20841
20842         * loader.c (mono_method_get_marshal_info): impl.
20843
20844         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
20845
20846 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20847
20848         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
20849         for reference types.
20850
20851 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
20852
20853         * loader.c: fixed off by one error in loaded parameter names.
20854
20855 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
20856
20857         * marshal.c (mono_marshal_get_icall_wrapper): like
20858         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
20859         instead of a MonoMethod.
20860
20861 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20862
20863         * decimal.c: fixed bug #36537.
20864
20865 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
20866
20867         * marshal.c: throw a missing method exception if a
20868         P/Invoke method is not found.
20869
20870 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
20871
20872         * icall.c: allow a null this for constructors.
20873
20874 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
20875
20876         * icall.c: raise the proper exceptions if the arguments to the
20877         internal Invoke are incorrect.
20878
20879 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
20880
20881         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
20882
20883 2003-01-03  Martin Baulig  <martin@ximian.com>
20884
20885         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
20886
20887 2002-12-31  Martin Baulig  <martin@ximian.com>
20888
20889         * debug-mono-symfile.c: Completely rewrote the type section.
20890         Instead of using individual malloc()ed fields, we use one big
20891         continuous memory area and offsets into this area.
20892         See the comments in the source code for details.
20893
20894 2002-12-30  Martin Baulig  <martin@ximian.com>
20895
20896         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
20897
20898 2002-12-30  Martin Baulig  <martin@ximian.com>
20899
20900         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
20901         line number table in this data blob instead of using an external
20902         pointer.
20903
20904 2002-12-28  Martin Baulig  <martin@ximian.com>
20905
20906         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
20907
20908 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
20909
20910         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
20911         as a boxed return type.
20912
20913 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
20914
20915         * appdomain.c
20916         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
20917         g_build_filename to properly get separators on the filename created.
20918
20919         * object.h: Small change, introduce MonoMarshalByRefObject to
20920         track the layout of that structure in the C# universe as we make
20921         changes there.
20922
20923 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
20924
20925         * object.c: removed assert to allow static fields on interfaces.
20926         * loader.c: a TypeSpec may be used for any type, not just arrays.
20927
20928 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20929
20930         * class.c, class.h: added mono_class_array_element_size ().
20931         Ignore static methods in interfaces.
20932
20933 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20934
20935         * threads.c: fixed the build under cygwin.
20936
20937 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
20938
20939         * reflection.c: handle nullref constants. Allocate keys for
20940         reflection handles with the GC.
20941
20942 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20943
20944         * threads.c, threads.h: added mono_thread_get_abort_signal()
20945         to get a suitable signal for thread abort.
20946
20947 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20948
20949         * metadata.c: fix handling of ExportedType table.
20950
20951 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20952
20953         * icall.c: added WriteWindowsDebugString internal call.
20954
20955 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20956
20957         * reflection.h: added fields to match C# implementation.
20958
20959 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20960
20961         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
20962
20963 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
20964
20965         * gc.h, gc-internal.h: Rename header for GC internal calls to
20966         gc-internal.h from gc.h as to not clash with Boehm GC having its
20967         header installed as <gc.h> in outside include paths.
20968         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
20969         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
20970
20971 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20972
20973         * icall.c: assign minor, build and revision in FillName.
20974
20975 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
20976
20977         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
20978         Added support for running code generated by Reflection.Emit.
20979
20980 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20981
20982         * appdomain.c: check for NULL argument in LoadFrom.
20983
20984 2002-12-10  Dick Porter  <dick@ximian.com>
20985
20986         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
20987
20988 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20989
20990         * appdomain.c: fix buglet when building exe file name.  Handle full
20991         assembly name (needed after latest changes to AssemblyName).
20992         * image.c:
20993         (mono_image_close): free some hashtables.
20994
20995 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
20996
20997         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
20998         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
20999         on some systems (redhat 7.3) 
21000
21001 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
21002
21003         * threads.c: delete the critical section of a sync block,
21004         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
21005
21006 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
21007
21008         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
21009
21010 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21011
21012         * appdomain.[ch]: handle the assembly preload event to try loading the
21013         assemblies using the paths we have in the current domain.
21014
21015         * assembly.[ch]: created an assembly preload hook that is called to try
21016         loading the assembly by other means that the ones provided here.
21017
21018         * domain.c: initialize the domain search path.
21019
21020         From now on, assemblies (TODO: except corlib and System) are loaded
21021         according to these rules when using mono_assembly_load ():
21022
21023                 1. It tries to load the assembly from the ApplicationBase
21024                 of the current domain appending .dll and .exe (TODO: have to
21025                 try loading from name/name.dll and name/name.exe).
21026
21027                 2. It tries the search path specified in PrivateBinPath for the
21028                 current domain (if any).
21029
21030                 3. Previous behavior.
21031
21032 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
21033
21034         * icall.c: implemented GetInterfaceMap() related icall.
21035         * domain.c, loader.h: load MethodInfo in mono_defaults.
21036
21037 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21038
21039         * gc.c: disable the finalizer thread for now, untill all the issues
21040         with it are resolved.
21041
21042 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21043
21044         * string-icalls.c: handle embedded nulls in string ctor when the
21045         length is specified.
21046
21047 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21048
21049         * class.c: look for explicit interface implementation in parent
21050         classes, too.
21051
21052 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
21053
21054         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
21055
21056 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21057
21058         * gc.c: protect handles with a critical section.
21059
21060 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21061
21062         * icall.c:
21063         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
21064         parameters. If no assembly specified, try getting the type from all
21065         the assemblies in the current domain, else, load the assembly and get
21066         the type from it.
21067
21068 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21069
21070         * marshal.c: applied patch from Aleksey Demakov that fixes
21071         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
21072
21073 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21074
21075         * icall.c: fixed get_location.
21076
21077 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
21078
21079         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
21080         declarations to make it work with older gcc. 
21081
21082         * loader.c (mono_get_method): set signature->pinvoke for native calls
21083
21084 2002-11-20  Dick Porter  <dick@ximian.com>
21085
21086         * threads.c (mono_thread_init): Set the main thread's handle
21087
21088 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21089
21090         * gc.c: allow compilation without GC support. Changed to match the
21091         mono coding style.
21092
21093 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21094
21095         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
21096
21097 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
21098
21099         * reflection.c: set a public key token on the core assemblies.
21100
21101 2002-11-18  Dick Porter  <dick@ximian.com>
21102
21103         * threads.c: Split out some thread initialisation so that other
21104         files can set the start callback function.
21105
21106         * gc.c: Run finalisers in a separate thread, to avoid stack
21107         overflow.  Fixes bug 31333.
21108
21109         * appdomain.c: Set up GC finalisation thread.
21110
21111         * reflection.c: 
21112         * object.c: 
21113         * domain.c: Use gc.h macros for GC_malloc
21114         
21115 2002-11-15  Dick Porter  <dick@ximian.com>
21116
21117         * threadpool.c: 
21118         * threads.c:
21119         * appdomain.c: Removed mono_runtime_init_with_attach(),
21120         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
21121         merging the extra parameter with the existing function.  Removed
21122         unneeded code in mono_thread_attach().
21123
21124 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
21125
21126         * image.c (mono_image_loaded_by_guid): a method to get loaded
21127         images by guid. 
21128         (load_metadata_ptrs): we store the guid as string.
21129
21130 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
21131
21132         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
21133
21134         * metadata.c (mono_guid_to_string): imported method form Zoltan
21135         Varga (slightly modified)
21136
21137         * assembly.c (mono_assembly_open): load precompiled code
21138
21139         * loader.h (MonoMethod): we store the method token for use in the
21140         aot compiler. 
21141
21142 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21143
21144         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
21145         the hook function called when an assembly is loaded.
21146         
21147         * domain.c: Modified file.
21148         (mono_domain_assembly_load): removed hash table insertion of assemblies.
21149
21150         Fixes bug #33196.
21151
21152 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
21153
21154         * reflection.c: Map PEFileKind to the value expected by the WinNT
21155         image loader. 
21156
21157 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21158
21159         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
21160         Read until the buffer is filled completely.
21161
21162 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21163
21164         * icall.c: implemented MonoType.InternalGetEvent ().
21165
21166 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21167
21168         * appdomain.c: implemented InitAppDomainSetup. Delayed
21169         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
21170         the entry_assembly.
21171
21172         * assembly.c: base_dir is now an absolute path ending with
21173         G_DIR_SEPARATOR.
21174
21175         * icall.c: modified get_location according to the above changes.
21176
21177         * object.c: init AppDomain.SetupInformation for the default domain after
21178         we have the entry assembly.
21179
21180         * domain.c: when unloading a domain, setup = NULL.
21181
21182 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
21183
21184         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
21185
21186 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
21187
21188         * object.h, object.c: introduced mono_object_get_virtual_method ()
21189         to lookup the method invoked on an object when a callvirt is done on
21190         a method.
21191         * icall.c: make MethodInfo::Invoke() always do a virtual call.
21192
21193 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21194
21195         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
21196         current domain when loaded an assembly and failed to load it.
21197
21198         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
21199
21200 2002-10-31  Dick Porter  <dick@ximian.com>
21201
21202         * icall.c: 
21203         * file-io.h: 
21204         * file-io.c: Return the error status in a parameter, as the
21205         GetLastError() value has long since been blown away if we try and
21206         look it up in a subsequent internal call invocation.  Delete the
21207         GetLastError() internal call, because it's useless.
21208
21209 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
21210
21211         * class.[ch]: added cast_class to fix bug 29517
21212
21213 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
21214
21215         * marshal.c: create valid IL code in the filter clause:
21216         the new JIT is less forgiving:-)
21217
21218 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21219
21220         * icall.c: removed get_property internal call.
21221
21222 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
21223
21224         * appdomain.h domain.c: Added an ID to appdomains.
21225         
21226         * threads.c threads.h icall.c: Implement icall
21227         Thread:GetDomainID(), and remove unused icall 
21228         CurrentThreadDomain_internal.
21229
21230 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21231
21232         * icall.c: Don't recurse through the base types in GetConstructor.
21233         Fixes bug #32063. 
21234
21235 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
21236
21237         * mempool.h, mempool.c: added mono_mempool_empty() and
21238         mono_mempool_stats().
21239
21240 2002-10-23  Dick Porter  <dick@ximian.com>
21241
21242         * file-io.c: 
21243         * file-io.h: 
21244         * icall.c: Added MonoIO.GetFileType internal call
21245
21246 2002-10-17  Dick Porter  <dick@ximian.com>
21247
21248         * appdomain.c (mono_runtime_cleanup): Don't signal the async
21249         delegate semaphore before waiting for all threads to finish,
21250         because new threads can also call async delegates.  Fixes bug
21251         32004.
21252
21253         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
21254         of 3 seconds, in case another async job is queued.  (This part is
21255         needed because the bug fix reintroduced the 3s exit lag.)  This
21256         makes the mono_runtime_shutdown flag superfluous.
21257
21258 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
21259
21260         * reflection.c: include ehader size in method section headers.
21261         Really check for suplicated modules entries.
21262
21263 2002-10-17  Martin Baulig  <martin@gnome.org>
21264
21265         * debug-mono-symfile.c: Added back support for locals.
21266
21267 2002-10-14  Martin Baulig  <martin@gnome.org>
21268
21269         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
21270         MONO_TYPE_VOID.
21271
21272 2002-10-14  Martin Baulig  <martin@gnome.org>
21273
21274         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
21275         mono_class_get() instead of looking in the class cache. 
21276
21277 2002-10-13  Martin Baulig  <martin@gnome.org>
21278
21279         * debug-mono-symfile.c: Set version number to 28, include the
21280         signature in method names.
21281
21282 2002-10-13  Martin Baulig  <martin@gnome.org>
21283
21284         * debug-mono-symfile.h: Set version number to 27.
21285
21286 2002-10-11  Martin Baulig  <martin@gnome.org>
21287
21288         * gc.c: Don't register/unregister NULL pointers as disappearing links.
21289
21290 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
21291
21292         * metadata.c, metadata.h: added helper function to allocate signatures.
21293
21294 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21295
21296         * icall.c: added internal call to get the location of machine.config.
21297
21298 2002-10-08  Martin Baulig  <martin@gnome.org>
21299
21300         * debug-mono-symfile.c: Ignore classes with a pending init for the
21301         moment.
21302
21303 2002-10-03  Dick Porter  <dick@ximian.com>
21304
21305         * threads.c: Freebsd pthread_t is a pointer
21306
21307 2002-10-03  Dick Porter  <dick@ximian.com>
21308
21309         * socket-io.c: Implemented GetHostName_internal
21310
21311 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21312
21313         * mono-config.c:
21314         (mono_config_parse_file): don't leak the text.
21315
21316 2002-10-02  Martin Baulig  <martin@gnome.org>
21317
21318         * debug-mono-symfile.c: Added support for methods.
21319
21320 2002-10-01  Martin Baulig  <martin@gnome.org>
21321
21322         * debug-mono-symfile.c: Don't emit methods and line numbers for
21323         the dynamic symbol file, just write the type table.  We can easily
21324         have an external helper program which creates a symbol file for an
21325         IL file.        
21326
21327 2002-10-01  Dick Porter  <dick@ximian.com>
21328
21329         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
21330         Only add the handle to the cleanup array when we're about to
21331         launch the thread.  Bug 31425 deadlocked when the test was run on
21332         mono under w32.
21333
21334 2002-10-01  Martin Baulig  <martin@gnome.org>
21335
21336         * debug-mono-symfile.c: Added support for properties.
21337
21338 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
21339
21340         * reflection.c: unaligned store fix from Mark Crichton
21341         <crichton@gimp.org>.
21342
21343 2002-09-27  Martin Baulig  <martin@gnome.org>
21344
21345         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
21346         New interncall.
21347
21348 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
21349
21350         * assembly.h, assembly.c: use a sane API to hook into the assembly
21351         loading process instead of a useless special-purpouse hack
21352         (ngen needs a hook, too, for example).
21353
21354 2002-09-27  Dick Porter  <dick@ximian.com>
21355
21356         * threads.c (mono_thread_init): Call GetCurrentProcess() so
21357         io-layer can set up some process handle info.  Not needed on w32,
21358         but doesn't hurt either.
21359
21360         * process.c: Pass the program name in the second parameter to
21361         CreateProcess, so the path is searched.  Include the working
21362         directory. Implemented process name, process enumeration, and some
21363         process detail internal calls.
21364         
21365         * icall.c: Added internal calls for process lookup, and some
21366         process details
21367
21368 2002-09-26  Martin Baulig  <martin@gnome.org>
21369
21370         * assembly.c (mono_install_open_assembly_hook): New global
21371         function to install a function to be invoked each time a new
21372         assembly is loaded.
21373         (mono_assembly_open): Run this callback function if set.
21374
21375         * debug-mono-symfile.c: Put back line numbers for the dynamic
21376         symbol file and also record the .il file as source file.  This
21377         allows us to install the temporary symbol file as `file.dbg' just
21378         like a compiler-generated one.
21379
21380 2002-09-26  Nick Zigarovich <nick@chemlab.org>
21381
21382         * Corrected typo in gc.c (BOHEM vs BOEHM).
21383
21384 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21385
21386         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
21387         GetProperties. Also avoid calling g_slist_length in GetProperties and
21388         GetMethods.
21389
21390 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
21391
21392         * reflection.c: avoid unaligned stores (bug spotted by
21393         Mark Crichton  <crichton@gimp.org>).
21394
21395 2002-09-25  Martin Baulig  <martin@gnome.org>
21396
21397         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
21398         instead of guint64 for addresses and added prologue/epilogue info.
21399
21400 2002-09-25  Martin Baulig  <martin@gnome.org>
21401
21402         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
21403         store line number info.  For the dynamic symbol file, we only need
21404         to provide the JIT generated dynamic line number info for the dynamic
21405         symbol file.
21406
21407 2002-09-25  Martin Baulig  <martin@gnome.org>
21408
21409         * debug-mono-symfile.h: Incremented version number.
21410
21411 2002-09-24  Martin Baulig  <martin@gnome.org>
21412
21413         * class.c (mono_debugger_class_init_func): New global function
21414         pointer variable.
21415         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
21416         call it.
21417
21418         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
21419         function.  This is called via the mono_debugger_class_init_func
21420         hook to add all types to the dynamic type table.
21421         (ves_icall_MonoDebugger_GetType): New interncall to get a class
21422         from its metadata token.
21423
21424         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
21425         New interncall for the debugger.
21426
21427 2002-09-24  Nick Drochak <ndrochak@gol.com>
21428
21429         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
21430         before using it in case it is null.
21431         
21432 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21433
21434         * metadata.c: allow custom modifiers in local var signatures
21435         (bug spotted by Zoltan Varga).
21436
21437 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
21438
21439         * class.c: deal with the <Module> class that may have a NULL vtable.
21440         Eliminate warnings.
21441
21442 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
21443
21444         * image.c, image.h: more strong name helpers.
21445         * monosn.c: more work: convert pem keys to cryptoapi format.
21446
21447 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
21448
21449         * string-icalls.c: speedup IndexOf.
21450
21451 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
21452
21453         * icall.c: updates from Zoltan.2.Varga@nokia.com.
21454
21455 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
21456
21457         * icall.c: cleanup: use mono_object_domain ().
21458
21459 2002-09-23  Martin Baulig  <martin@gnome.org>
21460
21461         * debug-mono-symfile.c: Improved type support.
21462
21463 2002-09-22  Martin Baulig  <martin@gnome.org>
21464
21465         * debug-mono-symfile.c: Added support for reference types and strings.
21466
21467 2002-09-22  Martin Baulig  <martin@gnome.org>
21468
21469         * debug-mono-symfile.c: Started to work on the type table.
21470
21471 2002-09-21  Martin Baulig  <martin@gnome.org>
21472
21473         * debug-mono-symfile.c: Largely reworked the symbol table format.
21474         The symbol table is now incrementally updated each time a new
21475         method is added.  We're now also using our own magic and version
21476         so that you don't need to recompile all your classes if the
21477         dynamic table changes.
21478         (mono_debug_update_mono_symbol_file): Removed.
21479         (mono_debug_symfile_add_method): New function to add a method.
21480
21481 2002-09-21  Martin Baulig  <martin@gnome.org>
21482
21483         * icall.c
21484         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
21485         New interncall.
21486
21487         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
21488         New interncall to get a method from its metadata token.
21489
21490 2002-09-21  Martin Baulig  <martin@gnome.org>
21491
21492         * debug-mono-symfile.c: Create type table.
21493
21494 2002-09-20  Martin Baulig  <martin@gnome.org>
21495
21496         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
21497
21498 2002-09-20  Martin Baulig  <martin@gnome.org>
21499
21500         * debug-mono-symfile.c: Provide information about params and locals.
21501
21502 2002-09-20  Martin Baulig  <martin@gnome.org>
21503
21504         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
21505         New interncall.
21506
21507         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
21508         interncall to get a method from its metadata token.
21509
21510 2002-09-20  Martin Baulig  <martin@gnome.org>
21511
21512         * debug-mono-symfile.c: Added a few checks for method->header
21513         being non-NULL.  This should never happen, but for the moment
21514         let's use a g_warning() rather than a g_assert().
21515
21516 2002-09-19  Mark Crichton  <crichton@gimp.org>
21517
21518         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
21519         even if support for it isn't present.  Added an #ifdef to fix this.
21520
21521         * socket-io.c: Added checks back for Solaris support.
21522
21523 2002-09-19  Martin Baulig  <martin@gnome.org>
21524
21525         * debug-mono-symfile.c (read_string, write_string): Reflect latest
21526         changes in the symbol file format.
21527
21528 2002-09-18  Martin Baulig  <martin@gnome.org>
21529
21530         * debug-mono-symfile.c: Set version number to 21.
21531
21532 2002-09-18  Dick Porter  <dick@ximian.com>
21533
21534         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
21535         on netbsd.  Fixes bug 30051.
21536
21537 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21538
21539         * reflection.c:
21540         (set_version_from_string): little fix.
21541
21542 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
21543
21544         * monosn.c, Makefile.am: added strong name utility.
21545         * reflection.h, reflection.c: implemented delayed signing,
21546         locale, version and hash id assembly attributes.
21547
21548 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
21549
21550         * loader.c, metadata.c: load param attributes in signatures.
21551
21552 2002-09-16  Martin Baulig  <martin@gnome.org>
21553
21554         * debug-mono-symfile.c: Added string table with all method names.
21555
21556 2002-09-14  Martin Baulig  <martin@gnome.org>
21557
21558         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
21559         fast method lookup.
21560
21561 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
21562
21563         * reflection.c: record the public key token of referenced assemblies.
21564
21565 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
21566
21567         * image.c, image.h: added functions to get the strong name and the
21568         public key of an assembly.
21569         * pedump.c: use them.
21570
21571 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
21572
21573         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
21574
21575 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
21576
21577         * marshal.c (mono_marshal_get_managed_wrapper): Added
21578         MONO_TYPE_BOOLEAN 
21579
21580 2002-09-11  Martin Baulig  <martin@gnome.org>
21581
21582         * gc.c: Call GC_unregister_disappearing_link() on all links when
21583         finalizing them, this is necessary to aviod a crash in boehm's
21584         finalize handler.
21585
21586 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
21587
21588         * gc.c: handle GetTarget for finalized objects spotted and fixed by
21589         nick@chemlab.org.
21590
21591 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
21592
21593         * icall.c: implemented MonoType::Module.
21594         * reflection.c, reflection.h: mono_module_get_object () from
21595         Tomi Pakarinen <tomi.pakarinen@welho.com>.
21596
21597 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
21598
21599         * icall.c: ignore overridden methods in GetMethods ().
21600         Fix for FieldInfo::SetValue().
21601         * object.c: handle float/double in runtime invoke.
21602
21603 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
21604
21605         * object.c: allow a constructor to be called again on an object.
21606
21607 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
21608
21609         * class.h, class.c: move field layout code to it's own function and
21610         export it. Get an interface id earlier. Move fields in MonoClass
21611         so they are more cache friendly and align the bitfields.
21612         * loader.c: temporary handle get_param_names() for a runtime method.
21613         * reflection.c, reflection.h: more code to handle runtime creation of
21614         types.
21615
21616 2002-09-09  Martin Baulig  <martin@gnome.org>
21617
21618         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
21619         signature with the pinvoke field being set for the actual call.
21620
21621 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
21622
21623         * icall.c: removed some unused icalls. Start of map of glib charsets
21624         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
21625
21626 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
21627
21628         * debug-helpers.c: break infinite loop (found and fixed by
21629         Holger Arnold <harnold@gmx.de>).
21630
21631 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
21632
21633         * icall.c: target may be null in create_delegate.
21634
21635 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
21636
21637         * marshal.c: handle a boolean return type.
21638
21639 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
21640
21641         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
21642
21643 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
21644
21645         * gc.c: fix weakreferences.
21646
21647 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
21648
21649         * icall.c: added icall to get default codepage.
21650
21651 2002-09-03  Dick Porter  <dick@ximian.com>
21652
21653         * threads.h: 
21654         * threads.c: Use MonoThread instead of MonoObject where
21655         apropriate.
21656
21657         Store running thread objects in a hash table, so that we have all
21658         the info to hand when waiting for them to finish
21659         (means we don't need OpenThread() any more, so mingw builds should
21660         be fully functional again.)
21661
21662         * verify.c:
21663         * object.h: Added thread ID to MonoThread
21664
21665 2002-09-03  Martin Baulig  <martin@gnome.org>
21666
21667         * icall.c (System.Reflection.Assembly::get_location): New interncall.
21668
21669 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21670
21671         * icall.c: fixed leak in get_temp_path. Thanks lupus.
21672
21673 2002-09-03  Martin Baulig  <martin@gnome.org>
21674
21675         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
21676         argument to store the end address of the disassembled instruction.
21677
21678         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
21679         here from debug-symfile.h.
21680         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
21681         JIT into this struct.
21682         (MonoSymbolFile): Added `char *image_file' field.
21683         (MonoDebugGetMethodFunc): Removed.
21684         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
21685         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
21686         (mono_debug_find_method): New method.
21687
21688         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
21689         create a full symbol file.
21690         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
21691         and static symbol files.
21692         (mono_debug_find_method): The symbol file keeps an internal method hash,
21693         call this to get a MonoDebugMethodInfo from a MonoMethod.
21694
21695         * debug-symfile.[ch]: Removed.
21696
21697 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
21698
21699         * image.c (do_mono_image_open): Remove linker version check.
21700
21701 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
21702
21703         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
21704         wrappers for instance methods.
21705         
21706 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21707
21708         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
21709
21710 2002-08-28  Dick Porter  <dick@ximian.com>
21711
21712         * Makefile.am: Export HOST_CC for w32 builds
21713
21714 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
21715
21716         * file-io.c process.c: MonoString are null terminated, no
21717         need for mono_string_to_utf16() anymore.
21718
21719 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
21720
21721         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
21722
21723 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
21724
21725         * icall.c, reflection.h: speedup System.MonoType.
21726
21727 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
21728
21729         * reflection.c: allow null as the value of a string argument in
21730         custom attributes constructors.
21731
21732 2002-08-27  Martin Baulig  <martin@gnome.org>
21733
21734         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
21735         `trampoline_address' field.
21736
21737 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
21738
21739         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
21740         check (fixes bug #29486) 
21741
21742 2002-08-27  Martin Baulig  <martin@gnome.org>
21743
21744         * debug-mono-symfile.c: Changed the file format in a way that allows us
21745         open it read-only and to use a specially malloced area for all the
21746         dynamic data.  We can now also generate a symbol file on-the-fly if we're
21747         debugging IL code and there is no MCS generated symbol file for it.
21748
21749 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
21750
21751         * object.c: added a define for a good string and array
21752         creation speedup (not enabled by default because we need to deal with
21753         the synch stuff).
21754
21755 2002-08-26  Martin Baulig  <martin@gnome.org>
21756
21757         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
21758         function to create a dynamic symbol file.  This is used by the
21759         debugger to create a symbol file for IL code on-the-fly.
21760
21761 2002-08-26  Martin Baulig  <martin@gnome.org>
21762
21763         * loader.c (mono_lookup_pinvoke_call): Include the error message
21764         from g_module_error() in the error message.
21765
21766 2002-08-24  Martin Baulig  <martin@gnome.org>
21767
21768         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
21769         function to update the symbol file.  The symbol file is mmap()ed
21770         writable, but private.  This allows us to install the symbol file
21771         together with the assembly.
21772
21773 2002-08-24  Martin Baulig  <martin@gnome.org>
21774
21775         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
21776         but they can read the new symbol file format which mcs is now creating.
21777
21778         * debug-symfile.c (mono_debug_find_source_location): Moved to
21779         debug-mono-symfile.c; this is now operating on the new symbol file.
21780
21781 2002-08-23  Martin Baulig  <martin@gnome.org>
21782
21783         * debug-helpers.c (mono_method_desc_from_method): New function to get
21784         a MonoMethodDesc from a MonoMethod.
21785
21786 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
21787
21788         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
21789         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
21790
21791 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
21792
21793         * string-icalls.[ch]: make helper methods static.
21794
21795 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21796
21797         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
21798         types to it and to SetValueInternal.
21799
21800         * object.c: Moved handle_enum label to its proper place. This was the
21801         f... bug! ;-)
21802
21803         This time i compiled mcs and gtk-sharp and they both work.
21804
21805 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21806
21807         * icall.c: reverted partially my previous patch until 
21808         object.c:set_value handles enums correcly.
21809
21810 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21811
21812         * icall.c:
21813         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
21814         (ves_icall_System_Environment_get_MachineName): removed warning when
21815         compiling under cygwin.
21816
21817 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
21818
21819         * object.c: fixed field_get_value() for reference types.
21820
21821 2002-08-22  Dick Porter  <dick@ximian.com>
21822
21823         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
21824         Don't free a buffer while it's still needed.  Patch from Jonathan
21825         Liger <Jonathan.liger@wanadoo.fr>
21826
21827 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
21828
21829         * icall.c (ves_icall_System_Environment_get_Platform): Add new
21830         internal call.
21831
21832 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
21833
21834         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
21835         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
21836
21837         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
21838         we call unmanaged code which throws exceptions.
21839
21840 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
21841
21842         * appdomain.h: added per-domain entry_assembly.
21843         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
21844         arguments.
21845         * icall.c: Assembly::GetEntryAssembly icall.
21846         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
21847         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
21848
21849 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
21850
21851         * appdomain.h, gc.c: added mono_domain_finalize ().
21852
21853 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21854
21855         * object.c:
21856         (mono_print_unhandled_exception): changed g_warning by g_printerr
21857         because g_log has a 1024 characters limit (yeah, i got a big stack
21858         trace). Don't print exception name, that should be in ToString 
21859         returned string.
21860
21861 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21862
21863         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
21864         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
21865
21866 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21867
21868         * object.c:
21869         (mono_print_unhandled_exception): after previous commit, i realized
21870         that MS calls ToString on the exception. I changed this function to
21871         do that. This way we get stack_trace for free.
21872
21873 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21874
21875         * object.c:
21876         (mono_print_unhandled_exception): invoke Message property instead of
21877         getting 'message' field from Exception. Don't allocate memory for
21878         'trace' and 'message' if not needed.
21879
21880 2002-08-18  Dick Porter  <dick@ximian.com>
21881
21882         * unicode.c: Fix asserts to match Encoder.cs checks
21883
21884 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
21885
21886         * marshal.c: fix unaligned store issue and a few wrong
21887         opcode argument types.
21888
21889 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21890
21891         * icall.c: added GetUninitializedObjectInternal internal call.
21892
21893 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
21894
21895         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
21896         to the right domain.
21897
21898 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
21899
21900         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
21901
21902         * class.c (class_compute_field_layout): set blittable to false for Strings
21903
21904         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
21905
21906 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
21907
21908         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
21909         first chunk of code to create types at runtime. Code to
21910         handle ReflectedType/DeclaringType. Make reflection handles
21911         domain specific.
21912
21913 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
21914
21915         * class.c: set correct name in arrays.
21916
21917 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
21918
21919         * appdomain.c (mono_domain_transfer_object): make it work with
21920         valuetypes. bug fixes.
21921
21922 2002-08-12  Dick Porter  <dick@ximian.com>
21923
21924         * object.h: Rename some parameters to avoid c++ keywords (Patch
21925         from Joseph Wenninger <kde@jowenn.at>)
21926
21927 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
21928
21929         * icall.c: added icall to implement Assembly.GetFile*.
21930
21931 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
21932
21933         * reflection.h, reflection.c: code to embed managed resources.
21934
21935 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
21936
21937         * class.c: move all the type size stuff into
21938         class_compute_field_layout().
21939
21940 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
21941
21942         * class.c: ensure enums have always the correct instance size.
21943         * unicode.c: remove wrong assert.
21944
21945 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
21946
21947         * assembly.c: fix mem corruption issue.
21948         * image.h, image.c: added mono_image_get_resource () to access
21949         managed resources.
21950         * icall.c: implemented Assembly.EntryPoint property and some
21951         Managed Resources related internalcalls.
21952
21953
21954 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
21955
21956         * image.c, image.h: impemented mono_image_get_entry_point ().
21957         * appdomain.c: use mono_image_get_entry_point.
21958
21959 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
21960
21961         * reflection.c: support the object type argument when loading
21962         custom attributes.
21963
21964 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
21965
21966         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
21967         String as return type.
21968
21969 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
21970
21971         * reflection.c: fix encoding of named args for custom attrs to match
21972         the ms implementation. Read them back when instantiating custom
21973         attributes.
21974
21975 2002-08-02  Radek Doulik  <rodo@ximian.com>
21976
21977         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
21978         by Dietmar as quick fix
21979         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
21980         16 as stack size, used on more places as quick fix before Dietmar
21981         will fix it properly
21982
21983 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
21984
21985         * object.h, object.c: added accessors for fields and properties.
21986
21987 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
21988
21989         * class.c, class.h: made mono_class_get_field_from_name ()
21990         loop on parent types.
21991         Added mono_class_get_property_from_name ().
21992
21993 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
21994
21995         * class.c, class.h: move the code to setup the type vtable in its own
21996         function so that it can be reused also for types created at runtime.
21997         Eliminate the "class" identifier from the header file.
21998         * reflection.c: setup the vtable for enums so that we can create
21999         objects for use in SetConstant ().
22000
22001 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
22002
22003         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
22004         instead of the delegate itself as this pointer (bug #28383)
22005
22006 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
22007
22008         * marshal.c (mono_marshal_get_managed_wrapper): added return type
22009         conversions.
22010
22011 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22012
22013         * loader.c: don't set the pinvoke bit on icalls.
22014
22015 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
22016
22017         * debug-helpers.c (mono_method_full_name): only print a number to
22018         indicate wrapper type (so that the output is more readable in traces).
22019
22020 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
22021
22022         * class.c (mono_class_init): include method override patch from Paolo
22023
22024 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
22025
22026         * icall.c: fixed GetTypeCode().
22027
22028 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
22029
22030         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
22031         use real delegate invoke function to make it work with multicast
22032         delegates (fix bug# 28291).
22033
22034 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
22035
22036         * object.c: load constant strings.
22037
22038 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
22039
22040         * reflection.c: no magic numbers.
22041         * tabledefs.h: security action enum.
22042
22043 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22044
22045         * assembly.c: fix possible memory corruption.
22046
22047 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
22048
22049         * reflection.h, reflection.c: added support for linking resources.
22050         * verify.c: check we have an updated corlib.
22051
22052 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
22053
22054         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
22055         string arrays.
22056         (mono_marshal_string_array): null terminate unmanaged string arrays.
22057         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
22058
22059 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22060
22061         * icall.c: Type.GetType () can now return also types from the
22062         calling assembly.
22063
22064 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
22065
22066         * loader.h, loader.c: stack walking support.
22067         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
22068         GetCallingAssembly.
22069
22070 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
22071
22072         * marshal.c: added optimisations for blittable types 
22073
22074         * class.c (mono_array_class_get): do not set blittable attribute on arrays
22075         (mono_class_setup_mono_type): set blittable attribute for single
22076         and double.
22077
22078         * marshal.c (mono_string_utf8_to_builder): impl.
22079         (mono_string_builder_to_utf8): impl.
22080         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
22081
22082 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
22083
22084         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
22085         (mono_marshal_get_managed_wrapper): impl. byref types
22086
22087 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22088
22089         * icall.c:
22090         (search_method): don't display debug message. 
22091
22092 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
22093
22094         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
22095
22096 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
22097
22098         * appdomain.c: set the missing filename when throwing exception.
22099
22100 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
22101
22102         * metadata.c (mono_type_size): code cleanup
22103         (mono_type_stack_size): removed some test code
22104
22105 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
22106
22107         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
22108         mono_get_exception_file_not_found now.
22109
22110         * exception.c (mono_exception_from_name_two_strings): New version
22111         that will call a constructor with two string arguments. 
22112         (mono_get_exception_file_not_found): New helper routine, used to
22113         report file-not-found errors.
22114
22115 2002-07-20  Dick Porter  <dick@ximian.com>
22116
22117         * process.h:
22118         * process.c: Pass file handles to CreateProcess
22119         
22120         * icall.c:
22121         * file-io.h:
22122         * file-io.c: Implemented CreatePipe
22123
22124 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
22125
22126         * metadata.c (mono_get_param_info): set alignment for value types
22127
22128 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22129
22130         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
22131         Constify mono_domain_assembly_open().
22132         * loader.c: handle null namespace in icalls.
22133
22134 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
22135
22136         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
22137         (emit_str_to_ptr_conv): marshal object as structs
22138
22139         * metadata.c (mono_type_to_unmanaged): marshal object as structs
22140
22141         * marshal.c (mono_marshal_get_runtime_invoke): support value types
22142
22143 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
22144
22145         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
22146         (mono_marshal_get_native_wrapper): we an now return value types
22147
22148 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22149
22150         * verify.c: more checks implemented.
22151
22152 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
22153
22154         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
22155         (fix bug #27695)
22156         (mono_marshal_get_native_wrapper): allow byref arguments
22157         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
22158         impl. PtrToStringXXX methods
22159         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
22160         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
22161         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
22162         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
22163         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
22164
22165 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22166
22167         * reflection.c: fix buglet in parsing an assembly name.
22168
22169 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
22170
22171         * marshal.c (emit_ptr_to_str_conv): first impl.
22172
22173 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
22174
22175         * object.c, class.h: cache the vtable in the class as suggested by
22176         vargaz@freemail.hu (Zoltan Varga).
22177
22178 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22179
22180         * class.h, loader.c: added mono_field_from_token().
22181         * verify.c: first cut of type checking code.
22182
22183 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
22184
22185         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
22186
22187 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
22188
22189         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
22190         (fix bug #27782)
22191         (mono_marshal_get_remoting_invoke): impl.
22192         (mono_delegate_begin_invoke): impl.
22193         (mono_mb_emit_save_args): impl.
22194         (mono_delegate_end_invoke): impl.
22195         (mono_marshal_get_delegate_begin_invoke):
22196         (mono_marshal_get_delegate_end_invoke):
22197         (mono_marshal_get_delegate_invoke): generate a special name for
22198         those methods (including the signature) and associate them whith
22199         the delegate class. 
22200
22201 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
22202
22203         * reflection.[ch]: 
22204         (mono_reflection_type_from_name): now it has a MonoImage parameter
22205         which is used as the default image to search the type in. If the image
22206         is NULL or getting the type from it fails, it defaults to corlib.
22207
22208         * icall.c: changed 1 call to mono_reflection_type_from_name to match
22209         new parameter.
22210
22211 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22212
22213         * reflection.c: update the parameter table index.
22214
22215 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22216
22217         * domain.c: don't include the mark byte in the string hash.
22218
22219 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22220
22221         * icall.cs: icall for Type.GetTypeCode ().
22222         * verify: a couple of fixes and disabled local initialization checks.
22223
22224 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
22225
22226         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
22227
22228         * debug-helpers.c (mono_method_full_name): print the type of the
22229         runtime wrapper
22230
22231         * metadata.c (mono_signature_hash): a hash function for signatures
22232         (mono_signature_hash): better hash algorithm
22233
22234         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
22235
22236         * debug-helpers.c (mono_method_full_name): this can now generate
22237         method names with signatures
22238
22239         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
22240         method dont have this pointers.
22241
22242 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
22243
22244         * reflection.c: fixup typebuilder tokens.
22245         * image.c: fix buglet.
22246         * marshal.h: remove whitespace.
22247         * metadata.h, metadata.c: reinstate code that was removed.
22248         * verify.c: handle catch directives and fix another couple of bugs.
22249
22250 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
22251
22252         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
22253         (mono_marshal_get_native_wrapper): make it comp. with the old code
22254         (mono_marshal_get_native_wrapper): support boolean
22255         (mono_marshal_get_managed_wrapper): support more types
22256
22257 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
22258
22259         * class.c (class_compute_field_layout): compute class->blittable attribute.
22260
22261 2002-07-09  Dick Porter  <dick@ximian.com>
22262
22263         * threads.c: Make the thread cleaning up cope with threads that
22264         call ExitThread()
22265
22266 2002-07-08  Radek Doulik  <rodo@ximian.com>
22267
22268         * reflection.c (method_encode_code): use non-translated values to
22269         compute finally_start, this fixes exception handling on ppc, yay!
22270
22271         * decimal.h (struct signscale): fix endianess
22272
22273 2002-07-07  Radek Doulik  <rodo@ximian.com>
22274
22275         * reflection.c: swap box_val and not val
22276
22277 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
22278
22279         * reflection.c, reflection.h: handle full assembly info in type name.
22280         Handle Type arguments when loading custom attributes.
22281         * icall.c: updated to use new mono_reflection_type_from_name () method.
22282
22283 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22284
22285         * loader.c:
22286         (method_from_memberref): also print assembly name when method not found.
22287
22288 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22289
22290         * icall.c:
22291         (ves_icall_TypeGetProperties): fixed bug #27473. 
22292
22293 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22294
22295         * reflection.c: display image name and token when cannot find the
22296         .ctor for an attribute.
22297
22298 2002-07-05  Martin Baulig  <martin@gnome.org>
22299
22300         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
22301
22302 2002-07-04  Dick Porter  <dick@ximian.com>
22303
22304         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
22305         compile on mingw.  This will cause mingw builds to not wait for
22306         subthreads to terminate after the main thread does.  I've lodged a
22307         bug with the mingw developers for them to wrap OpenThread().
22308
22309 2002-07-03  Dick Porter  <dick@ximian.com>
22310
22311         * threads.c: Store thread IDs instead of handles, because
22312         GetCurrentThread() returns a pseudohandle and therefore stores
22313         useless values.  mono_thread_cleanup() continues checking the
22314         array of threads until it is empty, to cope with subthreads
22315         spawning new threads after the main thread has finished.
22316
22317         * profiler.h:
22318         * profiler.c:
22319         * profiler-private.h: Pass the thread ID to thread profiler
22320         functions, instead of a handle
22321
22322 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22323
22324         * verify.c: fixes to make it more usable.
22325         * pedump.c: added --verify code to verify IL code in an assembly.
22326
22327 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22328
22329         * reflection.c: turn errors into warnings to allow compiling corlib.
22330
22331 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
22332
22333         * reflection.c: add special cases to compile corlib.
22334
22335 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22336
22337         * reflection.c: handle properties with only a set method.
22338
22339 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
22340
22341         * opcodes.h: add enum with opcodes in opval order.
22342
22343 2002-07-01  Dick Porter  <dick@ximian.com>
22344         
22345         * object.h:
22346         * object.c (mono_runtime_run_main): Removed unneeded argument
22347
22348 2002-06-28  Martin Baulig  <martin@gnome.org>
22349
22350         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
22351
22352 2002-06-27  Dick Porter  <dick@ximian.com>
22353
22354         * threads.c: Store the handle in both the parent thread and in the
22355         subthread, to minimise the time between starting a new thread and
22356         storing its ID.
22357
22358 2002-06-26  Dick Porter  <dick@ximian.com>
22359
22360         * appdomain.c (mono_runtime_cleanup): Close the socket library
22361         after all the threads have finished, not before
22362
22363 2002-06-26  Martin Baulig  <martin@gnome.org>
22364
22365         * debug-symfile.c (mono_debug_find_source_location): Added
22366         `guint32 *line_number' argument.  If it's not NULL, store the line number
22367         there and return the file name without the line number.
22368
22369 2002-06-25  Dick Porter  <dick@ximian.com>
22370
22371         * icall.c:
22372         * process.h:
22373         * process.c: Process forking and other support functions
22374
22375 2002-06-25  Dick Porter  <dick@ximian.com>
22376
22377         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
22378         things dont happen when the image is closed.
22379         (mono_image_lookup_resource): Walk the resource section looking
22380         for a particular entry
22381
22382         * cil-coff.h: PE resource section decoding
22383
22384 2002-06-25  Dick Porter  <dick@ximian.com>
22385         
22386         * assembly.h:
22387         * assembly.c: 
22388         (mono_assembly_foreach): Accessor functions to walk the list of
22389         loaded assemblies
22390         (mono_assembly_set_main):
22391         (mono_assembly_get_main): Process methods need to know which
22392         assembly is the "main" one
22393
22394         * object.c (mono_runtime_run_main): Record the main assembly
22395
22396         * debug-helpers.c: Fix typo
22397
22398 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
22399
22400         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
22401         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
22402
22403 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
22404
22405         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
22406
22407 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
22408
22409         * image.c (do_mono_image_open): Initialize reference count,
22410         otherwise we leak the MonoImage.
22411
22412 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
22413
22414         * reflection.c: small tweak to handle self-hosting.
22415
22416 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
22417
22418         * reflection.c: fix type name parse code.
22419
22420 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
22421
22422         * reflection.c: break out of the loop.
22423         * image.c: special case corlib.
22424
22425 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22426
22427         * reflection.c: add all the custom attrs at the end to ensure the
22428         ctors have been properly initialized when the attributes are defined
22429         in the current assembly.
22430
22431 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22432
22433         * reflection.c: handle correctly multiple-nested types.
22434
22435 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
22436
22437         * row-indexes.h: fix typos.
22438         * reflection.c: adjust for typos and fix method_def_or_ref
22439         encoding in MethodImpl table.
22440
22441 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
22442
22443         * reflection.c: fix entry point patching (thanks Serge!).
22444
22445 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
22446
22447         * verify.c: add check for System.Exception
22448
22449 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22450
22451         * image.c, class.c: minifix for code just c&p'ed.
22452         * reflection.c: warning fix.
22453         * object.h, loader.h, domain.c: load also StringBuilder.
22454
22455 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22456
22457         * marshal.h, marshal.c: some support code to handle complex marshaling.
22458
22459 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22460
22461         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
22462         Better signatures with vtable error dump.
22463
22464 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
22465
22466         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
22467
22468 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
22469
22470         * icall.c (ves_icall_Type_GetField): impl.
22471
22472 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22473
22474         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
22475         to retrieve a marshal description blob for a field or param.
22476
22477 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
22478
22479         * reflection.h, reflection.c: change order of nested type emission
22480         to avoid table corruption. The NestedTypes table is sorted.
22481         * icall.c: change order of GetConstructor results to workaround mcs bug.
22482
22483 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
22484
22485         * reflection.h, reflection.c: handle field and param marshal
22486         information.
22487
22488 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22489
22490         * icall.c, marshal.c marshal.h: more Marshal class implementation.
22491
22492 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22493
22494         * reflection.c: fix call convention.
22495
22496 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22497
22498         * reflection.h, reflection.c: mono_image_get_memberref_token()
22499         takes a type instead of a class, now. Added
22500         mono_image_get_array_token() to create tokens for the special
22501         multi-dim array methods.
22502
22503 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
22504
22505         * assembly.c: handle modules (no assembly table). Split
22506         loading references in its own function.
22507         * class.c: handle moduleref resolution scope.
22508         * image.c, image.h: cache module name in image.
22509
22510 2002-06-07  Martin Baulig  <martin@gnome.org>
22511
22512         * reflection.c (mono_image_get_type_info): Only add a class layout entry
22513         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
22514
22515 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
22516
22517         * icall.c: more signature fixes that used uint instead of int.
22518
22519 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22520
22521         * reflection.c: fixed signature of field refs.
22522
22523 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
22524
22525         * class.c, reflection.c: handle typerefs of nested types
22526         (both on read and when writing files).
22527
22528 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
22529
22530         * icall.c: fix method signatures that tried to workaround the previous
22531         typo, d'oh!
22532
22533 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
22534
22535         * debug-helpers.c: fix typo.
22536
22537 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
22538
22539         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
22540         rewrote the PE/COFF writing code (our programs are understood by the
22541         ms runtime, now).
22542
22543 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
22544
22545         * gc.c, gc.h, icall.c: weakreference support.
22546
22547 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22548
22549         * Makefile.am, mono-config.c: use $(sysconfdir).
22550
22551 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
22552
22553         * icall.c: changed default precision of Double.ToString() to 15.
22554         Fixed memory leak. Unified with Single.ToString.
22555
22556 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
22557
22558         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
22559
22560 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
22561
22562         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
22563         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
22564         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
22565         and myself.
22566
22567 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22568
22569         * debug-symfile.c, sysmath.c: yet more compilation fixes.
22570
22571 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22572
22573         * reflection.c, socket-io.c: more compilation fixes.
22574
22575 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
22576
22577         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
22578         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
22579         unicode.c: warning and compiler compatibility fixes.
22580
22581 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
22582
22583         * class.h, metadata.c: fixed warnings/compilation errors.
22584
22585 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
22586
22587         * Makefile.am, mono-config.c, mono-config.h: configuration file
22588         support routines.
22589         * loader.c, loader.h: make Dll mapping configurable at runtime in the
22590         config file. Export methods to insert and lookup mappings.
22591
22592 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
22593
22594         * reflection.c: handle types and boxed objects in custom attr
22595         constructors.
22596
22597 2002-05-30  Martin Baulig  <martin@gnome.org>
22598
22599         * debug-symfile.c
22600         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
22601
22602 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
22603
22604         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
22605         to lookup the implmap row for a P/Invoke method.
22606         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
22607         P/Invoke method from the runtime on an as needed basis.
22608
22609 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
22610
22611         * metadata.c (mono_metadata_parse_signature): impl.
22612
22613 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22614
22615         * class.c: handle .pack directive.
22616
22617 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
22618
22619         * object.c: initialize static fields with RVA data.
22620
22621 2002-05-25  Martin Baulig  <martin@gnome.org>
22622
22623         * debug-symfile.c
22624         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
22625
22626 2002-05-24  Martin Baulig  <martin@gnome.org>
22627
22628         * debug-symfile.c
22629         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
22630         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
22631         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
22632
22633 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
22634
22635         * object.c: special case string ctros in invoke.
22636         * gc.c: silly whitespace changes.
22637
22638 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
22639
22640         * threadpool.[ch]: impl. a threadpool that can
22641         be used by mint and mono.
22642
22643 2002-05-22  Martin Baulig  <martin@gnome.org>
22644
22645         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
22646         The first argument is now a `MonoReflectionModuleBuilder *', the return
22647         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
22648         `methods' field to get the method builder.  The `token' argument is the
22649         unfixed token.
22650
22651         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
22652         invalid characters instead of g_assert_not_reached()ing.  This seems
22653         to be the behaviour of mscorlib.
22654
22655 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
22656
22657         * object.c (mono_runtime_invoke_array): applied patch from Rachel
22658         Hestilow to fix bug #25104
22659
22660 2002-05-21  Martin Baulig  <martin@gnome.org>
22661
22662         * debug-symfile.c (mono_debug_find_source_location): New function.
22663         Looks up an IL offset in the line number table and returns the source
22664         location as a string.
22665
22666 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22667
22668         * icall.c:
22669         (mono_double_ToStringImpl): changed %f by %g until we have something
22670         better.
22671
22672 2002-05-21  Nick Drochak  <ndrochak@gol.com>
22673
22674         * icall.c : Use different name for Math.Pow's icall.  Needed to check
22675         parameters first in C#.
22676
22677 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22678
22679         * icall.c, reflection.h: added icall to get info about an event.
22680
22681 2002-05-20  Radek Doulik  <rodo@ximian.com>
22682
22683         * object.c (mono_value_box): don't use memcpy for boxing on BIG
22684         endian
22685         (mono_value_box): don't use memcpy for small sizes on
22686         architectures with unaligned access
22687
22688 2002-05-20  Martin Baulig  <martin@gnome.org>
22689
22690         * reflection.c (mono_reflection_setup_internal_class): Don't crash
22691         if `tb->parent == NULL'.
22692         (mono_reflection_create_internal_class): New function.  This is
22693         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
22694         for enum types.
22695
22696         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
22697         New interncall.
22698
22699 2002-05-19  Martin Baulig  <martin@gnome.org>
22700
22701         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
22702         argument to get the length, don't default to the array length.
22703
22704 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
22705
22706         * assembly.c (mono_assembly_setrootdir): New function used to
22707         override the MONO_ASSEMBLIES directory.
22708
22709 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
22710
22711         * icall.c: ValueType_GetHashCode() initialize local var.
22712
22713 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
22714
22715         * reflection.c: sort custom attributes table.
22716
22717 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
22718
22719         * reflection.c: support named args in custom attributes (write support).
22720
22721 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
22722
22723         * reflection.c: fix finally position calculation.
22724
22725 2002-05-15  Radek Doulik  <rodo@ximian.com>
22726
22727         * reflection.c: fixed endianess at many places
22728
22729         * icall.c (ves_icall_InitializeArray): comment out debug msg
22730
22731 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
22732
22733         * object.c (mono_unhandled_exception): new function to handle
22734         unhandled exceptions.
22735         (mono_unhandled_exception): call the UnhandledException event.
22736         (mono_runtime_delegate_invoke): impl.
22737
22738 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
22739
22740         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
22741         returns the RVA, not the direct pointer to the data. Handle the case
22742         when the class size is fixed.
22743
22744 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
22745
22746         * reflection.c: fix some endianess issues.
22747
22748 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
22749
22750         * object.c (mono_runtime_invoke): is now able to catch exceptions.
22751
22752         * threads.c (mono_thread_init): added a callback which is invoked
22753         at thread start.
22754
22755 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
22756         
22757         * icall.c: make GetHashCode return non-negative values.
22758
22759 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
22760
22761         * object.c, icall.c, gc.c: revert to address-based hashcode.
22762
22763 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
22764
22765         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
22766
22767 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
22768
22769         * icall.c, class.c: special case <Module>.
22770
22771 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
22772
22773         * icall.c: fix bug in GetNow().
22774
22775 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
22776
22777         * object.c (mono_runtime_class_init): make sure that we call all
22778         static class constructors.
22779
22780 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
22781
22782         * reflection.c: sort methodsemantics table.
22783
22784 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
22785
22786         * reflection.h, reflection.c: honour init locals setting.
22787
22788 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
22789
22790         * icall.c: copied Double ToStringImpl for Single ToStringImpl
22791
22792 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
22793
22794         * reflection.c: support ContructorBuilders in attribute blob creation.
22795
22796 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
22797
22798         * reflection.c: some changes to build a binary that can be run
22799         directly in windows.
22800
22801 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
22802
22803         * loader.c: print a big message when an icall can't be found.
22804
22805 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22806
22807         * string-icalls.c: fix bug 24248.
22808
22809 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
22810
22811         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
22812         icall.c, reflection.h: separate assembly loading by pathname and by
22813         assembly name. Use the MONO_PATH env var to search for assemblies.
22814
22815 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22816
22817         * assembly.c, image.h: add some support for assemblies
22818         with multiple modules.
22819         * class.c, class.h: export mono_class_from_typeref().
22820         * loader.c: remove duplicated code and use mono_class_from_typeref(),
22821         instead.
22822
22823 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
22824
22825         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
22826         documentation says (the ECMA one is correct).
22827
22828 2002-05-02  Dick Porter  <dick@ximian.com>
22829
22830         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
22831         Don't name the synchronisation mutex.
22832
22833 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
22834
22835         * rand.c
22836         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
22837         Make the prototypes match.
22838         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
22839         Same.
22840
22841         * icall.c
22842         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
22843         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
22844         all systems have tm.tm_zone, so use strftime() with %Z to print
22845         the timezone abreviation into a temp string.
22846
22847         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
22848         rather than mono_array_addr() on a MonoString on Big Endian
22849         machines.
22850
22851 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
22852
22853         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
22854         fix bug 24041
22855
22856 2002-04-30  Dick Porter  <dick@ximian.com>
22857
22858         * socket-io.c: Cope with SOCKET being an integer rather than a
22859         pointer now.
22860
22861         * threads.c: Added Thread_free_internal, to deal with thread
22862         handle cleanup.  Moved calls to handle_store() and handle_remove()
22863         to start_wrapper(), so each can only be called once.  Allocate
22864         synchronisation blocks with GC_malloc(), and use GC finalisation
22865         to close the handles.
22866
22867         * icall.c: added System.Threading.Thread::Thread_free_internal
22868
22869 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22870
22871         * icall.c: support Environment.Exit, CommandLineArgs().
22872
22873 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22874
22875         * object.c, object.h: added mono_runtime_run_main () and
22876         mono_runtime_get_main_args () for use in System.Environment.
22877
22878 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
22879
22880         * gc.c: fix thinko, enable actual finalization since the jit is now
22881         fixed.
22882
22883 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22884
22885         * gc.c, object.c: take into account that an object may be offset wrt the address
22886         returned by GC_malloc().
22887
22888 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
22889
22890         * image.c: handle files without entries in the assembly table (modules).
22891
22892 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
22893
22894         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
22895         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
22896         allowed to be null when it's System.Object class setup.
22897
22898 2002-04-27  Martin Baulig  <martin@gnome.org>
22899
22900         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
22901         if `tb->parent == NULL' rather than crashing.
22902
22903 2002-04-28  Nick Drochak  <ndrochak@gol.com>
22904
22905         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
22906         calling acos() where asin() should have been called.
22907
22908 2002-04-26  Martin Baulig  <martin@gnome.org>
22909
22910         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
22911         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
22912         there's a subdirectory called `System', but we don't want to read that
22913         subdirectory as an assembly.
22914
22915 2002-04-25  Martin Baulig  <martin@gnome.org>
22916
22917         * debug-symfile.c: Reflect latest MonoString changes.
22918
22919 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
22920
22921         * rand.c, rand.h: instance method icalls need to have an explicit
22922         this pointer as first argument in the C implementation.
22923
22924 2002-04-25  Nick Drochak <ndrochak@gol.com>
22925
22926         * icall.c: Fix typo in map for GetNonZeroBytes
22927
22928 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
22929
22930         * string-icalls.c : String does now passes unit tests without any 
22931         errors, the following changes has been made:
22932         
22933         Implemented replace methods.
22934         Renaming of methods to (try) follow the standard.
22935         Fixed compare ordinal
22936         Made all memory allocated directly to function instead of via icall function.
22937         Small performance fix in is_in_array function
22938                         
22939  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
22940
22941         c (mono_string_Internal_ctor_charp_int_int):
22942         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
22943         sindex < 0, throw ArgumentOutOfRangeException instead of
22944         ArgumentNullException.
22945
22946         Added new check for length == 0, however
22947         I need to make it return String.Empty from the C code.
22948         
22949         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
22950         that calculate the length for us here.
22951         
22952         (mono_string_Internal_ctor_sbytep_int_int): Replaced
22953         mono_string_new_utf16 with mono_string_new, since value is utf8.
22954
22955 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22956
22957         * object.c: register the object for finalization if needed.
22958         Allocate one more char in the string for the terminating 0 char.
22959
22960 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22961
22962         * class.c, class.h, image.c: check if a type implemenst a destructor.
22963         Use the proper key for array class lookups.
22964         * icall.c: register the icalls in the System.GC class.
22965         * gc.c, gc.h: GC-related functions and icalls.
22966
22967 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22968
22969         * icall.c:
22970         * socket-io.c:
22971         * unicode.c: free some strings gotten from mono_string_to_utf8 and
22972         changed a couple of free () by g_free ().
22973
22974         * decimal.c: one-liner in the comments for decimal2string ().
22975
22976 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
22977
22978         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
22979
22980 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
22981
22982         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
22983         * object.c (mono_runtime_invoke_array) : handle null in params
22984
22985 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
22986
22987         * string-icalls.c: fixed bug in split (one off bug)
22988
22989 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
22990
22991         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
22992         * icalls.c: added String::Equals as internal method
22993
22994 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
22995
22996         * threads.c: fixed bug in the double interlocked functions
22997
22998 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
22999
23000         * threads.c: implemented all of the new interlocked icalls.
23001         * string-icalls.c: fix a bug in insert.
23002         * icalls.c: added the icalls for interlocked, removed old string functions.
23003         
23004 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
23005
23006         * loader.c: fix off-by-one error when reading argument names.
23007
23008 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23009
23010         * profiler.c: win32 counter implementation (untested).
23011         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
23012         (the latter needs testing and more complete impl. from win32 folks).
23013
23014 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
23015
23016         * object.c: mono_array_new_full workaround mono_array_class_get
23017         problem.
23018
23019 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23020
23021         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
23022         * object.h (mono_string_chars): Changed casting type.
23023
23024 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23025
23026         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
23027                            method signatures to use gunichar2 instead of gint16.
23028
23029 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
23030
23031         * object.h, object.c: domain-specific versions of mono_object_new and
23032         mono_array_new.
23033
23034 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
23035
23036         * object.c: changed String layout
23037
23038         * string-icalls.c (mono_string_Internal_ctor_chara): added
23039         internal string constructors.
23040
23041 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
23042
23043         * threads.c: pass 'this' to the thread start routine.
23044
23045 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23046
23047         * string-icalls.c: fix IndexOf and LastIndexOf. Now
23048         InternalCompareStr don't call twice mono_string_cmp_char for the last
23049         character. Improved performance in mono_string_cmp_char.
23050
23051 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
23052
23053         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
23054         code into its own library: libmonoruntime.
23055
23056 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
23057
23058         * object.h, object.c: changed array format so that szarrays do not
23059         require a bounds structure.
23060         * icall.c, appdomain.c: support for new szarray format.
23061
23062 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
23063
23064         * metadata.c: compare also the retuns type when comparing signatures:
23065         we didn't do this as an optimization since really overloaded methods
23066         must differ also in the arguments, but this doesn't work with
23067         low-level IL code (or when using explicit conversion operators: see
23068         bug#23498 for an example).
23069
23070 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
23071
23072         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
23073
23074 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
23075
23076         * icall.c: make MonoType::GetElementType its own icall.
23077
23078 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
23079
23080         * icall.c: remove MonoMethod_get_Name().
23081         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
23082         object.
23083
23084 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23085
23086         * string-icalls.c: optimized a few methods.
23087
23088 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23089
23090         * icall.c: added all new string internal calls
23091         * string-icalls.c: added, new string internal call implementation.
23092         * object.c: added mono_string_new_size for allocating a string a size
23093
23094 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
23095
23096         * object.c (mono_object_isinst): use the same code as in the
23097         optimized x86 version.
23098
23099 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23100
23101         * profiler.c: TSC-based timer code (faster and more accurate).
23102         Not hooked up in configure, yet (set USE_X86TSC to 1).
23103
23104 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
23105
23106         * profiler.c, profiler.h: track time spent compiling methods.
23107         * threads.c: track thread creation/destruction.
23108
23109 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
23110
23111         * profiler.c, profiler.h, profiler-private.h: profiling interface
23112         and sample implementation. Moved here so that it can be used also by
23113         the jit.
23114
23115 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
23116
23117         * reflection.c, reflection.h: keep types and other handles separate in
23118         the hash tables for referred tokens. Add guid for modules.
23119
23120 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
23121
23122         * assembly.c: fix bugs found with valgrind.
23123         * metadata.h, metadata.c: added mono_metadata_guid_heap().
23124
23125 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
23126
23127         * threads: added icall support for getting current domain for
23128                    the thread.
23129  
23130 2002-04-13  Martin Baulig  <martin@gnome.org>
23131
23132         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
23133         (MonoDebugVarInfo): Added `index' field for register based addresses.
23134         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
23135         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
23136         `MonoDebugVarInfo *params' and `guint32 this_offset' with
23137         `MonoDebugVarInfo *this_var'.
23138
23139         * debug-symfile.c (relocate_variable): New static function to write
23140         a location description for a local variable or method parameter.
23141
23142 2002-04-12  Martin Baulig  <martin@gnome.org>
23143
23144         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
23145         stack offset and begin/end scope address of a local variable.
23146         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
23147         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
23148         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
23149
23150         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
23151         Added new relocation types for start/end scope of a local variable.
23152
23153 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
23154
23155         * object.h: add mono_object_domain() macro.
23156         * reflection.c: handle typespecs.
23157         * icall.c: MonoMethod::get_Name() implementation.
23158
23159 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23160
23161         * icall.c: String::GetHashCode() icall implementation.
23162
23163 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23164
23165         * icall.c: String::IndexOfAny icall.
23166         * object.c, object.h: make array->max_length more useful.
23167         Intrduced mono_object_class() and mono_string_length() macros.
23168
23169 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23170
23171         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
23172         instead of g_unichar_isdigit.
23173
23174 2002-04-11  Nick Drochak  <ndrochak@gol.com>
23175
23176         * icall.c: Implement a simple Double.ToString().
23177
23178 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
23179
23180         * appdomain.h: only io-layer.h is supposed to be included.
23181         * icall.c: explicitly import environ. Fix warning.
23182
23183 2002-04-10  Nick Drochak  <ndrochak@gol.com>
23184
23185         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
23186                 return true even if it's not Daylight Savings time.
23187                 Only return false for the case where the function isn't
23188                 implemented for a plaform (read Windows).
23189
23190 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23191
23192         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
23193         data with a mutex.
23194
23195 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
23196
23197         * mempool.c (mono_mempool_alloc): only use g_malloc when
23198         absolutely necessary.
23199
23200 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
23201
23202         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
23203
23204         * class.c (mono_class_vtable): use domain mempool to allocate vtable
23205         (mono_class_proxy_vtable): use domain mempool
23206
23207 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
23208
23209         * appdomain.h, appdomain.c: split initialization that requires the
23210         execution engine support into mono_runtime_init().
23211
23212 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
23213
23214         * class.c (mono_class_init): don't include vtable inside MonoClass
23215         to save some memory, gather some statistics.
23216         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
23217
23218 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
23219
23220         * icall.c: internalcall implementation for ValueType.Equals().
23221
23222 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
23223
23224         * object.c (mono_message_init): moved 
23225         (mono_runtime_exec_main): new arch. independent impl.
23226         (mono_runtime_invoke_array): new method - like
23227         mono_runtime_invoke, but you can pass an array of objects.
23228         (mono_remoting_invoke): new arch. independent impl.
23229         (mono_message_invoke): new arch. independent impl.
23230         (mono_runtime_class_init): new arch. independent impl.
23231         (mono_runtime_object_init): new arch. independent impl.
23232
23233 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23234
23235         * metadata.c, object.c, reflection.c: documented the exported
23236         functions.
23237
23238 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
23239
23240         * icall.c: simpler code to pass the assembly builder data to corlib.
23241         Implement GetNestedTypes() internalcall.
23242
23243 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
23244
23245         * class.c: warn if a type can't be loaded.
23246
23247 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
23248
23249         * image.h: typedef MonoImageOpenStatus
23250         * types.h: removed unused file
23251         
23252 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
23253
23254         * icall.c: Enum_ToObject accepts enum value arguments.
23255
23256 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
23257
23258         * class.c: move initialization of properties, events and nested
23259         classes, so that they happen for interfaces, too.
23260
23261 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
23262
23263         * icall.c: cleanup some ugly casts in Array_SetValue*.
23264
23265 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
23266
23267         * icall.c: the values array fro enums is of the correct type, now.
23268         Implement (correctly) getFullName instead of assQualifiedName for
23269         MonoType.
23270         * reflection.h, reflection.c: added mono_type_get_name ().
23271
23272 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
23273
23274         * assembly.c, image.h: for each MonoImage, record from wich assembly
23275         it was loaded.
23276         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
23277         Make Type.Assembly work.
23278
23279 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
23280
23281         * debug-symfile.h: use char* instead of gpointer to avoid
23282         unnecessary casts.
23283
23284         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
23285
23286         * icall.c (ves_icall_InternalExecute): impl. FielSetter
23287         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
23288
23289 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
23290
23291         * icall.c (mono_message_init): impl. (code cleanup)
23292         (ves_icall_InternalExecute): impl. FieldGetter
23293
23294         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
23295         defined we call all (non-static)methods through the vtable. 
23296
23297 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
23298
23299         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
23300         finalizer even though the memory is still referenced (and the chunk of
23301         memory is not freed).
23302
23303 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
23304
23305         * assembly.c: fix brokeness.
23306
23307 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
23308
23309         * class.c: kill some warnings. Check explicit interface method
23310         implementation also without considering the namespace.
23311         Load also literal strings in static class data.
23312
23313 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
23314
23315         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
23316         (default_assembly_name_resolver): Make the resolver take the
23317         "base" directory where the assembly was originally defined, so we
23318         can load DLLs that are in the same directory as the assembly that
23319         is being referenced.
23320
23321 2002-03-28  Dick Porter  <dick@ximian.com>
23322
23323         * file-io.h: 
23324         * file-io.c:
23325         * socket-io.c: 
23326         * unicode.h: 
23327         * unicode.c: Warning cleanups
23328
23329 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
23330
23331         * object.h, reflection.h: use the correct type instead of MonoObject.
23332
23333 2002-03-28  Martin Baulig  <martin@gnome.org>
23334
23335         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
23336         (mono_debug_update_symbol_file): Initialize classes if necessary.
23337
23338 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
23339
23340         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
23341         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
23342
23343 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
23344
23345         * assembly.h: fix function prototype.
23346         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
23347         * mono-endian.h: use const cast.
23348
23349 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
23350
23351         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
23352
23353 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
23354
23355         * loader.c: don't assert when a typeref can't be loaded, give
23356         a chance to the runtime to trow an exception instead.
23357         * loader.h: fix warning.
23358
23359 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
23360
23361         * class.c (mono_class_proxy_vtable): added proxy support
23362
23363 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
23364
23365         * icall.c: removed last of PAL calls, added System.Environment
23366         * file-io.h, file-io.c: MonoIO implementation
23367         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
23368
23369 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
23370
23371         * appdomain.c: do not use the byte marker in ldstr table lookup.
23372         * debug-helpers.c: allow two ':' to separate class and method name.
23373         * object.c: allocate arrays bounds with the GC, too.
23374         * verify: add a few more checks.
23375
23376 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
23377
23378         * reflection.c: output also literal strings. Allocate parameter data
23379         with GC_malloc() (thanks, Martin, for catching this!).
23380
23381 2002-03-26  Martin Baulig  <martin@gnome.org>
23382
23383         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
23384         include the `this' offset in the `param_offsets'.
23385
23386 2002-03-25  Martin Baulig  <martin@gnome.org>
23387
23388         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
23389         mono_debug_get_class() function to get the classes. Added new
23390         relocation types for arrays and strings.
23391         (mono_debug_get_class): New static function to search in all
23392         referenced assemblies for a metadata token.
23393
23394         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
23395
23396 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
23397
23398         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
23399         hold gc-allocated objects. Make the string heap a stream like the
23400         others. Removed duplicated code when writing stream info.
23401         Added asserts to catch possible buffer overflows. Set the sorted map
23402         for tables that need sorting. Added some documentation.
23403
23404 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
23405
23406         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
23407         for interned strings and vtables.
23408
23409 2002-03-24  Martin Baulig  <martin@gnome.org>
23410
23411         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
23412         it in the array since it was created with g_slist_prepend().
23413
23414 2002-03-24  Martin Baulig  <martin@gnome.org>
23415
23416         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
23417         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
23418         (mono_debug_method_from_token): Renamed to
23419         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
23420         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
23421
23422         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
23423         relocation types.
23424
23425         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
23426
23427 2002-03-24  Martin Baulig  <martin@gnome.org>
23428
23429         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
23430         (mono_debug_method_from_token): New func.
23431
23432         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
23433         New interncall, calls mono_debug_local_type_from_signature().
23434         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
23435         calls mono_debug_method_from_token().
23436
23437 2002-03-23  Martin Baulig  <martin@gnome.org>
23438
23439         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
23440         specifies the number of bytes to be converted, not the array size.
23441         Return the number of chars, not the number of bytes.
23442         (ves_icall_iconv_get_chars): The `byteCount' argument
23443         specifies the number of bytes to be converted, not the array size.
23444
23445 2002-03-23  Martin Baulig  <martin@gnome.org>
23446
23447         * reflection.h (MonoReflectionSigHelper): New type.
23448
23449         * reflection.c (mono_reflection_sighelper_get_signature_local),
23450         (mono_reflection_sighelper_get_signature_local): New functions.
23451
23452         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
23453         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
23454         interncalls.
23455
23456 2002-03-23  Martin Baulig  <martin@gnome.org>
23457
23458         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
23459         is_writeable is set.
23460         (mono_raw_buffer_update): New function to write the modified map
23461         back to disk.
23462
23463         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
23464
23465         * debug-symfile.c (mono_debug_update_symbol_file): Call
23466         mono_raw_buffer_update() when done writing.
23467
23468 2002-03-23  Martin Baulig  <martin@gnome.org>
23469
23470         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
23471
23472         * debug-symfile.c: Added support for arguments and local variables.
23473
23474 2002-03-23  Dick Porter  <dick@ximian.com>
23475
23476         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
23477         protected by ifdefs, hence breaking the w32 build.
23478
23479 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23480
23481         * object.c: implement is_interned() the right way.
23482
23483 2002-03-21  Martin Baulig  <martin@gnome.org>
23484
23485         * debug-symfile.[ch]: New files to handle debugging information
23486         files. There's also support to dynamically update these symbol
23487         files to include machine dependent information.
23488
23489 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
23490
23491         * threads.c (mono_thread_create): new function to create thread
23492         from C
23493
23494 2002-03-20  Martin Baulig  <martin@gnome.org>
23495
23496         * icall.c (ves_icall_InternalInvoke): Create a new object if the
23497         method is a constructor.
23498         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
23499         points to ves_icall_InternalInvoke().
23500
23501 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
23502
23503         * file-io.c: Flush shouldn't throw exceptions.
23504
23505 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
23506
23507         * file-io.c: FileStream flush support; FileSetLength now
23508         restores file pointer.
23509
23510 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
23511
23512         * class.c: set image for pointer classes.
23513
23514 2002/03/19  Nick Drochak <ndrochak@gol.com>
23515
23516         * sysmath.c: Forgot one.
23517
23518 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
23519
23520         * sysmath.c: Avoid redefining existing names.
23521
23522 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
23523
23524         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
23525         handled by runtime as icall rather than dllimport from libm.so
23526         * file-io.c, file-io.h: fixed handle argument type.
23527
23528 2002-03-18  Dick Porter  <dick@ximian.com>
23529
23530         * reflection.c (mono_image_get_type_info): rename interface to
23531         iface, because of "#define interface struct" on windows.
23532
23533 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
23534
23535         * class.c, class.h: rename and export mono_ptr_class_get().
23536         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
23537         * reflection.c, reflection.h, icall.c: better/saner type name
23538         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
23539         method signatures.
23540
23541 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
23542
23543         * class.c (mono_class_init): removed hardcoded GHC_SLOT
23544
23545         * icall.c (ves_icall_InternalInvoke): impl.
23546
23547 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
23548
23549         * reflection.c: output the interface map table, too.
23550
23551 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
23552
23553         * class.c (class_compute_field_layout): separate computation of 
23554         static field layout
23555
23556 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
23557
23558         * icall.c: added System.Buffer support.
23559         * file-io.c: moved file icalls from PAL to FileStream.
23560
23561 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
23562
23563         * icall.c (ves_icall_System_Object_GetHashCode): impl.
23564
23565 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
23566
23567         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
23568
23569 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
23570
23571         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
23572
23573 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
23574
23575         * debug-helpers.{c,h}: moved here from monograph some useful functions
23576         to locate a method by name/signature in a class or image. Included
23577         also a small and flexible IL disassembler.
23578
23579 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
23580
23581         * reflection.c: fixup tokens in methods with small header size, too.
23582
23583 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
23584
23585         * object.c (mono_string_to_utf8): remove assert(!error), instead
23586         print a warning. 
23587
23588 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
23589
23590         * icall.c: update to the new mono_Array_class_get interface.
23591
23592 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
23593
23594         * appdomain.c, object.c: Boehm-GC enable.
23595         * icall.c: make get_data_chunk() support split data requests.
23596         Ensure a class is initialized in more cases. Return only the first
23597         property found in GetProperties() or the compiler gets confused. 
23598         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
23599         * reflection.h, reflection.c: add fixup mechanism for field and method
23600         tokens. Initialize assembly->typeref in a single place. Output
23601         properties after events. Support custom attributes for events, too.
23602         Typo fix for paramter custom attrs.
23603
23604 2002-03-07  Martin Baulig  <martin@gnome.org>
23605
23606         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
23607
23608 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
23609
23610         * class.c (mono_array_class_get): fix. for multi. dim. arrays
23611
23612 2002-03-06  Martin Baulig  <martin@gnome.org>
23613
23614         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
23615         non-zero lower bounds. See testcases #F10-#F13.
23616
23617 2002-03-05  Martin Baulig  <martin@gnome.org>
23618
23619         * exception.c (mono_get_exception_argument_out_of_range): New exception.
23620
23621         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
23622         ves_icall_System_Array_GetValue(), only calculate the absolute array position
23623         here.
23624         (ves_icall_System_Array_SetValue): Likewise.
23625         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
23626         as argument and does the actual work. This function is used when copying a
23627         multi-dimensional array.
23628         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
23629         now do all the widening conversions of value types.
23630         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
23631
23632 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23633
23634         * class.c: remove some magic numbers and use the smbolic names,
23635         instead. Added init_events() to load event info at class init time.
23636         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
23637         and mono_metadata_methods_from_event().
23638         * reflection.h, reflection.c: added support for writing out the evnets
23639         related information.
23640
23641 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
23642
23643         * reflection.h, icall.c: use a different method (GetInterfaces)
23644         to gather interface info and add isbyref, isprimitive and
23645         ispointer to the ves_icall_get_type_info() return value.
23646
23647 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
23648
23649         * class.h: stared adding support for events.
23650         * icall.c: split find_members implementation. Added debug icall to get
23651         the address of an object.
23652         * reflection.c: handle TypeBuilders in mono_type_get_object().
23653
23654 2002-03-01  Martin Baulig  <martin@gnome.org>
23655
23656         * icall.c (ves_icall_System_Array_GetLength): This must throw an
23657         ArgumentOutOfRangeException(), not an ArgumentException().
23658         (ves_icall_System_Array_GetLowerBound): Likewise.
23659         (ves_icall_System_Array_GetValue): Improved argument checking.
23660         (ves_icall_System_Array_SetValue): Improved argument checking.
23661
23662 2002-03-01  Martin Baulig  <martin@gnome.org>
23663
23664         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
23665         called with invalid arguments rather than just dying with g_assert().
23666         (ves_icall_System_Array_SetValue): Likewise.
23667         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
23668         raise a NotImplementedException instead.
23669         (ves_icall_System_Array_GetLength): Added argument checking.
23670         (ves_icall_System_Array_GetLowerBound): Added argument checking.
23671
23672 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
23673
23674         * object.h (mono_assert): new macros mono_assert and
23675         mono_assert_not_reached
23676
23677 2002-02-28  Martin Baulig  <martin@gnome.org>
23678
23679         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
23680         and "System::String::IsInterned" to "System::String::_IsInterned".
23681
23682 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
23683
23684         * icall.c: remove hacks for typebuilder. Added icall to create a
23685         modified type from a tybebuilder.
23686         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
23687         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
23688         to create a backing MonoClass for a TypeBuilder.
23689
23690 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
23691
23692         * class.c, class.h: more refactoring of class init.
23693         Export mono_class_setup_mono_type() and mono_class_setup_parent().
23694
23695 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
23696
23697         * marshal.c, marshal.h: start of marshaling interface.
23698
23699 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
23700
23701         * icall.c: fix order in assembly qualified name icall.
23702
23703 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
23704
23705         * class.c: do not free str, since we store it in the hash table.
23706         * reflection.h: add label field to MonoILExceptionInfo.
23707         * reflection.c: handle references to more than one assembly. Handle
23708         case when there isn't a module created in the assembly.
23709
23710 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
23711
23712         * class.c: Fix typo. Start refactoring of class init code.
23713
23714 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
23715
23716         * appdomain.c: exit with 1 on error.
23717         * class.c: we already have the name in MonoClassField.
23718         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
23719         MonoStreamHeader instead of an offset of image->raw_metadata.
23720
23721 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
23722
23723         * appdomain.c (mono_init): Be even more descriptive about the error.
23724
23725 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
23726
23727         * appdomain.c: give the user an informative message when corlib can't
23728         be loaded.
23729
23730 2002-02-26  Martin Baulig  <martin@gnome.org>
23731
23732         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
23733         New icall to get the time zone data.
23734
23735 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
23736
23737         * reflection.c: set virtual and raw size of section correctly.
23738         * threads.c: transfer domain information to newly created threads.
23739
23740 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
23741
23742         * class.c: when instancing a class in a domain, load the default
23743         vaules for static fields from the constant table. Fix System.Enum to
23744         not be an enum.
23745         * icall.c: implement Object::GetType() internalcall. Implemented
23746         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
23747         Fixed checking of binding flags in find_members().
23748         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
23749         * reflection.c: handle enumerations when writing to the constant
23750         table. Use a different object cache for types.
23751
23752
23753 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
23754
23755         * object.c (mono_object_isinst): fix for arrays
23756
23757         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
23758
23759 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
23760
23761         * object.c: don't use mprotect ()  and fix intern pool hash table
23762         lookup for big endian systems.
23763
23764 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
23765
23766         * icall.c: change type_is_subtype_of () signature.
23767
23768 2002-02-21  Mark Crichton  <crichton@gimp.org>
23769
23770         * rand.c, rand.h: Added random number generator for
23771         System.Security.Cryptography classes.
23772
23773         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
23774
23775         * icall.c: Added System.Security.Cryptography calls.
23776
23777 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
23778
23779         * class.c, icall.c, metadata.c: better support for pointer types.
23780         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
23781         * reflection.c: Add support for getting custom attrs for properties
23782         and simplify some code.
23783
23784 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
23785
23786         * icall.c: change getToken () and add custom attribute GetBlob()helper
23787         method.
23788         * reflection.h: add custom attrs array to the reflection builder structures.
23789         * reflection.c: encode and emit custom attributes for all the relevant
23790         reflection objects. Cache fieldref and methodref tokens. Change
23791         mono_image_create_token() interface to take a MonoDynamicAssembly.
23792         More complete custom attributes decoder. Load custom attributes for
23793         Assembly, Field, Method and Constructor objects, too. Make the
23794         returned array an Attribute[] one, not object[]. Added
23795         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
23796         custom attribute constructor.
23797
23798 2002-02-20  Dick Porter  <dick@ximian.com>
23799
23800         * icall.c:
23801         * rawbuffer.c:
23802         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
23803         problem code out for now).
23804
23805 2002-02-19  Radek Doulik  <rodo@ximian.com>
23806
23807         * object.c (mono_ldstr): use hash table to avoid multiple swapping
23808
23809 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
23810
23811         * icall.c: register the GetCustomAttributes method.
23812         * object.c, object.h: add mono_string_new_len ().
23813         * reflection.h, reflection.c: added mono_runtime_invoke(),
23814         mono_install_runtime_invoke(). Added
23815         mono_reflection_get_custom_attrs () to load custom attributes and
23816         create the attribute objects.
23817
23818 2002-02-19  Dick Porter  <dick@ximian.com>
23819         * threads-dummy-types.c:
23820         * threads-dummy-types.h:
23821         * threads-dummy.c:
23822         * threads-dummy.h:
23823         * threads-pthread-types.c:
23824         * threads-pthread-types.h:
23825         * threads-pthread.c:
23826         * threads-pthread.h:  Deleted obsolete files
23827
23828 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
23829
23830         * class.c (mono_class_vtable): runtime init the class when we
23831         allocate static class data.
23832
23833         * icall.c (ves_icall_System_Array_SetValue): check for null values.
23834
23835         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
23836         and String - but we will need generic marshalling support in the
23837         future. 
23838         (mono_init): set the domain name in a ms compatible way
23839
23840         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
23841         String[].
23842
23843 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
23844
23845         * object.c (mono_array_clone): use alloca() instead of g_malloc  
23846         for sizes
23847
23848         * appdomain.c (mono_domain_unload): impl.
23849
23850 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
23851
23852         * appdomain.c, object.c: fix intern pool implementation.
23853         * class.c: fix alignment code.
23854
23855 2002-02-16  Radek Doulik  <rodo@ximian.com>
23856
23857         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
23858         and s2 > s1, just copy lower bytes to be compatible with little
23859         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
23860         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
23861
23862         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
23863         force big_endian to be 1 for big endian machines 
23864         (ves_icall_iconv_new_decoder): ditto
23865
23866 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
23867
23868         * socket-io.c (convert_sockopt_level_and_name): If the system
23869         doesn't define SOL_IP or SOL_TCP, get them by hand using
23870         getprotobyname() and caching the values (because this could be a
23871         slow operation).
23872         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
23873         Use the appropriate struct when the system does support it. Ie,
23874         not all systems have struct ip_mreqn so use struct ip_mreq when
23875         appropriate.
23876
23877 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
23878
23879         * reflection.c: handle finally clauses.
23880
23881 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
23882
23883         * socket-io.c: use g_snprintf() instead of snprintf.
23884
23885 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
23886
23887         * reflection.c (mono_param_get_objects): Cast second argument to
23888         mono_method_get_param_names to a const char** to silence the
23889         compiler warning.
23890
23891         * appdomain.c (mono_domain_assembly_open): Put parens around the
23892         truth statement in the for-loop.
23893
23894         * unicode.c (iconv_convert): Got rid of a compiler warning about
23895         int i being unused when the system has a new iconv.
23896         (iconv_get_length): Same.
23897
23898         * image.c (load_class_names): Cast the second argument to
23899         g_hash_table_insert() to char* to hush compiler warnings about the
23900         arg being a const.
23901         (mono_image_open): Same here.
23902
23903         * socket-io.c: Don't conditionally include sys/filio.h or
23904         sys/sockio.h here anymore since we now get them from
23905         io-layer/io-layer.h
23906         (inet_pton): If the system doesn't support inet_aton, implement
23907         using inet_addr and also #define INADDR_NONE if it isn't defined
23908         by the system.
23909
23910 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
23911
23912         * metadata.c, metadata.h: added function to get packing and size info
23913         of a typedef.
23914         * reflection.h, reflection.c: handle field RVA data. Save info about
23915         the table layout if needed. Assign typedef indexes to all the types
23916         before dumping the info about them to avoid forward reference problems.
23917
23918 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
23919
23920         * socket-io.c (convert_sockopt_level_and_name): ifdef
23921         SO_ACCEPTCONN because it is not defined on my system (old debian)
23922
23923 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
23924
23925         * opcode.c: use stddef.h to get NULL.
23926
23927 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
23928
23929         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
23930         for FIONBIO, FIONREAD and SIOCATMARK.
23931         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
23932         define INADDR_NONE and besides, inet_addr() is deprecated and
23933         should not be used. Use inet_pton() instead - it also has the
23934         added bonus that it can easily handle IPv6 addresses as well.
23935         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
23936
23937 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
23938
23939         * decimal.c: remove _MSC_VER conditional.
23940
23941 2002-02-13  Dick Porter  <dick@ximian.com>
23942
23943         * socket-io.c: 
23944         * icall.c: Internal calls for Blocking, Select, Shutdown,
23945         GetSocketOption and SetSocketOption
23946
23947 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23948
23949         * assembly.cs: better resolver: use it instead of some kludgy
23950         code.
23951
23952 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
23953
23954         * reflection.c: the best way to speed-up the compiler is to avoid
23955         infinite loops.
23956
23957 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
23958
23959         * class.c (mono_class_vtable): changed the object layout
23960         (obj->vtable->class). 
23961         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
23962
23963 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23964
23965         * assembly.c: look for assemblies in the assembly dir, too.
23966
23967 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
23968
23969         * class.c: fix thinko in mono_class_from_type().
23970
23971 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
23972
23973         * exception.h, exception.c: added TypeLoadException.
23974         * object.h, object.c: added mono_array_clone ().
23975         * icall.c: handle throwOnError in AssemblyGetType().
23976         Added Array.Clone().
23977         * opcode.h, opcode.c: use a single value for the opcode val.
23978         Compile fix for non-gcc compilers.
23979
23980 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
23981
23982         * opcodes.c, opcodes.h: export interesting info about opcodes.
23983
23984 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
23985
23986         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
23987         icalls. 
23988
23989         * class.c (class_compute_field_layout): set element_class for enums
23990         (mono_class_create_from_typedef): set element_class for normal classes
23991
23992         * icall.c (ves_icall_System_Enum_get_value): impl.
23993
23994         * class.c (mono_class_create_from_typedef): do not set valuetype
23995         flag for System.ValueType and System.Enum
23996
23997 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
23998
23999         * unicode.c (iconv_convert): fix big endian problem.
24000
24001 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24002
24003         * class.c: add asserts if we are ever going to scribble over memory.
24004         * socket-io.c: not all systems have AF_IRDA defined.
24005
24006 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
24007
24008         * class.c (class_compute_field_layout): do not consider static
24009         fields to compute alignment
24010
24011 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
24012
24013         * appdomain.c (mono_appdomain_get): impl.
24014         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
24015
24016 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
24017
24018         * icall.c: ignore "file://" prefix when loading an assembly.
24019
24020 2002-01-23  Dick Porter  <dick@ximian.com>
24021
24022         * socket-io.c:
24023         * icall.c:
24024         * Makefile.am: Added socket support
24025
24026 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
24027
24028         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
24029         code back.  This should return the assemblies that are loaded by
24030         the runtime on behalf of an application domain. 
24031
24032         The current implementation is still broken, it just returns every
24033         assembly loaded, but until we get real applications domain this
24034         will do.
24035
24036 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
24037
24038         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
24039         AppDomain object.
24040
24041 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
24042
24043         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
24044         the mono_class_from_name lookup.
24045         (ves_icall_get_parameter_info): ditto.
24046         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
24047         method.
24048         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
24049
24050 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
24051
24052         * class.c: load also nested classes on class init.
24053         System.ValueType instance methods gets passed boxed
24054         values, unless methods in derived classed that get a pointer to the
24055         data.
24056         * icall.c: use better name parsing code in GetType().
24057         * image.c, image.h: add mono_image_loaded ().
24058         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
24059         * reflection.c, reflection.h: added mono_reflection_parse_type().
24060
24061 2002-01-22  Veronica De Santis <veron78@interfree.it>
24062
24063         * icall.c : Added mapping of internal calls for Manual and Auto reset events
24064         * threads.c : Added the implementation of internal calls for events
24065         * threads.h : Added prototypes of internal calls for events
24066         
24067 2002-01-21  Radek Doulik  <rodo@ximian.com>
24068
24069         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
24070
24071 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
24072
24073         * class.c (mono_class_init): set min_align to 1 (instead of 0)
24074         (mono_class_value_size): use min_align
24075
24076 2002-01-20  Dick Porter  <dick@ximian.com>
24077
24078         * threads.h:
24079         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
24080         so it compiles on w32.
24081
24082 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
24083
24084         * metadata.c (mono_type_stack_size): impl.
24085
24086         * class.c (mono_class_get_field): impl. memberref token
24087
24088 2002-01-16 Veronica De Santis <veron78@@interfree.it>
24089
24090         * icall.h : Added the internal calls mapping for CreateMutex_internal
24091                     and ReleaseMutex_internal.
24092         * threads.h : Added the prototype of mutexes internal calls.
24093         * threads.c : Added the implementations of mutexes internal calls.
24094
24095 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
24096
24097         * metaparse.h: removed unused file.
24098         * reflection.c, reflection.h: added stream_data_align () function 
24099         to align data in streams and keep stream aligned. Add support for
24100         exception support in method headers.
24101
24102 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
24103
24104         * unicode.c: make iconv_convert () return the number of bytess written
24105         in the output buffer.
24106
24107 2002-01-15  Dick Porter  <dick@ximian.com>
24108         * threads.c: Make the runtime's idea of infinite timeouts coincide
24109         with the class library's
24110
24111         Fix a particularly egregious bug in mono_thread_cleanup(). That
24112         code was so utterly bogus it must have been written on a Monday.
24113
24114 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
24115
24116         * reflection.h: add subtypes field to TypeBuilder.
24117         * reflection.c: encode constants for literal fields.
24118         Handle subtypes. Fix user string token (and add a zero byte)
24119         at the end.
24120         
24121 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
24122
24123         * class.c (mono_class_init): bug fix: assign slot numbers for
24124         abstract methods.
24125
24126 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24127
24128         * reflection.c: don't try to output a code RVA for abstract methods.
24129         Small fixes for method header format. Output parameter info to the
24130         ParamDef table. Save method overriding info to MethodImpl table.
24131         Fix property support. Allow typedef.extends to be a type in the
24132         building assembly.
24133         * verify.c: fix off-by-one error.
24134
24135 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
24136
24137         * class.c: fix mono_class_from_mono_type () for szarray types.
24138         Remove unused cache check in mono_class_from_type_spec().
24139         * icall.c: *type_from_name () functions handle simple arrays and byref.
24140         * reflection.c: handle byref and szarray types. Handle methods without
24141         body (gets P/Invoke compilation working). Handle types and fields in
24142         get_token ().
24143         * reflection.h: add rank to MonoTypeInfo.
24144
24145 2002-01-10  Dick Porter  <dick@ximian.com>
24146
24147         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
24148         internal calls
24149
24150 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
24151
24152         * icall.c: initialize class in type_from_handle ().
24153         Loop also in parent classes for get_method ().
24154         * reflection.c: properly encode class and valuetype types.
24155         Start on encoding TypeBuilder types. Handle fieldrefs.
24156         Use correct length when registering a user string.
24157         Handle ConstructorBuilder and MonoMethod in get_token ().
24158         Make mono_type_get_object () aware of cached types.
24159         * object.c: back out change to mono_string_new ().
24160
24161 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
24162         * object.c: mono_string_new should return a NULL when the string 
24163         passed in is NULL -- not try to deference it.
24164         
24165 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
24166
24167         * icall.c: hack to make IsSubType work for TypeBuilders.
24168         * reflection.c: emit constructors before methods.
24169         Retrieve param names in mono_param_get_objects().
24170
24171 2002/01/05  Nick Drochak  <ndrochak@gol.com>
24172
24173         * Makefile.am: fix list of headers and sources so automake 1.5
24174         doesn't complain. Removed \# at end of list.
24175
24176 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
24177
24178         * reflection.c: get token for a method ref. Set return type of
24179         constructor to void.
24180         * loader.c: debug message.
24181         * class.c: typo fix.
24182
24183 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
24184
24185         * icall.c: fix array init with rank > 1. FindMembers
24186         loops in parent class as well.
24187         * image.c: do not insert nested types in name cache.
24188         * reflection.c: warning fix.
24189         * reflection.h: add override method (for interface impl).
24190
24191 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
24192
24193         * metadata.c: fix customattr decoding.
24194
24195 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
24196
24197         * rawbuffer.cs: Added native Win32 implementation, avoids using
24198         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
24199
24200 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
24201
24202         * class.c: make the low-level routines handle the cache.
24203
24204 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
24205
24206         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
24207
24208 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
24209
24210         * class.c: fix mono_array_element_size() for objects.
24211         * class.h, class.c: add properties to MonoClass and load them
24212         at init time.
24213         * icall.c: check with isinst() when assigning a value to an array
24214         instead of requiring the classes to match exactly.
24215         Implemented icall for System.Type::GetType().
24216         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
24217         enums. Handle bindingflags when looking for methods and fields.
24218         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
24219         and mono_metadata_methods_from_property().
24220         * reflection.h, reflection.c: added structures for propreties,
24221         parameters and enums. Implemented mono_property_get_object() and
24222         mono_param_get_objects().
24223
24224 2001-12-18  Dick Porter  <dick@ximian.com>
24225
24226         * file-io.c: Use mono_string_to_utf16() instead of
24227         mono_string_chars()
24228
24229         * object.c: Added mono_string_to_utf16(), which copies the non
24230         NULL-terminated MonoString into a new double-null-terminated
24231         buffer.
24232
24233 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
24234
24235         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
24236
24237 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
24238
24239         * file-io.c: raise exceptions if handle is invalid.
24240
24241 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
24242
24243         * assembly.c: yet another check for mscorlib.
24244         * class.c, class.h: load nesting info for classes.
24245         * icall.c: many new functions to support the Reflection classes.
24246         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
24247         * reflection.h, reflection.c: mono_image_create_token(),
24248         mono_assembly_get_object(), mono_type_get_object(),
24249         mono_method_get_object(), mono_field_get_object(): methods to return
24250         objects that parallel the C representation of assemblies, types,
24251         methods, fields.
24252
24253 2001-12-11  Dick Porter  <dick@ximian.com>
24254
24255         * icall.c:
24256         * file-io.c: Internal calls for file IO.
24257
24258 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
24259
24260         * tabledefs.h: missing FileAttributes.
24261         * verify.h, verify.c: use is_valid_string () to simplify and check for
24262         valid strings more correctly. Fix warnings and speeling.
24263         Check more tables: Filed, File, ModuleRef, StandAloneSig.
24264         Check code: branches, maxstack, method calls.
24265
24266 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
24267
24268         * object.c (mono_object_allocate): removed static, so that the jit
24269         can allocate value types.
24270
24271         * icall.c (ves_icall_System_DateTime_GetNow): impl.
24272
24273 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24274
24275         * class.c: init enum types right away and register the
24276         token->MonoClass map in mono_class_create_from_typedef ().
24277         * verify.h, verify.c: first cut of the verifier.
24278         * pedump.c: add --verify switch to verify metadata tables.
24279         * tabledefs.h: add some missing enums.
24280
24281 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
24282
24283         * class.c (mono_install_runtime_class_init): impl.
24284         (mono_class_init): renamed mono_class_metadata_init to
24285         mono_class_init, also removed the metadata_inited flag
24286
24287         * object.c (mono_object_isinst): use faster algorithm
24288
24289 2001-11-30  Radek Doulik  <rodo@ximian.com>
24290
24291         * mono-endian.h: reverted last change
24292         added function prototypes
24293
24294         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
24295         add mono-endian.c back
24296
24297         * mono-endian.c: returned back, as Paolo pointed out, it's needed
24298         for unaligned access, I've mistaked it with endianess. I am
24299         sorry.
24300         (mono_read16): fix reverted endianess
24301         (mono_read64): ditto
24302         (mono_read32): ditto
24303
24304 2001-11-30  Dick Porter  <dick@ximian.com>
24305
24306         * exception.c: Implement mono_exception_from_name()
24307
24308 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
24309
24310         * metadata.h, metadata.c: remove params_size and locals_size and their
24311         calculation from the metadata code: they are only usefult to the
24312         interp.
24313
24314 2001-11-29  Radek Doulik  <rodo@ximian.com>
24315
24316         * object.c (mono_ldstr): swap bytes here, it's probably not the
24317         best place, but works for me now, I'll redo it once I know mono
24318         better, also note that I add PROT_WRITE and don't reset back, also
24319         note that it's only affects big endians, so x86 should be OK
24320
24321         * mono-endian.h (read16): use just glib macros for both endians
24322
24323         * mono-endian.c: removed as glib macros are used in in
24324         mono-endian.h so we don't need to care about endianess for read
24325         macros as glib does that for us already
24326
24327 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
24328
24329         * class.h, class.h: take minimum alignment into consideration so
24330         that the fields of a class remain aligned also when in an array.
24331
24332 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24333
24334         * loader.h, loader.c: add mono_method_get_param_names().
24335         * class.c: 0-init class fields.
24336
24337 2001-11-26  Dick Porter  <dick@ximian.com>
24338
24339         * icall.c:
24340         * threads-types.h:
24341         * threads.c: New file that handles System.Threading on all platforms
24342
24343         * object.c: 
24344         * object.h: Remove the synchronisation struct from MonoObject,
24345         replace it with a pointer that gets initialised on demand
24346
24347         * Makefile.am: Replace all the system-specific threading code with
24348         a single file that uses the new wrapper library
24349
24350 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
24351
24352         * class.c, class.h: add mono_install_trampoline() so that the runtime
24353         can register a function to create a trampoline: removes the ugly
24354         requirement that a runtime needed to export arch_create_jit_trampoline.
24355         * object.h, object.c: added mono_install_handler() so that the runtime
24356         can install an handler for exceptions generated in C code (with
24357         mono_raise_exception()). Added C struct for System.Delegate.
24358         * pedump.c: removed arch_create_jit_trampoline.
24359         * reflection.c: some cleanups to allow registering user strings and
24360         later getting a token for methodrefs and fieldrefs before the assembly
24361         is built.
24362         * row-indexes.h: updates and fixes from the new ECMA specs.
24363
24364 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
24365
24366         * class.h, class.c: add enum_basetype field to MonoClass.
24367         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
24368         to get index in the constant table reated to a field, param or
24369         property.
24370         * reflection.h, reflection.c: handle constructors. Set public-key and
24371         version number of the built assembly to 0.
24372         * row-indexes.h: update from new ECMA spec.
24373
24374 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
24375
24376         * class.h, class.c: add a max_interface_id to MonoClass.
24377         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
24378         since it's used to do that. Added mono_type_type_from_obj().
24379         Make GetType() return NULL instead of segfaulting if the type was not
24380         found. Handle simple arrays in assQualifiedName.
24381         * object.h: add a struct to represent an Exception.
24382         * reflection.c: output call convention in method signature.
24383         Add code to support P/Invoke methods and fixed offsets for fields.
24384
24385 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
24386
24387         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
24388         the value.
24389         * icall.c: use mono_array_addr instead of array->vector: fixes the
24390         reflection image writing.
24391         * reflection.c: init call convention byte to 0 in method signature.
24392         Encode the property signature. Don't output property-related methods
24393         twice. Really process the properties for a type (don't cast a field to
24394         a property, my mom always told me that).
24395         Fix 64 bit issues in pointer alignment in a different and more
24396         readable way.
24397
24398 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
24399
24400         * loader.h: Removed type class from MonoDefaults, added monotype
24401
24402         * loader.c: Loaded MonoType, removed loading of Type
24403
24404         * icall.c (my_mono_new_object): Now returns a System.MonoType,
24405         and fills in System.Type._impl with a RuntimeTypeHandle rather
24406         than the actual MonoClass *
24407
24408         (ves_icall_type_from_handle): change from type_class to
24409         monotype_class
24410
24411         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
24412         implemented
24413
24414         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
24415         implemented
24416
24417         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
24418
24419         (ves_icall_System_Reflection_Assembly_GetType): implemented
24420
24421         (ves_icall_System_MonoType_assQualifiedName): implemented
24422
24423         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
24424
24425 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
24426
24427         * assembly.c (mono_assembly_open): Implement a cache for the
24428         assemblies. 
24429
24430         (mono_assembly_close): only destroy the assembly when the last
24431         reference is gone.
24432         
24433 2001-11-09  Dick Porter  <dick@ximian.com>
24434
24435         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
24436
24437 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
24438
24439         * class.c (mono_class_metadata_init): bug fix: compute the right slot
24440
24441 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
24442
24443         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
24444         from Martin Weindel.
24445         * object.h: add mono_string_chars ().
24446
24447 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
24448
24449         * reflection.c (build_compressed_metadata): Eliminates warnings
24450         and uses 64-bit clean code.
24451
24452         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
24453         (mono_type_equal): Change signature to eliminate warnings.
24454
24455 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24456
24457         * icall.c, loader.c: remove the internalcall array constructors.
24458         Changes to match the new MonoArray structure.
24459         * object.h, object.c: an array object doesn't allocate an extra
24460         vector. Add mono_array_new_full () to create jagged arrays easily.
24461
24462 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
24463
24464         * metadata.h, metadata.c: add mono_metadata_field_info () to
24465         retreive all the info about a field from vairous tables.
24466         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
24467         * class.h, class.c: augment MonoClassField with more info.
24468         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
24469         policy and load a field's RVA if needed.
24470
24471 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
24472
24473         * class.c (mono_class_metadata_init): create a trampoline for all
24474         virtual functions instead of actually compiling them.
24475
24476 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
24477
24478         * class.h, class.c: include name in MonoClassField.
24479         * class.c: fix fundamental type of System.Object and System.String.
24480         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
24481         tokens in ldtoken.
24482         * icall.c: remove internalcalls for the Reflection stuff that is now
24483         done in C# code.
24484         * loader.c: mono_field_from_memberref () implementation.
24485         * mono-endian.c: thinko (s/struct/union/g).
24486         * object.c, object.h: make the mono_string_* prototypes actually use
24487         MonoString instead of MonoObject.
24488         * reflection.c, reflection.h: updates for changes in the reflection
24489         code in corlib: we use C structures that map to the actual C# classes.
24490         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
24491         fat method header if needed and use the info from the ILGenerator for
24492         methods. Handle fields in types. Misc fixes.
24493
24494 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
24495
24496         * class.c (mono_class_metadata_init): bug fix: always allocate
24497         space for static class data
24498
24499 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
24500
24501         * class.c (mono_compute_relative_numbering): use relative
24502         numbering to support fast runtime type checks.
24503
24504 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
24505
24506         * class.c (mono_class_create_from_typeref): added debugging output
24507         to print class name when MonoDummy is returned instead of real class
24508
24509 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
24510
24511         * class.c (mono_class_metadata_init): interface offset table now
24512         contains pointers into the vtable - this is more efficient for the jit
24513
24514 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
24515
24516         * class.c (mono_class_metadata_init): use a temporary vtable (the
24517         old algorithm only worked for the interpreter, but not for the jit)
24518
24519 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
24520
24521         * loader.c (method_from_memberref): use mono_class_get to get the
24522         class of an array instead of using System.Array directly.
24523         (mono_get_method): also add MEMBERREF methods to the method cache
24524         which usefull for arrays.
24525
24526 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
24527
24528         * pedump.c (arch_compile_method): added to compute vtable entry
24529
24530         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
24531         number of interfaces.
24532         
24533         * class.h: merged MonoArrayClass into MonoClass
24534
24535         * class.c (mono_class_create_from_typedef): compute the vtable size and
24536         allocate space to include the vtable inside MonoClass
24537         (mono_class_metadata_init): initialize the vtable
24538
24539 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
24540
24541         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
24542         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
24543         * image.c: endian fixes by Laurent Rioux.
24544         * object.h, object.c: rename MonoStringObject to MonoString and
24545         MonoArrayObject to MonoArray. Change some function names to conform to
24546         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
24547         guint16* as first argument, so don't use char*.
24548         Provide macros to do the interesting things on arrays in a portable way.
24549         * threads-pthread.c: updates for the API changes and #include <sched.h>
24550         (required for sched_yield()).
24551         * icall.c: updates for the API changes above.
24552         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
24553         platforms that need them.
24554
24555 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
24556
24557         * class.c: set the correct type for all the fundamental
24558         type when loading the class.
24559
24560 2001-10-05  Dick Porter  <dick@ximian.com>
24561
24562         * threads-pthread.c (pthread_mutex_timedlock): Simple
24563         compatibility version for C libraries that lack this call.
24564
24565 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
24566
24567         * class.c: MonoTypes stored in MonoClass are stored as
24568         fundamental MonoTypes when the class represents a
24569         fundamental type (System.Int32, ...).
24570         The TypeHandle return by ldtoken is a MonoType*.
24571         * icall.c: ves_icall_get_data_chunk () write out all the
24572         PE/COFF stuff. Implement ves_icall_define_method (),
24573         ves_icall_set_method_body (), ves_icall_type_from_handle ().
24574         * image.c: properly skip unknown streams.
24575         * loader.h, loader.c: add type_class to mono_defaults.
24576         * metadata.c, metadata.h: export compute_size () as
24577         mono_metadata_compute_size () with a better interface.
24578         Typo and C&P fixes.
24579         * pedump.c: don't try to print the entry point RVA if there is no entry point.
24580         * reflection.c, reflection.h: many cleanups, fixes, output method
24581         signatures and headers, typedef and typeref info, compress the metadata
24582         tables, output all the heap streams, cli header etc.
24583         * row-indexes.h: typo fixes.
24584
24585 2001-10-04  Dick Porter  <dick@ximian.com>
24586
24587         * object.h: Add a synchronisation mutex struct to MonoObject
24588
24589         * object.c (mono_new_object): Initialise the object
24590         synchronisation mutexes
24591
24592         * icall.c: System.Threading.Monitor internal calls
24593         
24594         * threads-pthread.h:
24595         * threads-pthread.c: System.Threading.Monitor internal calls
24596
24597         * threads-types.h: New file, includes the system-specific thread
24598         structures
24599         
24600         * threads-pthread-types.h:
24601         * threads-pthread-types.c: New files, handle pthread-specific
24602         synchronisation types
24603
24604         * threads-dummy-types.h: 
24605         * threads-dummy-types.c: New files of dummy support for
24606         thread-specific types
24607
24608         * metadata.c:
24609         * image.c:
24610         * pedump.c: include mono-endian.h not endian.h
24611         
24612         * Makefile.am: More threads files.
24613         Name mono-endian.h not endian.h
24614
24615 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
24616
24617         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
24618         stuff and implement a few more bits.
24619         * icall.c: a field needs to be dereferenced twice. Do not use the same
24620         name for two variables in the same scope.
24621         * image.c, image.h: cleanups.
24622
24623 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
24624
24625         * class.c (mono_class_metadata_init): bug fix: compute the right size
24626
24627 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
24628
24629         * icall.c: implemented some of the Reflection internalcalls.
24630         * image.c, image.h: start writing out the PE/COFF image.
24631         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
24632         that does the reverse than decode_blob_size ().
24633         * object.c: use mono_metadata_encode_value (). Move here
24634         temporary implementation of mono_string_to_utf8 ().
24635         * rawbuffer.c: make malloc_map static.
24636
24637 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
24638
24639         * metadata.c: fix type comparison for arrays.
24640         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
24641         Added a couple of new classes to monodefaults.
24642         * icall.c: added a couple of Reflection-related internalcalls.
24643         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
24644         Added a byval_arg MonoType to MonoClass.
24645
24646 2001-09-28  Dick Porter  <dick@ximian.com>
24647
24648         * icall.c:
24649         * threads-pthread.h: 
24650         * threads-pthread.c: Implemented internal calls for
24651         LocalDataStoreSlot operations.  Applied mutexes around all shared
24652         data.  Reworked the thread creation and Start() operations to
24653         avoid a race condition.
24654         
24655         * threads-dummy.h:
24656         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
24657
24658 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
24659
24660         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
24661
24662 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
24663
24664         * class.c, loader.c: warn and return NULL instead of erroring out.
24665         * icall.c: added System.AppDomain::getCurDomain().
24666         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
24667
24668 2001-09-25  Dick Porter  <dick@ximian.com>
24669
24670         * threads-pthread.h:
24671         * threads-pthread.c: Implemented timed thread joining and added
24672         System.Threading.Thread::Join_internal internal call
24673
24674         * icall.c: Added System.Threading.Thread::Join_internal internal call
24675
24676         * threads-dummy.h:
24677         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
24678
24679 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
24680
24681         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
24682         mono_string_intern () to implement the semantics of the ldstr opcode
24683         and the interning of System.Strings.
24684         * icall.c: provide hooks to make String::IsIntern and String::Intern
24685         internalcalls.
24686
24687 2001-09-23  Dick Porter  <dick@ximian.com>
24688
24689         * threads-dummy.c: 
24690         * threads-dummy.h: New files of dummy threading routines
24691
24692         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
24693         support code based on system specifics
24694
24695         Rename PTHREAD_LIBS to THREAD_LIBS
24696         
24697 2001-09-23  Dick Porter  <dick@ximian.com>
24698
24699         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
24700         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
24701         internal calls.
24702         (mono_thread_init): Set up a Thread object instance to return when
24703         the main thread calls Thread.CurrentThread
24704         (mono_thread_cleanup): Wait for all subthreads to exit
24705
24706         * icall.c: New internal calls for System.Threading.Thread::Sleep
24707         (including Schedule) and CurrentThread
24708
24709         * threads.h: New file, to insulate thread-specific stuff from the
24710         rest of the code
24711
24712 2001-09-21  Dick Porter  <dick@ximian.com>
24713
24714         * threads-pthread.h: 
24715         * threads-pthread.c: New file, for handling pthreads-style
24716         threading support.  Start() now starts a new thread and executes
24717         the ThreadStart delegate instance.
24718
24719         * icall.c: Added the internalcall for
24720         System.Threading.Thread::Start_internal
24721
24722         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
24723
24724 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
24725
24726         * loader.c: work around the different signatures for delegates
24727         constructors csc generates in compiled code vs the ones compiled in mscorlib.
24728
24729 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
24730
24731         * class.h, class.c: add mono_class_get_field_from_name ().
24732         * *: Fix C comments and other ANSI C issues.
24733
24734 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
24735
24736         * endian.h, assembly.c: fix some endianness issues.
24737
24738 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
24739
24740         * loader.h, load.c: add delegate_class to mono_defaults.
24741         Handle runtime provided methods in mono_get_method ().
24742
24743 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
24744
24745         * loader.c (mono_get_method): use pinvoke for internal call
24746
24747         * icall.c: use pinvoke for internal call
24748
24749         * loader.c (method_from_memberref): set the method name
24750
24751 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
24752
24753         * metadata.c: help the compiler generate better code for
24754         mono_class_from_mono_type ().
24755
24756 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
24757
24758         * class.c (mono_class_metadata_init): delayed computing of the
24759         class size to mono_class_metadata_init ()
24760
24761 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
24762
24763         * class.c, class.h: add an interfaces member to MonoClass.
24764         * image.c, image.h: add assembly_name field to MonoImage
24765         from the assembly table.
24766         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
24767
24768 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
24769
24770         * class.c: Handle Array in mono_class_from_mono_type ().
24771         * metadata.c, pedump.c: some endian fixes.
24772
24773 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
24774
24775         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
24776         * metadata.c: fix small problem introduced with the latest commit.
24777
24778 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
24779
24780         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
24781         We don't need a MonoMetadata pointer anymore to compare signatures in
24782         mono_metadata_signature_equal (), update callers.
24783         Reduced memory usage an number of allocations for MonoMethodHeader and
24784         MonoMethodSignature.
24785
24786 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
24787
24788         * metadata.c: added compare for szarray.
24789
24790 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
24791
24792         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
24793         and add a couple more types to it and mono_defaults. Give an hint on
24794         classes that need implementing in our corlib and are referenced
24795         in mscorlib.
24796
24797 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
24798
24799         * class.h, class.c: keep track if a class is also an Enum.
24800         * loader.c: Implement a couple more types for use in libffi
24801         marshalling. Gives better diagnostics when failing to dlopen
24802         a library. Set method->klass for P/Invoke methods, too.
24803
24804 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
24805
24806         * class.c, class.h: add a MonoType this_arg to MonoClass that
24807         represents a pointer to an object of the class' type that
24808         can be used by the interpreter and later the type cache.
24809         Add best guess alignment info for valuetype objects.
24810
24811 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
24812
24813         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
24814         into MonoType: one less level of indirection and allocation and
24815         simplifies quite a bit of code. Added cache for MonoTypes that are
24816         used frequently, so that we don't need to allocate them all the time.
24817
24818 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
24819
24820         * class.c (mono_class_create_from_typedef): System.Enum is also a
24821         value type, although it does not derive from System.ValueType
24822         (maybe a bug in the ms compiler?)
24823
24824         * metadata.c (mono_type_size): return the right size for value types
24825
24826         * loader.c (mono_get_method): only initialize method header if not abstract
24827
24828         * class.c (mono_class_from_mono_type): use mono_default values. 
24829
24830 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
24831
24832         * *: use MonoClass pointers instead of <type_tokens>
24833         
24834         * class.h: new flag: metadata_inited.
24835
24836         * class.c (mono_class_metadata_init): impl.
24837         (mono_class_instance_size): impl.
24838         (mono_class_data_size): impl.
24839
24840 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
24841
24842         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
24843         MonoClass now has the name and name_space fields. 
24844         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
24845         mono_get_method () takes and optional MonoClass as argument.
24846         Removed mono_typedef_from_name() and added mono_class_token_from_name()
24847         instead that takes advantage of a map from class names to typedef
24848         tokens in MonoImage.
24849
24850 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
24851
24852         * metadata.c: zero is not a valid alignment boundary.
24853         Merge MONO_TYPE_VOID in default decoding code.
24854
24855 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
24856
24857         * image.h: merged MonoMetadata into MonoImage
24858
24859         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
24860         identify the type of elements.
24861
24862 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
24863
24864         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
24865         * cil-coff.h: split MonoMSDOSHeader and add size info.
24866         * image.c: add some consistency checks.
24867         * metadata.c: fix row size computation: one programmer
24868         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
24869         add explanation for the locator routine.
24870         Fix decoding of size in method header.
24871         
24872 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
24873
24874         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
24875         (g_concat_dir_and_file): Bring g_concat_dir_and_file
24876         function from gnome-libs.  This uses the right path separator
24877         based on the OS, and also works around a bug in some systems where
24878         a double slash is not allowed. 
24879         (default_assembly_name_resolver): Use g_concat_dir_and_file
24880         (mono_assembly_open): ditto.
24881
24882 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
24883
24884         * metadata.c (mono_metadata_signature_equal): impl.
24885
24886         * *: void is now a realy MonoType (instead of using NULL)
24887         
24888         * metadata.c (do_mono_metadata_parse_type): use
24889         mono_metadata_parse_type to parse void value.
24890
24891 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
24892
24893         * metadata.c, metadata.h: in the signature and method header store
24894         only the space required for holding the loca vars and incoming arguments.
24895
24896 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
24897
24898         * metadata.c (do_mono_metadata_parse_type): treat void like any
24899         other type (instead of assigning NULL);
24900
24901 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
24902
24903         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
24904
24905 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
24906
24907         * image.c (do_mono_image_open): added a cache for arrays.
24908
24909 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
24910
24911         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
24912         decode a single column from a row in a metadata table and changes
24913         to take advantage of it in the typedef locator (gives a nice speed up).
24914         Store offset info for function params.
24915
24916 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
24917
24918         * image.h (MONO_IMAGE_IS_CORLIB): removed 
24919
24920 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
24921
24922         * assembly.c: how could mono_assembly_close () had ever worked?
24923         * metadata.c, metadata.h: provide offset info for local vars.
24924         Implement mono_type_size () to take care of alignment as well
24925         as size (it was mono_field_type_size in cli/class.c before).
24926
24927 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
24928
24929         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
24930
24931         * assembly.h (CORLIB_NAME): set to corlib.dll
24932
24933         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
24934
24935 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
24936
24937         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
24938         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
24939         tokentype.h: massive namespace cleanup.
24940
24941 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
24942
24943         * metadata.h, metadata.c: decode exception clauses when parsing method header.
24944
24945 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
24946
24947         * metadata.c (mono_metadata_free_type): added check for type !=
24948         NULL (void) before calling mono_metadata_free_type()
24949
24950 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
24951
24952         * metadata.h, row_indexes.h: added header with enumerations to use
24953         to index in the columns from tables in metadata and to decode coded
24954         tokens: we should start using this instead of embedding magic numbers
24955         all over the code.
24956
24957 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
24958
24959         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
24960         Move metadata_t info from cli_image_info_t to MonoImage, where
24961         it's easily accessible. Changed all the uses accordingly.
24962         Added the method and class caches to MonoImage.
24963         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
24964         and mono_metadata_decode_value () signature to be more consistent
24965         with the other parse functions (and simplify code). Taken advantage
24966         of zero-length array allocation with GCC. Removed reduntant (and
24967         wrong) MonoFieldType struct and use MonoParam instead. Changed
24968         mono_metadata_parse_field_type () to use common code for parsing.
24969         Added mono_metadata_typedef_from_field () and
24970         mono_metadata_typedef_from_method () to lookup a typedef index from a
24971         field or method token.
24972         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
24973
24974 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
24975
24976         * metadata.c (mono_metadata_parse_field_type): Implement. 
24977         (do_mono_metadata_parse_type): Split engine from
24978         mono_metadata_parse_type, so that we can create smaller structures
24979         for things that just have one pointer to the MonoType (look at
24980         the MonoFieldType)
24981
24982 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
24983
24984         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
24985         as Jan Gray found out, it is incorrect. 
24986
24987 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
24988
24989         * assembly.c: Implement asssembly loading.  This loads an image
24990         and loads all the referenced assemblies.  Come to think of it, we
24991         could always do lazy loading of the assemblies. 
24992
24993         * image.c (mono_image_open): Keep loaded images in a hashtable.
24994
24995         * image.h (MonoImage): Add reference count.
24996
24997 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
24998
24999         * assembly.c (mono_assembly_open): Keep track of the file name in
25000         case the assembly has no ASSEMBLY table.
25001
25002         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
25003         from get.c here.
25004
25005 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
25006
25007         * metadata.c, metadata.h: decode local vars in method header
25008         parse function. Change callers accordingly.
25009
25010 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
25011
25012         * metadata.h, cil-coff.h: protect against multiple inclusion.
25013         Added some new structures to hold information decoded from metadata:
25014         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
25015         and relevant decoding/free functions.
25016         * metadata.c: implement decoding functions. Add warning for out of bounds
25017         index in mono_metadata_locate(). Implement mono_get_method () to retreive
25018         all the info about a method signature and invocation. Remove check on
25019         uninitialized local var in parse_mh() and fix memory leak.
25020
25021 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
25022
25023         * metadata.h: More macros.
25024
25025         * tokentype.h: New file.
25026
25027 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
25028
25029         * assembly.c: added a consistency check and initialize
25030         some structures with g_new0().
25031         * metadata.c: fixed a couple more bugs in table size computation
25032         and add other checks for out-of bound access to metadata.
25033
25034 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
25035
25036         * metatada.c: fix bugs computing table sizes. Spew a
25037         warning when index in string heap is out of bounds.
25038
25039 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
25040
25041         * metadata.h: Add a couple of macros to manipulate tokens. 
25042
25043 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
25044
25045         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
25046         cli_section_tables).
25047
25048 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
25049
25050         * metadata.c (mono_metadata_user_string): New function, provides
25051         access to the UserString heap. 
25052
25053 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
25054
25055         * metadata.c: Add inline documentation.
25056
25057 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
25058
25059         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
25060         files. 
25061
25062 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
25063
25064         * typeattr.h: New file, TypeAttribute flags. 
25065
25066 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
25067
25068         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
25069         mono_assembly_ensure_section): Section loading code.
25070         (load_section_tables): Load the sections.
25071
25072         * mono/metadata/metadata.c (mono_metadata_locate_token,
25073         mono_metadata_locate): Functions to locate the information
25074         definition given a token or a table and an index.
25075         (mono_metadata_compute_table_bases): New.
25076         (compute_size): New function to compute the sizes of the various
25077         tables.
25078
25079         * mono/metadata/metadata.h: Finish listing the different index
25080         types. 
25081
25082         * mono/metadata/pedump.c: Improve to dump new information.
25083
25084 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
25085
25086         * mono/metadata/metadata.c: Entered all the tables matching
25087         Beta2. 
25088
25089         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
25090
25091
25092