2008-03-08 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
2
3         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
4
5 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
6
7         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
8         system types correctly.
9
10         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
11         function.
12
13 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
14
15         * assembly.c (build_assembly_name): Fix a warning.
16
17 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
18
19         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
20         the called function takes an object type argument. Fixes storing or
21         valuetypes across remoting as well as reducing memory usage.
22         * image.c, metadata-internals.h: remove now unused ldfld_remote and
23         stfld_remote wrapper caches.
24
25 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
26
27         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
28         is not found.
29
30         * reflection.c (mono_image_register_token): New helper function to save
31         a token->object mapping.        
32
33         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
34         managed code.
35
36         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
37         one dimension arrays. Fixes #367670.
38         (mono_reflection_get_type_internal): Ditto.
39
40 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
41
42         * marshal.c: mono_load_remote_field_new() always returns object.
43         so use the proper signature (fixes bug #366445).
44
45 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
46         
47         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
48         add an 'inline_failure' flag instead.
49
50 2008-03-04  Mark Probst  <mark.probst@gmail.com>
51
52         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
53         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
54         contains the location of "this", used for exception handling.
55
56 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
57
58         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
59         their size on all platforms for perf reasons.
60
61 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
62
63         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
64         object-internal.h
65
66         * object-internal.h: Same.
67
68 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
69
70         * reflection.h: Fix the build I just broke.
71
72 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
73
74         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
75         Test if a token is valid, this remove explicit usage of 
76         MonoDynamicImage::tokens from the verifier code.
77
78         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
79
80         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
81         instead of direct access to MonoDynamicImage::tokens.
82
83 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
84
85         * verify.c (token_bounds_check): Fix the build I just broke.
86
87 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
88
89         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
90
91         * verify.c (verifier_load_method): Fixed the errors message.
92
93         * verify.c (mono_method_verify): Fixed a debug message.
94
95 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
96
97         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
98         mono-perfcounters.h, class-internals.h: support for predefined
99         writable counters, query of categories and counters, bugfixes.
100
101 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
102
103         * verify.c (do_refanytype): Verify the refanytype opcode.
104
105         * verify.c (mono_method_verify): Use do_refanytype.
106
107 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
108
109         * verify.c (do_mkrefany): Verify the mkrefany opcode.
110
111         * verify.c (mono_method_verify): Use do_mkrefany.
112
113 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
114
115         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
116         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
117         implementation.
118
119 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
120
121         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
122         the type load exception.
123
124 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
125
126         * verify.c: Added a few FIXME for method signatures
127
128         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
129         of mono_method_get_signature and get vararg call working. Removed unused
130         checks for return value.
131
132         * verify.c (do_refanyval): Verify the refanyval opcode.
133
134         * verify.c (mono_method_verify): Implemented verification of arglist and
135         use do_refanyval.
136
137 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
138
139         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
140         vtypes to marshal.c.
141
142         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
143         it works for AOT as well.
144
145 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
146
147         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
148         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
149         the system time is adjusted.
150
151 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
152
153         * icall.c, icall-def.h: use the new time functions (fixes the
154         non-monotonic behaviour of TickCount).
155
156 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
157
158         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
159         it breaks the build.
160         
161         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
162         cattr is not finished yet.
163
164 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
165
166         * verify.c: Proper token validation for field, method and type.
167
168 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
169
170         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
171
172         * loader.c (method_from_memberref): Generate type load error instead of method missing
173         if the type is not found.
174
175 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
176
177         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
178         some of the conversions caused the generation of a marshal directive exception.
179
180 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
181
182         verify.c: Report which exception should be thrown by the JIT.
183         Added a lot of FIXME notes.
184
185 2008-02-22  Mark Probst  <mark.probst@gmail.com>
186
187         * generic-sharing.c: Runtime generic context slots are not
188         instantiated on init anymore.  Instead, provide function to do the
189         instantiating on demand.
190
191         * class-internals.h: Added vtable to runtime generic context.
192         Macros for encoding direct and indirect slot offsets in one
193         guint32.
194
195 2008-02-21  Mark Probst  <mark.probst@gmail.com>
196
197         * object.c, generic-sharing.c: Moved some generic sharing code
198         from object.c to generic-sharing.c.
199
200         * generic-sharing.c: Added support for extensible runtime generic
201         context.
202
203         * metadata-internals.h: Two new hash tables in MonoImage for
204         extensible runtime generic context support.
205
206         * domain.c: Unregister generic vtables upon domain unloading.
207
208         * image.c: Destroy new hash tables upon image unloading.
209
210         * metadata.c: Unregister generic subclasses upon image unloading.
211
212         * class-internals.h: New data structure for runtime generic
213         context template.  New fields in the runtime generic context for
214         extensible part.
215
216         * Makefile.am: Added generic-sharing.c.
217
218 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
219
220         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
221         there is a pending loader exception, raise it.
222
223         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
224         same.
225
226         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
227         same.
228
229         Fixes #363450.
230
231 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
232
233         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
234
235         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
236         
237         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
238         ref-only requests for compatibility with MS.
239
240 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
241
242         * reflection.c (mono_custom_attrs_from_method): Don't silently
243         return an empty list for generic method instances.
244         (mono_custom_attrs_from_param): Likewise.
245
246 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
247             Raja R Harinath  <harinath@hurrynot.org>
248
249         Fix #354757
250         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
251         * class.c (mono_class_inflate_generic_method_full): Initialize it
252         when a fully-open method is instantiated.
253         * metadata.c (inflated_method_equal, inflated_method_hash): Update
254         to new field.
255         * reflection.c (inflate_mono_method): Don't create a temporary context.
256
257 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
258
259         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
260         Compute correct value, to prepare for imethod->reflection_info going away.
261
262 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
263
264         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
265
266 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
267
268         * verify.c: Implement skip visibility flag.
269
270 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
271
272         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
273         which contains an extra field to tell the kind of exception that should be thrown.
274
275         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
276
277 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
278
279         * loader.c (mono_method_get_param_names): Initialize 'klass' after
280         'method' is updated.
281
282 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
283
284         * class.c (mono_class_layout_fields): Set class->min_align for classes using
285         explicit layout as well. Fixes #360375.
286
287 2008-02-11  Geoff Norton  <gnorton@novell.com>
288
289         * loader.c: Guard and dereference against inflated generic methods
290
291 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
292
293         * class.c: Include Retargetable spec in assembly name.
294         * assembly.c: Always include PublicKeyToken spec in assembly name
295         (with value "null" if assembly is not signed), and include
296         Retargetable spec.
297         * icall-def.h: Added icall for Assembly.get_fullname.
298         * icall.c: Added icall returning the fullname of an assembly.
299
300 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
301
302         * class.c (mono_class_setup_vtable_general): Add a missing call to
303         mono_class_setup_methods () which is needed in the AOT case.
304
305 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
306
307         * verify.c (mono_type_get_stack_name): Added. Return the name for the
308         stack type of the given MonoType.
309
310         * verify.c (verify_type_compatibility_full): Handle the void type.
311
312         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
313         way stack merging works.
314
315         * verify.c (store_local): Improved verification message.
316
317         * verify.c (do_branch_op): If the merging is invalid, the method
318         is unverifiable and not invalid. Improved error message.
319
320         * verify.c (merge_stacks): Properly merge a boxed valuetype and
321         a reference type diferent than System.Object. Improved error
322         message.
323
324 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
325
326         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
327
328         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
329         type of an enum even if the argument is byref.
330
331         * verify.c: Replace all explicit uses of enumtype and enum_basetype
332         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
333
334         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
335
336         *verify.c (verify_type_compatibility_full): Make enum types
337         compatible with their base types.
338
339         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
340         types are compatible for the special case of a boxed valuetype and
341         System.Object.
342
343         * verify.c (verify_stack_type_compatibility): The function
344         is_compatible_boxed_valuetype was extracted from here.
345
346         * verify.c (push_arg): Only set ctx->has_this_store if the method
347         is not static.
348
349         * verify.c (do_ldelem): Fixed a typo in an error message and added
350         strict check for mixing int32 and native int as the array type
351         and ldelem type.
352
353         * verify.c (merge_stacks): Consider boxed valuetypes in the
354         compatibility checks.
355
356 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
357         * profiler.h: (MonoGCEvent): Added start-stop the world events.
358
359 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
360         *class.c: use_new_interface_vtable_code: renamed the env var to have
361         a "MONO_" prefix, and fix the logic to enable it by default.
362
363 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
364         *class.c:
365         mono_class_setup_vtable_general: rewrote the way in which interface
366         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
367         makes the code more maintainable.
368         For now the old code is still there, and can be activated setting
369         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
370
371 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
372
373         * verify.c: guarded some debug functions around and #ifdef.
374
375         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
376
377 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
378
379         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
380         changes for now since they seem to break too many things.
381
382 2008-02-05  Mark Probst  <mark.probst@gmail.com>
383
384         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
385         mono_marshal_find_nonzero_bit_offset): Added macro and function
386         for finding the byte- and bit-offset of a bitfield within a
387         struct.
388
389 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
390
391         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
392         (mono_marshal_get_struct_to_ptr): Ditto.
393
394         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
395         cctor_signature.
396
397 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
398
399         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
400         between methods for non-corlib types.
401
402 2008-02-02  Geoff Norton  <gnorton@novell.com>
403
404         * loader.c (mono_method_get_param_names): Populate the parameter name for 
405         generic parameters as well. (Fixes #342536)
406
407 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
408
409         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
410
411         * verify.c (do_invoke_method): Fix for calling with byref structs.
412
413         * verify.c (do_cast): push a boxed value type based on the type token and not
414         the type of stack.
415
416 2008-01-31  William Holmes  <billholmes54@gmail.com>
417
418         * process.c (process_module_string_read): Check the size returned form 
419           VerQueryValue to avoid out of memory exception. 
420
421 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
422
423         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
424         Handle properly modules which are not in the moduleref table. Fixes
425         #356938.
426
427 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
428
429         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
430         the dynamic case which is now in managed code.
431         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
432
433         * marshal.c (mono_string_to_bstr): Fix a warning.
434         (init_com_provider_ms): Ditto.
435
436         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
437
438         * exception.c (mono_get_exception_out_of_memory): New helper function.
439
440 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
441
442         * marshal.c: Add support for BSTR marshalling
443         using other COM systems.
444
445         Code is contributed under MIT/X11 license.
446
447 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
448
449         * object.c (mono_runtime_invoke_array): reverted previous
450         commit as it breaks the build.
451
452 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
453
454         * object.c (mono_runtime_invoke_array): Verify arguments for
455         invalid types. Fixes #348522.
456
457 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
458
459         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
460         non-final virtual calls using call. 
461
462         * verify.c (do_invoke): fixed some TODOs.
463
464         * verify.c (push_arg): set has_this_store for "ldarga 0".
465
466 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
467
468         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
469         which belong to an inflated class. Fixes #356531.
470
471 2008-01-26  Robert Jordan  <robertj@gmx.net>
472
473         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
474         which resort to FindFirstFile when a certain error condition
475         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
476         Code is contributed under MIT/X11 license.
477
478 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
479
480         * marshal.c (emit_marshal_string): Fix out string marshalling
481         to use specified encoding. Fixes #323900.
482
483         Code is contributed under MIT/X11 license.
484
485 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
486
487         * class.c (mono_class_inflate_generic_method_full): Don't modify
488         iresult->context after cache check.
489
490 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
491
492         * class.c (mono_class_inflate_generic_method_full): Change the
493         struct assignments to memcpy for better visibility and add some comments.
494
495 2008-01-23  Dick Porter  <dick@ximian.com>
496
497         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
498         procedure, and make it work on windows.
499
500 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
501
502         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
503         a MonoReflectionTypeBuilder since it is always of that type.
504
505         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
506
507         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
508
509         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
510         
511         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
512
513         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
514
515         * reflection.c (mono_reflection_create_runtime_class): Remove already created
516         instantiations from the type cache.
517
518 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
519
520         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
521
522         * verify.c (do_unbox_value): push a controled mutability managed pointer.
523
524 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
525
526         * verify.c (do_ldstr): added, verifies if the #US token is valid.
527
528         * verify.c (mono_method_verify): removed old TODO
529
530 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
531
532         * verify.c (do_newobj): add visibility check.
533
534 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
535
536         * verify.c (do_load_function_ptr): add visibility check.
537
538 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
539         *class.c:
540         mono_generic_class_get_class: hook profiler events.
541         mono_field_get_offset: added to support heap-shot in the new profiler.
542         *class.h: exported mono_field_get_offset.
543         * reflection.c:
544         mono_reflection_setup_internal_class: hook profiler events.
545
546 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
547
548         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
549         argument here too and use it to avoid checking for pending exceptions if 
550         possible.
551
552 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
553
554         * assembly.c (build_assembly_name): add arg for passing the assembly
555         flags. Do not consider a PublicKey with value "null" valid.
556         (mono_assembly_name_parse_full): added boolean argument that will be
557         set if the assembly name contains a PublicKeyToken spec. Added support
558         for the Retargetable spec for which only Yes or No are allowed as valid
559         value. Consider assembly name invalid if Retargetable spec is set, but
560         either version, culture or public key (token) are not specified.
561         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
562         with implementation in assembly.c.
563         * icall.c (fill_reflection_assembly_name): also copy assembly flags
564         from MonoAssemblyName.
565         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
566         introduced argument for mono_assembly_name_parse_full to know if the
567         assembly name has a PublicKeyToken spec, and if it has instruct
568         fill_reflection_assembly_name to use default value for keyToken (if
569         PublicKeyToken is null).
570
571 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
572
573         * verify.c (mono_method_verify): fixed ovf ops with
574         float values. They are unverifiable now.
575
576 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
577
578         * class.c (set_failure_from_loader_error): add BadImageException to the
579         list of exceptions that can cause a type to fail to load.
580
581         * class.c (mono_class_get_exception_for_failure): same.
582
583 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
584
585         * verify.c (in_any_exception_block): added, check if offset
586         is part of any exception handling clause.
587
588         * verify.c (get_stack_type): added VAR and MVAR types.
589
590         * verify.c (do_stobj): better error messages.
591
592         * verify.c (do_cpobj): added, check cpobj.
593
594         * verify.c (do_initobj): added, check initobj.
595
596         * verify.c (do_sizeof): added, check sizeof.
597
598         * verify.c (do_localloc): added, check localloc.
599
600         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
601
602 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
603
604         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
605         save_lmf/restore_lmf opcodes.
606
607         * threads.c (mono_threads_install_notify_pending_exc): New function to
608         install a callback notifying the JIT there is a pending exception on a thread.
609         (mono_thread_request_interruption): Call the new callback.
610         (mono_thread_get_and_clear_pending_exception): New function to return the
611         exception pending on a thread.
612
613         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
614         to turn off checking for pending exceptions.
615         (mono_marshal_get_native_wrapper): Ditto.
616
617 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
618
619         * threads-types.h: Get rid of the unnecessary extern declarations.
620
621 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
622
623         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
624         return field from parent class if not private.
625         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
626         returns fields from parent class if they are not private.
627         (method_nonpublic): added function to determine if a given method
628         should be considered non-public. Returns false for private methods
629         on parent class, and internal methods from parent on the 1.0 profile.
630         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
631         use method_nonpublic function to determine whether method should be
632         returned.
633         (property_accessor_public): use newly introduced method_nonpublic
634         function to determine whether accessor is non-public. 
635         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
636         event from parent class if not private. Only return static event if
637         Static flag is set, and only return static event from parent class if
638         FlattenHierarchy flag is set.
639         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
640         include non-private events from parent class.
641
642 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
643
644         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
645         warning.
646
647 2008-01-16  Wade Berrier <wberrier@novell.com>
648
649         * security.c: Add assembly.h header to appease some warnings
650
651 2008-01-16  Dick Porter  <dick@ximian.com>
652
653         * process.c (process_module_string_read): Remove trailing null
654         when saving string.
655
656 2008-01-16  Mark Probst  <mark.probst@gmail.com>
657
658         * class-internals.h: A new data structure describing the layout of
659         a runtime generic context (MonoRuntimeGenericContextTemplate).
660
661         * metadata-internals.h: Added a hash table to MonoDomain that maps
662         from open generic classes to their runtime generic context
663         templates.
664
665         * object.c: Building of the runtime generic context, including
666         proper handling of generic type arguments of superclasses.
667         Building of the runtime generic context according to the template.
668
669 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
670
671         * class.c (mono_class_setup_fields): Set field.count for generic instances.
672         Fixes #350856.
673
674         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
675         mono_portability_find_file (). Fixes #325466.
676         (mono_image_get_public_key): Fix a warning.
677
678 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
679
680         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
681         Fixes #353550.
682         (mono_class_from_name_case): Ditto.
683
684 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
685
686         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
687           common storage for the tables used in the System/NumberFormatter class.
688
689 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
690
691         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
692
693 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
694
695         * verify.c (get_boxable_mono_type): check if the token is valid.
696
697         * verify.c (set_stack_value): changed to add an error if an
698         invalid type is set on stack. Changed all callers due to signature change.
699
700         * verify.c (do_stobj): implement stobj validation.
701
702 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
703
704         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
705         set container->is_method, it was set earlier.
706
707         * metadata.c (type_in_image): Handle MVARs which belong to not finished
708         generic methods.
709
710         * reflection.c (mono_reflection_initialize_generic_parameter): Set
711         is_method of the generic container to TRUE for methods.
712
713 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
714
715         * metadata.c (type_in_image): Handle type parameters properly.
716
717         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
718         memory ownership of this structure.
719
720 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
721
722         * verify.c (get_boxable_mono_type): make typedref types been just
723         unverifiable. check for void type.
724
725         * verify.c (do_unbox_any): added, verify opcode unbox.any.
726
727         * verify.c (do_load_function_ptr): accept method spec tokens.
728
729 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
730
731         * marshal.c (mono_class_native_size): Always set *align even if this is called
732         recursively.
733
734 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
735
736         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
737         out-of-date.
738
739 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
740
741         * verify.c: removed some old unused tables. A huge bunch of small fixes
742         to things found while testing the verifier with mono basic.
743
744         * verify.c (dump_stack_value): dump null literal flag to.
745
746         * verify.c (verify_type_compatibility_full): fix comparison
747         for types that have a generic super type.
748
749         * verify.c (verify_stack_type_compatibility): fix compatibility
750         between null literals and reference types. fix compatibility between
751         boxed valuetypes and object. fix corner case test for enums.
752
753         * verify.c (do_cmp_op): proper verification of cgt.un in case
754         of reference types.
755
756         * verify.c (do_invoke_method): fix error message.
757
758         * verify.c (do_store_indirect
759
760         * verify.c (check_is_valid_type_for_field_ops): proper verification
761         of managed pointers to valuetypes and boxed valuetypes. proper verification
762         of null literals.
763
764         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
765         allow token to be a reference type.
766
767         * verify.c (do_cast): proper handling of boxes valuetypes.
768
769         * verify.c (do_stelem): proper handling of storing a boxed valuetype
770         in object[].
771
772         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
773         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
774         fixed the decoding of unbox_any
775
776 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
777
778         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
779
780 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
781
782         * verify.c (do_newobj): do delegate verification.
783
784         * verify.c (verify_delegate_compatibility): perform delegate
785         verification.
786
787         * verify.c (verify_ldftn_delegate): perform tests related to
788         ldftn delegates.
789
790         * verify.c (mono_delegate_signature_equal): perform the
791         slightly diferent signature comparison required by delegates.
792
793         * metadata.c (mono_metadata_type_equal_full): added and exported
794         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
795         allows signature only comparison.
796
797         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
798         as MONO_INTERNAL.
799
800 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
801
802         * verify.c: added a bunch of stack_slot_* functions to
803         make access to stack slot type easier. This is required to
804         allow optional flags, like null literal, boxed value and
805         this pointer.
806         All access paths to IlStackDesc::stype have been changed 
807         to use these new funcions.
808         Removed a bunch of unused functions and cleared all warnings.
809         This patch introduces the usage of the this pointer and 
810         boxed value flags.
811
812 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
813
814         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
815
816 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
817
818         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
819         match managed version.
820
821         * appdomain.c: Bump corlib version.
822         
823         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
824         argument.
825
826 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
827
828         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
829         Set public key token to zero-length byte array if assembly is not
830         strongnamed.
831
832 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
833
834         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
835         writing a vtype array elem.
836
837 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
838
839         * assembly.c (build_assembly_name): return FALSE if length of token is
840         not 16 (if not "null").
841         (mono_assembly_name_parse_full): return FALSE if value of version,
842         culture, token or key is 0.
843         * icall.c (fill_reflection_assembly_name): add boolean arguments to
844         specify whether public key and public key token must be set to default
845         value (zero-length byte array) if not available. Set versioncompat to
846         SameMachine. If public key is available or the default is set, then
847         set PublicKey flag.
848         (ves_icall_System_Reflection_Assembly_FillName): if no public key
849         is available, use empty byte array as default value. On the 2.0
850         profile, use default value for public key token if not set.
851         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
852         profile, use default value for public key if not set. On the 2.0
853         profile, use default value for public key token if not set.
854         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
855         default values for public key and public key token.
856
857 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
858
859         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
860         field to keep it in synch with the managed object.
861
862         * marshal.c (emit_marshal_object): Add support for byref marshalling of
863         delegates. Fixes #351520.
864
865         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
866         contains defined memory.
867         
868         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
869
870         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
871         
872         * sgen-gc.c (check_consistency): New helper function to do a consistency check
873         of the GC data structures.
874
875         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
876
877         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
878         
879         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
880         barrier.
881         (mono_array_clone_in_domain): Ditto.
882         (mono_array_clone_in_domain): Ditto.
883
884         * threads.c (start_wrapper): Register the thread start argument as a GC root.
885         (cache_culture): Use a write barrier.
886
887         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
888         (ves_icall_get_property_info): Ditto.
889
890         * object.h (MONO_STRUCT_SETREF): New macro.
891
892         * class-internals.h (MonoStats): Add some GC statistics.
893
894         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
895
896 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
897
898         * exception.c (mono_exception_from_name_two_strings):
899         Break from loop after method is found.
900
901 2008-01-04  Dick Porter  <dick@ximian.com>
902
903         * process.c (process_module_string_read): Rename variable to
904         reflect correct usage, after fixing bug 345972.
905
906 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
907
908         * verify.c (mono_type_create_fnptr_from_mono_method): 
909         created a MonoType function pointer instance to be used during
910         verification. The verifier releases this memory at end.
911
912         * verify.c (mono_method_is_constructor): extracted repeated
913         checks for constructor into a single class.
914
915         * verify.c (do_push_field): use new extracted method
916         for constructor check.
917
918         * verify.c (do_newobj): same.
919
920         * verify.c (do_ldftn): renamed to do_load_function_ptr
921         and make it verify ldvirtftn too.
922
923         * verify.c (mono_method_verify: proper verification
924         of ldvirtftn. release created MonoMethod instances.
925
926 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
927
928         * verify.c (token_bounds_check): added.
929
930         * verify.c (do_ldftn): added.
931
932         * verify.c (mono_method_verify): proper verificartion of ldftn.
933
934 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
935
936         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
937         than the table row count. It's the resposibility of the caller to
938         make the bounds check and raise the correct error.
939
940         * metadata.c (mono_metadata_decode_row_col): Same.
941
942         * loader.c (mono_get_method_from_token): perform bounds check
943         on token for methoddef table.
944
945 2007-12-29  Miguel de Icaza  <miguel@novell.com>
946
947         * icall.c
948         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
949         assert into a negative result, the managed code already coped with
950         that.
951
952         Some folks on Windows reported this error. 
953
954 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
955
956         * appdomain.c: Bump corlib version.
957         * icall.c:
958         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
959         CultureInfo.CreateCulture to create CultureInfo for name.
960         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
961         create CultureInfo for name. Fixes bug #347174.
962
963 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
964
965         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
966         flags.
967
968         * verify.c (is_valid_branch_instruction): allow branching to the
969         first instruction of the protected block.
970
971         * verify.c (is_valid_cmp_branch_instruction): same.
972
973         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
974         avoid double initialization.
975
976         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
977         detect which cases the eval stack should just be copied.
978
979         * verify.c (mono_method_verify): check if the eval stack
980         is empty when entering a protected block.
981
982 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
983
984         * verify.c: added is_clause_in_range, is_clause_inside_range,
985         is_clause_nested and verify_clause_relationship. They perform
986         the verifications stated in P1 12.4.2.7.
987
988         * verify.c (mono_method_verify): remove some unused variables,
989         add the new exception clause checks, add instruction border
990         checks for protected block start/end, improved some error 
991         messages and fixed a bug in the way invalid instruction access
992         is detected.
993
994 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
995
996         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
997         from GC 7.0 if available.
998
999         * object.c: Remove an unused define.
1000         
1001         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
1002
1003         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
1004
1005         * null-gc.c (mono_gc_make_descr_for_array): Implement.
1006
1007         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
1008
1009         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
1010         to take the same arguments as the other make_descr functions.
1011
1012         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
1013
1014         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
1015         directly.
1016
1017         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
1018         mini.c.
1019
1020         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
1021         call to boehm-gc.c.
1022
1023         * boehm-gc.c (mono_gc_register_root): Fix a warning.
1024
1025         * null-gc.c (mono_gc_register_root): Fix a warning.
1026
1027         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
1028
1029         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
1030         (mono_gc_base_init): Call GC_init ().
1031
1032         * null-gc.c: Define mono_gc_register_root () as a no-op.
1033
1034         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
1035
1036 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
1037
1038         * verify.c: add prototype for merge_stacks at top
1039
1040         * verify.c (do_switch): added.
1041
1042         * verify.c (merge_stacks): on some cases the stack merging
1043         was not happening properly. Unequal stack sizes at merge
1044         points should be invalid.
1045
1046         * verify.c (mono_method_verify): added more debug info on stack state.
1047         verify switch properly.
1048
1049 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
1050
1051         * method-builder.h: New file, moved the mono_mb_ declarations here from 
1052         marshal.h.
1053
1054         * boehm-gc.c marshal.c: Include method-builder.h.
1055
1056         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
1057
1058         * marshal.c: Remove some code which is now in method-builder.c.
1059
1060 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
1061
1062         * method-builder.c: New file, extraction of the method builder functionality 
1063         from marshal.c.
1064
1065         * marshal.c: Move the mb functions into method-builder.c.
1066
1067         * marshal.h marshal.c: Export some mono_mb_... functions.
1068
1069         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
1070
1071         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
1072         the caller.
1073
1074         * class.c (mono_class_get_full): Check the token type in the dynamic case.
1075
1076         * loader.c (mono_field_from_token): Ditto.      
1077
1078         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
1079         type as well.
1080         
1081         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
1082         Fixes #342565.
1083
1084         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
1085         a helper function for setting it.
1086
1087         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
1088
1089         
1090         * assembly.c: Significally simplify code now that referenced assemblies are 
1091         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
1092
1093         * threads.h: Don't include  the internal threads-types.h header file. Fixes
1094         #349952.
1095
1096 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1097
1098         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
1099         instructions that were target of branches or are at protected block boundaries.
1100
1101         * verify.c (in_same_block): handle filter clauses.
1102
1103         * verify.c (is_valid_branch_instruction): added. checks the target of
1104         instructions br or brtrue/false.
1105
1106         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
1107         binary branch instructions such as beq and bge.
1108
1109         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
1110         and made it pin the instruction as been part of the exception block.
1111
1112         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
1113         of in_same_block.
1114
1115         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
1116         of in_same_block.
1117
1118         * verify.c (do_ret): ret from a protected block is unverifiable and
1119         not invalid.
1120
1121         * verify.c (do_static_branch): verify br and br.s instructions.
1122
1123         * verify.c (merge_stacks): add extra param to support detection
1124         of branches in the middle of instructions.
1125         
1126         * verify.c (mono_method_verify): verify branches and exception blocks
1127         that target the middle of instructions. Proper verification of br and br.s.
1128
1129 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
1130
1131         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
1132         skip_visibility field.
1133         (reflection_methodbuilder_from_dynamic_method): Ditto.
1134
1135         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
1136         registrations. Fixes #348193.
1137
1138         * threads.h: Move the internal mono_thread_get_pending_exception () to
1139         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
1140
1141 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
1142
1143         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
1144         icall registration. Fixes #348193.
1145
1146         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
1147         for corlib classes into object. Fixes #349621.
1148
1149 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1150
1151         * icall.c (property_accessor_nonpublic): new function to determine
1152         whether an accessor allows a property to be considered non-public.
1153         Returns false for private accessor(s) from parent class, and internal
1154         accessor(s) from parent on 2.0 profile (and higher).
1155         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
1156         to determine whether property should be included if NonPublic flag
1157         is set. Fixes bug #349078.
1158
1159 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
1160
1161         * verify.c (init_stack_with_value): added.
1162
1163         * verify.c (mono_method_verify): extracted common
1164         code for exception initialization into init_stack_with_value.
1165
1166         * verify.c (mono_method_verify): initialize the exception
1167         for handler clauses as well.
1168
1169         * verify.c (mono_method_verify): fix the exception clause
1170         ordering rules, it should use handler end offset and not
1171         start offset.
1172
1173 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
1174
1175         * rawbuffer.c: remove useless warning.
1176
1177 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
1178
1179         * threads.h, threads-types.h: move functions to the correct header
1180         (fixes bug#349952).
1181
1182 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1183
1184         * verify.c (mono_method_verify): proper verification
1185         of exception handling clauses ranges and fallthru in
1186         and out of protected blocks.
1187
1188 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1189
1190         * verify.c (mono_method_verify): fixed compilation issue.
1191
1192 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1193
1194         * verify.c (mono_method_verify): a printf slipped in, changed
1195         to use verifier debug macro.
1196
1197 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
1198
1199         * verify.c (is_correct_leave): check for filter clauses.
1200
1201         * verify.c (do_filter): added.
1202
1203         * verify.c (mono_method_verify): property verification of leave.
1204
1205
1206 2007-12-18  Mark Probst  <mark.probst@gmail.com>
1207
1208         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
1209         Win32 build, until we figure out how to do the proper thing on
1210         Win32.
1211
1212 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
1213
1214         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
1215         by the previous patch.
1216         
1217         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
1218         the assembly resolve handler for refonly assemblies.
1219
1220 2007-12-17  Mark Probst  <mark.probst@gmail.com>
1221
1222         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
1223         Make sure only one thread is allowed to commence shutdown, and
1224         don't allow new threads to be started once shutdown is in
1225         progress.
1226
1227 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1228
1229         * verify.c (is_correct_endfilter): added.
1230
1231         * verify.c (is_unverifiable_endfilter): added.
1232
1233         * verify.c (do_endfilter): added.
1234
1235         * verify.c (mono_method_verify): property verification of endfilter
1236         and fixed a corner case or endfinally.
1237
1238 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
1239
1240         * verify.h: new flags to support fail fast of unverifiable code and
1241         do non-strict verification. Non-strict verification is required to
1242         have MS runtime compatibility. There are a huge amount of unverifiable
1243         code that it accepts as verifiable. The strict mode verifies the code
1244         as the specs says.
1245         Non-strict mode will be required in cases where code needs to be
1246         accepted as verifiable but fails under strict mode.
1247
1248         * pedump.c: added support to fail fast and non-strict verification.
1249
1250         * verify.c: added support for both fail fast and non-strict verification.
1251
1252 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1253
1254         * verify.c (is_correct_endfinally): added.
1255
1256         * verify.c (mono_method_verify): property verification of endfinally.
1257
1258 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
1259
1260         * verify.c (in_any_block): check for filter clauses.
1261
1262         * verify.c (is_correct_rethrow): added.
1263
1264         * verify.c (mono_method_verify): property verification of rethrow.
1265
1266         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
1267
1268 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
1269
1270         * verify.c (do_throw): added.
1271
1272         * verify.c (mono_method_verify): property verification of throw
1273
1274 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
1275
1276         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
1277         assemblies. Fixes #346425.
1278
1279 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
1280
1281         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
1282         FieldBuilders.
1283
1284         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
1285
1286         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
1287         prevent asserts when this is called with a token which might not be valid.
1288
1289         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
1290         lookup_dynamic_token_class with valid_token == FALSE.
1291
1292         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
1293
1294         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
1295
1296         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1297         
1298 2007-12-10  Mark Probst  <mark.probst@gmail.com>
1299
1300         * gc.c: Don't delay threadpool thread finalization unless Mono is
1301         shutting down.
1302
1303 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1304
1305         * threads.c: turn an assert into a non-fatal warning.
1306
1307 2007-12-09  Robert Jordan  <robertj@gmx.net>
1308
1309         * icall.c (GetVirtualMethod): Add missing argument validation.
1310
1311 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1312
1313         * verify.c (do_cast): added.
1314
1315         * verify.c (mono_method_verify): property verification of castclass and isinst.
1316
1317
1318 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1319
1320         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
1321
1322         * verify.c (do_stelem): added.
1323
1324         * verify.c (mono_method_verify): property verification of stelem.X.
1325
1326 2007-12-07  Mark Probst  <mark.probst@gmail.com>
1327
1328         * class.c, class-internals.h: Introduce an environment variable
1329         (MONO_GENERIC_SHARING) through which the extent of generic code
1330         sharing can be controlled (share all classes, share only corlib
1331         classes, or share nothing).
1332
1333         * object.c: Only create runtime generic context for classes for
1334         which sharing is enabled.
1335
1336 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1337
1338         * verify.c (do_ldelem): refactor it to work with ldelem.any.
1339
1340         * verify.c (mono_method_verify): property verification of ldelem.any.
1341
1342 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1343
1344         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
1345         added ldelem.X opcodes.
1346
1347         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
1348
1349         * verify.c: proper verification of ldelem.X 
1350
1351 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
1352
1353         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
1354
1355 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1356
1357         * verify.c (mono_method_verify): null literal requires special handling,
1358         the value pushed on stack need to be flagged as so.
1359
1360         * verify.c (do_ldelema): Verify ldelema properly.
1361
1362 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1363
1364         * verify.c: Verify ldlen properly.
1365
1366 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
1367
1368         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
1369         to the target object's type. Fixes #346160.
1370
1371 2007-12-05  Dick Porter  <dick@ximian.com>
1372
1373         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
1374         Solaris needs the same workaround as BSD-derived systems.  Fixes
1375         bug 323524, patch by Burkhard Linke
1376         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
1377
1378 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
1379
1380         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
1381         handle to use when error dialog is shown; otherwise, update mask
1382         to show no error dialog when an error occurs.
1383
1384 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
1385
1386         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
1387
1388         * class.c (mono_class_get_field_default_value): New helper function to initialize
1389         field->def_type and field->data.
1390
1391 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
1392
1393         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
1394         the general one.
1395
1396         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
1397
1398         * marshal.c: Avoid depending on delegate->method_info being set.
1399
1400         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
1401         
1402         * object.c (mono_delegate_ctor): Set delegate->method.
1403
1404         * object-internals.h (struct _MonoDelegate): Add 'method' field.
1405
1406         * appdomain.c: Bump corlib version.
1407
1408 2007-11-27  Raja R Harinath  <harinath@gmail.com>
1409
1410         * metadata.c (mono_generic_inst_equal_full): Short-circuit
1411         equality check if we're comparing canonicalized MonoGenericInsts.
1412
1413 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
1414
1415         * class.c (generic_array_methods): Call mono_class_setup_methods () before
1416         accessing class->methods.
1417
1418 2007-11-22  Dick Porter  <dick@ximian.com>
1419
1420         * threads.c: Ensure that the synch_cs is set before trying to use
1421         it.
1422
1423 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
1424
1425         * profiler.c: r89126 broke the statistial profiler, unbreak.
1426
1427 2007-11-22  Martin Baulig  <martin@ximian.com>
1428
1429         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
1430
1431         * mono-debug.c
1432         (mono_debug_debugger_version): Bump to 3.
1433         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
1434         -> mono_debugger_class_initialized().
1435
1436         * mono-debug-debugger.c
1437         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
1438
1439         * class.c
1440         (mono_debugger_start_class_init_func): Removed.
1441         (mono_debugger_class_loaded_methods_func): Added.
1442         (mono_class_setup_methods): Call it here.
1443
1444 2007-11-22  Martin Baulig  <martin@ximian.com>
1445
1446         * mono-debug.c
1447         (mono_debug_add_delegate_trampoline): New public method.
1448         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
1449
1450         * mono-debug.h
1451         (MonoSymbolTable): Added `global_data_table'.
1452         (MonoDebuggerTypeKind): Removed.
1453
1454 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
1455
1456         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
1457         these methods.
1458
1459         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1460         
1461 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1462
1463         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
1464
1465 2007-11-20  Martin Baulig  <martin@ximian.com>
1466
1467         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
1468
1469         * mono-debug-debugger.c
1470         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
1471         (mono_debugger_remove_breakpoint): Likewise.
1472         (mono_debugger_check_breakpoints): Likewise.
1473         (mono_debugger_register_class_init_callback): New public method.
1474         (mono_debugger_remove_class_init_callback): Likewise.
1475         (mono_debugger_add_type): Likewise.
1476
1477         * mono-debug-debugger.h
1478         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
1479
1480 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
1481
1482         * class.c: more interface implementations needed for the
1483         array enumerator (fixes bug #341112).
1484
1485 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
1486
1487         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
1488         fix ParamName of ArgumentNullExceptions.
1489
1490 2007-11-17  Miguel de Icaza  <miguel@novell.com>
1491
1492         * reflection.c (mono_reflection_encode_sighelper): Generate the
1493         modopts and modreqs.   I have a useless test that crashes monodis,
1494         but that shows the code working.
1495
1496 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
1497
1498         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
1499         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
1500
1501 2007-11-15  Dick Porter  <dick@ximian.com>
1502
1503         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
1504         When joining a thread, it's the thread that's calling Join that
1505         gets WaitSleepJoin state not the target.  Fixes the standalone
1506         test case in bug 334740, and hopefully the whole bug too.
1507
1508 2007-11-15  Dick Porter  <dick@ximian.com>
1509
1510         * process.c: Read file version info from the files pointed at by
1511         process modules, not the current process.  Fixes bug 315969.
1512
1513         Use windows typedef names in some places to fix warnings on the
1514         windows build.
1515
1516 2007-11-15  Mark Probst  <mark.probst@gmail.com>
1517
1518         * image.c, metadata-internals.h: Added a generic_class_cache hash
1519         to MonoImage for looking up generic classes when sharing generics.
1520
1521 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1522
1523         * sgen-gc.c: warning cleanups.
1524
1525 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
1526
1527         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
1528         inherited properties.
1529
1530 2007-11-14  Mark Probst  <mark.probst@gmail.com>
1531
1532         * object.c, class-internals.h: Added more information to the
1533         runtime generic context.
1534
1535 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
1536
1537         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
1538         instead of just the target method. Generalize the abstract method handling to
1539         handle any non-static method.
1540
1541         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
1542         mono_marshal_get_delegate_invoke () signature change.
1543
1544 2007-11-13  Mark Probst  <mark.probst@gmail.com>
1545
1546         * class.c, class-internals.h: Made
1547         mono_type_get_basic_type_from_generic () public.  Fixed member
1548         access check for shared generics.
1549
1550         * loader.c: Don't insert field into field cache if it's part of a
1551         non-inflated generic class.
1552
1553         * domain.c, domain-internals.h: The generic sharing context is now
1554         part of the jit info data structure.  Added two accessor
1555         functions.
1556
1557 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
1558
1559         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
1560         the array Get/Set/Address methods, since the JIT inlines them.
1561
1562         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
1563
1564         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
1565         (mono_image_init): Initialize runtime_invoke_direct_cache.      
1566
1567         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
1568         mono_marshal_get_delegate_invoke signature change.
1569
1570         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
1571         an additional argument. Add support for invoking abstract methods.
1572
1573         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
1574
1575         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
1576
1577 2007-11-09  Mark Probst  <mark.probst@gmail.com>
1578
1579         * class.c: Do field layout for open generic classes as well.
1580
1581 2007-11-09  Mark Probst  <mark.probst@gmail.com>
1582
1583         * gc.c, gc-internal.h: Don't finalize threadpool threads with
1584         other objects, because the threadpool is still around.  Put them
1585         in a list instead and after finalizing all other objects in the
1586         root domain shut down the thread pool and then finalize the
1587         threads.  Fixes bug #337383.
1588
1589         * threads.c, thread-types.h: New mono_thread_create_internal()
1590         function for marking a thread with the threadpool flag before it
1591         started.  Set synch_cs to NULL after freeing it.
1592
1593         * threadpool.c: Mark threadpool threads before they start.
1594
1595 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
1596
1597         * reflection.h, reflection.c: don't export random functions
1598         and lazy load dbnull and missing objects.
1599
1600 2007-11-07  Jonathan Chambers <joncham@gmail.com>
1601
1602         * class.c: Initialize COM types if COM interfaces
1603         are present (not just COM classes).
1604         
1605         Code is contributed under MIT/X11 license.
1606
1607 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
1608         * reflection.c:
1609         create_dynamic_mono_image: hook module profiler events (dynamic case).
1610         mono_image_basic_init: hook assembly profiler events (dynamic case).
1611
1612 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
1613         * profiler.c:
1614         simple_appdomain_unload: completely terminate the profiler
1615         instead of only processing the statistical samples.
1616         simple_shutdown: make sure this is really called exactly once,
1617         even in multithreaded applications, and always listen to
1618         appdomain events.
1619         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
1620         here, the "[un]load" functions will do it.
1621         Fixes bugs #333791 and #325261.
1622
1623 2007-11-07  Geoff Norton  <gnorton@novell.com>
1624
1625         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
1626         rather than depend on __APPLE__.
1627
1628 2007-11-07  Mark Probst  <mark.probst@gmail.com>
1629
1630         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
1631
1632 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
1633
1634         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
1635         UTF16 MonoString. Fix the crash from bug #335488
1636
1637 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
1638
1639         * marshal.c: Correct (for non-Win32 OS) length != size in 
1640         mono_string_from_bstr. Fix #339530.
1641
1642 2007-11-06  Geoff Norton  <gnorton@novell.com>
1643
1644         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
1645         to succeed
1646
1647 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
1648
1649         * process.c: Added run-time GetProcessId API detection for Windows.
1650
1651 2007-11-04  Miguel de Icaza  <miguel@novell.com>
1652
1653         * reflection.c  (mono_param_get_objects): If a parameter has the
1654         attribute [System.Runtime.InteropServices.Optional] we should
1655         set the DefaultValue of the ParameterInfo to be
1656         System.Reflection.Missing instead of DBNull.
1657
1658         See bug #339013.
1659
1660         (mono_get_reflection_missing_object): New method,
1661         returns the System.Reflection.Missing.Value singleton instance.
1662
1663 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
1664
1665         * culture-info-table.h : regenerated.
1666
1667 2007-11-02  Jonathan Chambers <joncham@gmail.com>
1668
1669         * icall.c: Use GetEnvironmentStrings on windows
1670         so we are using the same environment block as 
1671         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
1672         #333740.
1673         
1674         Code is contributed under MIT/X11 license.
1675
1676 2007-10-31  Martin Baulig  <martin@ximian.com>
1677
1678         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
1679
1680         * mono-debug-debugger.h
1681         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1682
1683 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
1684
1685         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
1686         classes.
1687
1688 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
1689
1690         * culture-info-table.h : regenerated.
1691
1692 2007-10-30  Robert Jordan  <robertj@gmx.net>
1693
1694         * icall-def.h, icall.c:
1695         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
1696
1697         Code is contributed under MIT/X11 license.
1698
1699 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
1700
1701         * class.c (mono_class_setup_vtable): Find the inflated methods in the
1702         inflated class instead of inflating them again.
1703         
1704         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
1705         dynamic case.
1706
1707         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
1708         Call setup_supertypes () after klass->parent is set.
1709         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
1710
1711         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
1712         for inflated instances of not yet created dynamic generic classes.
1713         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
1714         times from inflated_method.
1715         (methodbuilder_to_mono_method): Ditto.
1716
1717 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
1718
1719         * gc.c: code cleanup and removed old untested option of not creating the
1720         finalizer thread.
1721
1722 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
1723
1724         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
1725         creating a jump trampoline for dynamic methods.
1726
1727 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
1728
1729         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
1730         generic TypeBuilders when called from another method of the same type (bug #335131).
1731
1732
1733 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
1734
1735         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
1736         doesn't seem to work perfectly.
1737         
1738         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
1739         called multiple times.
1740         (methodbuilder_to_mono_method): Ditto.
1741         (resolve_object): Inflate FieldBuilder's.
1742
1743 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
1744
1745         * string-icalls.c, string-icalls.h, appdomain.c: patch from
1746         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
1747         RemoveEmptyEntries in the string.Split implementation (bug #322375).
1748
1749 2007-10-26  Dick Porter  <dick@ximian.com>
1750
1751         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
1752         Thread initialisation changes
1753
1754 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
1755
1756         * verify.c: fix compatibility check between arrays and System.Array
1757
1758 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
1759
1760         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
1761         too. Fixes #336999.
1762
1763 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
1764
1765         * object.c (mono_value_box): Use typed allocation here.
1766
1767 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
1768
1769         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
1770         trampoline instead of compiling the method right away.
1771
1772         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
1773
1774 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
1775
1776         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
1777         related fields for dynamic classes. Fixes #334493.
1778
1779 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
1780
1781         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
1782         
1783         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
1784
1785         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
1786         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
1787
1788         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
1789
1790         * reflection.c (create_generic_typespec): Initialize klass->generic_container
1791         if needed.
1792         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
1793
1794 2007-10-18  Jonathan Chambers <joncham@gmail.com>
1795
1796         * marshal.c: Use correct key when removing item
1797         from ccw_hash.
1798         
1799         Code is contributed under MIT/X11 license.
1800
1801 2007-10-17  William Holmes  <billholmes54@gmail.com>
1802
1803         *marshal.c: Adding a case to marshal booleans to U1
1804
1805         Code is contributed under MIT/X11 license.
1806
1807 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
1808
1809         * class.c (mono_class_from_name): Search the modules compromising dynamic
1810         assemblies. Fixes #331601.
1811
1812 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
1813
1814         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
1815         exception if the type name contains an assembly component. Fixes #334203.
1816
1817         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
1818         modules inside dynamic assemblies. Fixes #334200.
1819         
1820         * reflection.c: Set image->public_key and image->public_key_length;
1821
1822         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
1823         fields.
1824
1825         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
1826         
1827 2007-10-16  Mark Probst  <mark.probst@gmail.com>
1828
1829         * metadata.c: Implemented correct comparing of generic classes.
1830         An inflated generic class can be equal to a non-inflated one if it
1831         is inflated with generic type variables as type arguments.  Fixes
1832         bug #333798.
1833
1834 2007-10-15  Dick Porter  <dick@ximian.com>
1835
1836         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
1837         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
1838         81646.
1839
1840         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
1841         instead of a monitor lock.  This means that monitor_try_enter and
1842         co can set the thread state safely.
1843         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
1844         thread_interrupt_requested, so interrupt actually works.
1845
1846         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
1847         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
1848         state accessor function
1849
1850 2007-10-15  Martin Baulig  <martin@ximian.com>
1851
1852         * mono-debug.h
1853         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
1854         the debugger with the current runtime.
1855
1856 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
1857
1858         * object.c, object-internals.h: added the ability to set a single
1859         trampoline for all the slots in a vtable.
1860
1861 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
1862
1863         * marshal.c: deal with a possible race condition during multicast
1864         delegate invocation.
1865
1866 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
1867
1868         * class.c: ensure value type methods don't have the synchronized
1869         flag set.
1870
1871 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
1872
1873         * string-icalls.c, string-icalls.h: reverted unapproved patch that
1874         breaks the build.
1875
1876 2007-10-11  Joel Reed  <joelwreed@comcast.com>
1877
1878         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
1879         to take an options parameter so that empty entries can be removed during
1880         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
1881
1882 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
1883
1884         * marshal.c: make sure we don't store the signature from a dynamic
1885         method into the runtime invoke cache (bug #327189).
1886
1887 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
1888
1889         * marshal.c: make sure the wrapper methods are properly initialized.
1890
1891 2007-10-11  Mark Probst  <mark.probst@gmail.com>
1892
1893         * metadata.c, metadata-internals.h: Generalized
1894         mono_type_stack_size() to mono_type_stack_size_internal() which
1895         takes an additional argument specifying whether it allows open
1896         types.
1897
1898 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1899
1900         * verify.c (do_invoke_method): handle typedbyref params
1901         correctly and check for unverifiable return values.
1902
1903         * verify.c (do_newobj): fix a warning.
1904
1905 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
1906
1907         * verify.c: don't tread typedbyref as allways unverifable,
1908         so uses, like (ld/st)loc.0 are valid. verify for the cases
1909         that it matters, like boxing related operations.
1910
1911 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
1912
1913         * verify.c: add verification of the newobj opcode. verification
1914         of delegate instantation still missing due ldftn and virldftn not
1915         pushing the function type on stack
1916
1917 2007-10-08  Mark Probst  <mark.probst@gmail.com>
1918
1919         * class-internals.h: Runtime generic context data structure
1920         definition.
1921
1922         * object.c: Initialization of runtime generic context at runtime
1923         vtable creation time.
1924
1925 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
1926         * class.c (mono_class_create_from_typedef,
1927         mono_class_from_generic_parameter, mono_ptr_class_get,
1928         mono_fnptr_class_get, mono_bounded_array_class_get)
1929         * domain.c (mono_domain_create, mono_domain_free)
1930         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
1931         * image.c (do_mono_image_load, mono_image_close):
1932         Hooked up load-unload profiler events.
1933
1934 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
1935
1936         * domain.c: track statistics about the actual amount of native code
1937         allocated.
1938
1939 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
1940
1941         * class.c: the valuetype enumerators don't have the additional
1942         supertypes interfaces.
1943
1944 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
1945
1946         * class.c: need more interfaces setup for the IEnumerator<T>
1947         object created for arrays (tests/ienumerator-interfaces.2.cs).
1948
1949 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
1950
1951         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
1952
1953 2007-10-05  Alp Toker  <alp@atoker.com>
1954
1955         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1956         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1957         #315863.
1958
1959 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
1960
1961         * verify.c (verify_type_compatibility_full): verification of
1962         compatibility improved, validates correctly non-strict checks between
1963         native int and I4 types different than (unsigned)int32.
1964
1965         * verify.c (do_store_indirect): added, do all verification of
1966         ldind.X opcodes. 
1967
1968         * verify.c (get_load_indirect_mono_type): renamed to
1969         get_indirect_op_mono_type, as it now returns the MonoType for 
1970         ldind.X and stind.X opcodes.
1971
1972 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
1973
1974         * reflection.c: Fix the encoding of generic type definition for
1975         TypeBuilders.
1976
1977         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
1978         mono_image_typedef_or_ref but allows to specify if typespec lookups should
1979         be made. Typespec check is done prior to typeref cache lookup.
1980
1981         * reflection.c (mono_image_typedef_or_ref): now just delegate to
1982         mono_image_typedef_or_ref_full.
1983
1984         * reflection.c (encode_generic_class): encode the generic class
1985         directly instead of calling encode_type.
1986
1987         * reflection.c (encode_type): encode the generic type definition
1988         MonoClass as a generic instantiation.
1989
1990         * reflection.c (create_typespec): cache typespec tokens in
1991         the assembly->typespec cache. Don't create typespec for a generic
1992         instance MonoClass. Create typespec for the generic type defintion.
1993
1994         * reflection.c (create_generic_typespec): encode the generic
1995         class directly instead of calling encode_type.
1996
1997         * reflection.c (mono_image_create_token): encode the generic
1998         type definition not using a typespec for MonoType instances.
1999
2000
2001 2007-10-04  Raja R Harinath  <rharinath@novell.com>
2002
2003         Fix #328812
2004         * class.c (mono_image_init_name_cache): Don't return nested
2005         'protected internal' classes.
2006         (mono_class_from_name_case): Likewise.
2007
2008 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
2009
2010         * icall-def.h, icall.c : get_bundled_machine_config() is now the
2011           common function used by both DefaultConfig in System.dll and
2012           InternalConfigurationHost in System.Configuration.dll.
2013
2014 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
2015
2016         * class.c: automatically add to vectors only a few essential explicit
2017         generic interfaces. The rest of the interfaces that arrays should
2018         provide are currently implicitly added (but still not lazily, see the
2019         design in the discussion of bug#325495 for the details of what is
2020         needed for that). Additionally, implicit interfaces are assigned the
2021         same vtable slot as the explicit interfaces (as they are compatible):
2022         this enables huge memory savings since we don't need to instantiate
2023         as many memthods and as large vtables anymore. Also, Since
2024         GetEnumerator<T> returns an instance of a type that is required to
2025         support a similarly large set of interfaces as arrays, we add
2026         implicit interfaces and interface offset sharing support to those
2027         types, too. This change adds all the required interfaces so that
2028         the anonarray.cs test case in the bug report works (we don't add
2029         all the interfaces to arrays of arrays 3-level deep and more because
2030         of the memory requirements explained in the bug and since they are much
2031         less common: the lazy-loading support will enabled them to work, too).
2032
2033 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
2034
2035         * verify.c (merge_stacks): major clean up, all type compatibility
2036         checks are done by verify_type_compatibility. This fix my earlier lack
2037         of understanding of the CLR type system and merge_stacks no longer looks
2038         scary.
2039
2040         * verify.c: fixed some bad spelling.
2041
2042 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
2043
2044         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
2045         a given stack slock.
2046         
2047         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
2048         verify_type_compatibility_full. This removed a near indentical function and fixed
2049         handling of Int32 and IntPtr across all opcodes.
2050
2051 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
2052
2053         * class.c: only vectors have the additional generic interfaces.
2054
2055 2007-10-01  Jonathan Chambers <joncham@gmail.com>
2056
2057         * mono-config.c: Use g_strcasecmp instead of
2058         strcasecmp like everywhere else to fix
2059         compilation with MSVC.
2060         
2061         Code is contributed under MIT/X11 license.
2062
2063 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2064
2065         * object.c, object-internals.h: refactored the IMT code to enable
2066         building a single slot at a time and lazily creating the IMT trampolines
2067         and thunks.
2068
2069 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
2070
2071         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
2072
2073         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
2074         Fixes #328501.
2075         
2076 2007-09-29  Raja R Harinath  <harinath@gmail.com>
2077
2078         * loader.c (method_from_methodspec): Rearrange to avoid
2079         un-necessary exposition.  Don't assert out if the method's
2080         declaring type is a generic type definition.
2081
2082 2007-09-28  Martin Baulig  <martin@ximian.com>
2083
2084         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
2085
2086 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
2087
2088         * class-internals.h: optimize field layout of MonoClass to
2089         requires less cachelines at runtime and save a few bytes on 64 bit
2090         systems.
2091
2092 2007-09-28  Jb Evain  <jbevain@novell.com>
2093
2094         * reflection.c: when encoding type names in custom attributes,
2095         if the type is a closed generic type, its generic arguments
2096         have to be serialized as AssemblyQualifiedName, so that when
2097         they are deserialized, it's possible to re-create them properly.
2098         Fixes #329450.
2099
2100
2101 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
2102
2103         * object.c, class-internals.h: added delegate-creation counter.
2104
2105 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
2106
2107         * class.c: cleanup of the code that synthetizes interfaces for
2108         arrays in 2.0: saves quit a bit of corlib mempool memory.
2109         Code to fix bug #325495 ifdeffed out for now until the issues
2110         with memory usage and O(n^2) behaviour are fixed.
2111
2112 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
2113
2114         * marshal.c: when possible, do not duplicate the name of the methods
2115         in the method builder and in the generated MonoMethod.
2116
2117 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
2118         * verify.c: added support for type checking ldind_* opcodes.
2119
2120 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
2121
2122         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
2123         which is used to distinguish the fully open instantiation of a TypeBuilder
2124         with the rest. This temporary hack is required to restore the property that
2125         the fully open instantiation is the same type of the generic type definition.
2126
2127         * class-internals.h (mono_generic_class_is_generic_type_definition):
2128         new function as part of the internal API.
2129
2130         * class.c (inflate_generic_type): return NULL when the generic inst is
2131         fully open. The fully open generic type is now the same as the generic type
2132         definition for non TypeBuilder types.
2133
2134         * class.c (mono_generic_class_get_class): removed assert since it is
2135         no longer valid, gklass->cached_class can point to the generic type definition.
2136
2137         * class.c (mono_generic_class_is_generic_type_definition): new.
2138
2139         * metadata.c (mono_generic_class_hash): added is_tb_open field
2140         to the hash calculation.
2141
2142         * metadata.c (free_generic_class): if the generic class is associated
2143         with the generic type definition, its field will come from the mempool and
2144         must not be freed.
2145
2146         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
2147         new, this function identifies the corner case of a TypeBuilder fully open
2148         instantiation.
2149
2150         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
2151         for lookup. Set gclass->cached_class to be the container class in case of
2152         the fully open instantiation of non TypeBuilder types.
2153
2154         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
2155         to compare generic classes.
2156
2157         * reflection.c (method_encode_methodspec): remove assert that
2158         no longer is valid.
2159
2160         * reflection.c (mono_reflection_generic_class_initialize): add
2161         an aditional assert to ensure the proper type is used.
2162
2163 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
2164
2165         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
2166         to enjoy it.
2167
2168 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
2169
2170         * verify.c (push_arg): Fixed support for ldarga
2171         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
2172         MonoType used as first arg in case of instance calls.
2173
2174 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
2175
2176         * verify.c: Support for verifying VAR and MVAR types, 
2177
2178 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
2179
2180         * icall.c (ves_icall_get_property_info): Set the reflected type of the
2181         accessors correctly.
2182
2183 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
2184
2185         * threads.c: support OSX and other systems in
2186         mono_thread_get_stack_bounds (bug #328026).
2187
2188 2007-09-25  Martin Baulig  <martin@ximian.com>
2189
2190         * mono-debug.h
2191         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
2192
2193 2007-09-24  Martin Baulig  <martin@ximian.com>
2194
2195         * mono-debug.h
2196         (MonoDebugClassEntry): Moved the definition of this struct into
2197         mono-debug.c to make it private.
2198
2199         * mono-debug.c
2200         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
2201         type table per symbol file, we don't need to store the symfile id
2202         any longer.
2203
2204 2007-09-24  Martin Baulig  <martin@ximian.com>
2205
2206         Create one type table per symbol file, since a `MonoClass *' gets
2207         invalid when its image is unloaded.
2208
2209         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
2210         (MonoDebugHandle): Added `type_table'.
2211
2212 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
2213
2214         * mempool.c, mempool.h: added mono_mempool_new_size () API
2215         to be able to specify a smaller initial size for the pool.
2216         Adjusted the code to slowly increase pool size before using
2217         the previous default size.
2218         * image.c: use a small initial size for image mempools.
2219
2220 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
2221
2222         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
2223         Fixes ##320990.
2224
2225         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
2226         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
2227
2228 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
2229
2230         * metadata.c (mono_type_create_from_typespec): Remove an invalid
2231         free. Fixes #327438.
2232
2233 2007-09-21  Raja R Harinath  <harinath@gmail.com>
2234
2235         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
2236         generic instantiations, etc.
2237         <MONO_TYPE_ARRAY>: Likewise.
2238
2239 2007-09-21  Martin Baulig  <martin@ximian.com>
2240
2241         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
2242         these structs were never defined.
2243         (MonoDebugHandle): Removed the `_priv' field, it was never used.
2244
2245 2007-09-21  Martin Baulig  <martin@ximian.com>
2246
2247         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
2248
2249 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
2250
2251         * image.c: removed the guid hash tables: we can get the same info
2252         without the additional memory usage hit (partially fixes also bug #327052).
2253
2254 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2255
2256         * profiler.h, profiler-private.h, profiler.c: add a new profiler
2257         event to handle unloading methods. After the event is called, the
2258         corresponding MonoMethod* must be considered invalid.
2259         * loader.c (mono_free_method): call the new mono_profiler_method_free
2260         event.
2261
2262 2007-09-20  Mark Probst  <mark.probst@gmail.com>
2263
2264         * domain-internals.h: New flag in MonoJitInfo which marks shared
2265         generic methods.  New hash table (shared_generics_hash) in
2266         MonoDomain to keep track of shared generic methods.  Prototypes
2267         for functions to register and lookup shared generic methods.
2268
2269         * domain.c: Support for registering and looking up shared generic
2270         methods via a hash table (shared_generics_hash) in MonoDomain.
2271
2272         * class-internals.h: New exception to signal failure of shared
2273         compilation of a generic method.  New counters for generics
2274         sharing in MonoStats.
2275
2276 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
2277
2278         * image.c, metadata-internals.h: don't keep a file descriptor open
2279         for loaded assemblies (bug#325988).
2280
2281 2007-09-19  Raja R Harinath  <rharinath@novell.com>
2282
2283         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
2284         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
2285         use the corresponding datatypes.
2286         (type_in_image): Update to changes.
2287         (CleanForImageUserData): Simplify.
2288         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
2289         Avoid quadratic behaviour in handling the "stolen" list by
2290         separating the filter predicate out, and by prepending the stolen
2291         items rather than appending them.
2292         (steal_ginst_in_image): Likewise.
2293         (mono_metadata_clean_for_image): Update to changes.
2294
2295 2007-09-19  Martin Baulig  <martin@ximian.com>
2296
2297         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
2298
2299 2007-09-19  Martin Baulig  <martin@ximian.com>
2300
2301         * mono-debug.c (mono_debug_cleanup): Don't call
2302         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
2303
2304 2007-09-19  Raja R Harinath  <harinath@gmail.com>
2305
2306         Fix crash on 'make run-test' in mcs/errors
2307         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
2308         Avoid more potential allocations in mono_class_from_mono_type.
2309         (ginst_in_image): Update to changes.
2310         (gclass_in_image): Rearrange slightly.
2311
2312 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
2313
2314         * class.c (mono_class_init): Move the code that sets up class->methods to 
2315         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
2316
2317         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
2318         canonical instance of an inflated generic signature.
2319         (mono_type_create_from_typespec): Remove an invalid free.
2320
2321         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
2322
2323 2007-09-18  Marek Habersack  <mhabersack@novell.com>
2324
2325         * domain-internals.h: added a declaration of the
2326         mono_assembly_load_full_nosearch internal function.
2327
2328         * assembly.c (mono_assembly_load_with_partial_name): use
2329         mono_try_assembly_resolve return value properly.
2330         (mono_assembly_load_full_nosearch): copied the function body from
2331         mono_assembly_load_full, without the code to invoke assembly
2332         search hooks.
2333         (mono_assembly_load_full): calls the above new function and if the
2334         assembly is not resolved, invokes the search hooks.
2335
2336         * appdomain.c (mono_runtime_init): restore the global postload
2337         assembly search handlers.
2338
2339 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
2340
2341         * class.c (mono_class_init): Make sure class->methods and class->properties
2342         are never NULL in the generics case.
2343
2344         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
2345
2346 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
2347
2348         * metadata.c (free_generic_class): Disable some code to fix the build.
2349
2350         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
2351
2352         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
2353         from the image mempool.
2354
2355         * metadata.c (free_generic_class): Free more data from the inflated class.
2356
2357         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
2358
2359         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
2360         mempool.
2361         (mono_type_create_from_typespec): Ditto.
2362
2363         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
2364         MonoImage to the caller.
2365         (mono_init_internal): Save the opened image in a global variable.
2366         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
2367
2368         * reflection.c (resolve_object): Fix a leak.
2369
2370         * metadata.c: Fix the freeing of data in the generics caches.
2371         
2372         * metadata.c (free_generic_inst): Comment this out to fix the build.
2373         (free_generic_class): Ditto.
2374
2375         * metadata.c: Free cached generic methods, instantinations and classes when
2376         they are removed from the caches.
2377         (mono_metadata_free_type): Free the type itself.
2378
2379         * class.c: Free the result of mono_class_inflate_generic_type () in a few
2380         places.
2381
2382 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
2383
2384         * boehm-gc.c: restrict managed allocs to __thread supporting
2385         architectures.
2386
2387 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
2388
2389         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
2390         (mono_generic_class_get_class): Fix a leak.
2391
2392         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
2393         mono_metadata_free_type ().
2394         (mono_metadata_inflate_generic_inst): Fix a leak.
2395
2396 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
2397
2398         * mono-debug.c (free_header_data): Fix a leak missed earlier.
2399
2400         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
2401         mempool.
2402
2403         * mono-debug.c (mono_debug_close_image): Fix call to 
2404         g_hash_table_remove ().
2405
2406 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
2407
2408         * icall-def.h: redirect all the string ctor to the managed
2409         CreateString () methods.
2410         * string-icalls.c, string-icalls.h: removed dead code for string
2411         ctors and icalls.
2412
2413 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
2414
2415         * mono-debug.c: Fix memory leaks.
2416
2417 2007-09-14  Jonathan Chambers <joncham@gmail.com>
2418
2419         * threads-types.h: Implement mono_hazard_pointer_set and 
2420         mono_hazard_pointer_clear macros using do/while(0) to fix
2421         compilation with MSVC.
2422         
2423         Code is contributed under MIT/X11 license.
2424
2425 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
2426
2427         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
2428         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
2429
2430 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2431
2432         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
2433         icalls.
2434
2435 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2436
2437         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
2438         managed-code allocated as well.
2439
2440 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
2441
2442         * class.c (mono_class_is_assignable_from): Add support for generic variance.
2443
2444 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
2445
2446         * boehm-gc.c: fixed the build after the AOT changes.
2447
2448 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
2449
2450         * wrapper-types.h: Add an ALLOC wrapper type.
2451
2452         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
2453         reference managed allocator methods.
2454
2455 2007-09-12  Marek Safar  <marek.safar@gmail.com>
2456
2457         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
2458         of Type array and not MonoType, a fix suggested by Hari.
2459         
2460 2007-09-12  Jonathan Chambers <joncham@gmail.com>
2461
2462         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
2463         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
2464         
2465         Code is contributed under MIT/X11 license.
2466
2467 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2468
2469         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
2470
2471 2007-09-12  Marek Habersack  <mhabersack@novell.com>
2472
2473         * image.c (do_mono_image_open): if assembly file fails to open and
2474         MONO_IOMAP is in effect, try to find the path in a
2475         case-insensitive way.
2476
2477         * appdomain.c (mono_runtime_init): do not install postload hooks -
2478         tests show that MS.NET doesn't use anything of that sort to
2479         trigger the AppDomain.AssemblyResolve event.
2480         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
2481         made non-static.
2482         (mono_runtime_init): init portability helpers here.
2483
2484         * assembly.c (mono_assembly_load_with_partial_name): if other   
2485         attempts fail, trigger the AppDomain.AssemblyResolve event handler
2486         to resolve the assembly.
2487
2488         * domain-internals.h: added mono_try_assembly_resolve and marked
2489         it as internal.
2490
2491 2007-09-11  Jb Evain  <jbevain@novell.com>
2492
2493         * object-internals.h (MonoReflectionDynamicMethod): add
2494         a `MonoReflectionType *owner` field. The owner is used
2495         * reflection.c:
2496         (mono_reflection_create_dynamic_method): use the owner of the dynamic
2497         method as the class declaring the dynamic method.
2498         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
2499         dynamic method to the declaring type of the methodbuilder.
2500
2501 2007-09-11  Mark Probst  <mark.probst@gmail.com>
2502
2503         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
2504         rules for calling methods via reflection.
2505
2506 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
2507
2508         * reflection.c (resolve_object): Add support for MonoGenericClass. 
2509         Inflate MonoType's.
2510
2511 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
2512
2513         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
2514         provide a managed method that does fast allocations without needing
2515         a managed->unmanaged transition. Boehm GC implementation currently
2516         enabled for ptrfree objects on sane architectures.
2517
2518 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
2519
2520         * marshal.c, marshal.h: exported a couple of useful functions and
2521         added mono_mb_get_label () to easily handle backward branches.
2522
2523 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
2524
2525         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
2526
2527 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2528
2529         * loader.c (find_method): Fixed the regression introduced while
2530         fixing bug #81466.
2531
2532 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
2533
2534         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
2535         well.
2536         
2537         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
2538         icall.c reflection.c: Pass a MonoGenericContext argument to 
2539         mono_lookup_dynamic_token ().
2540
2541         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
2542         #82744.
2543         
2544 2007-09-09  Robert Jordan  <robertj@gmx.net>
2545
2546         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
2547         for generic methods.
2548
2549         * object.c (mono_object_get_virtual_method): Handle generic methods.
2550         Fixes bug #78882.
2551
2552         Code is contributed under MIT/X11 license.
2553
2554 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
2555
2556         * image.c: fix locking in mono_image_load_file_for_image ().
2557
2558 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
2559
2560         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
2561         used only as a cache: added an icall to fill it.
2562
2563 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
2564
2565         * reflection.h: exposed mono_reflection_free_type_info
2566         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
2567         since mono_reflection_bind_generic_parameters makes a copy of it.
2568         * reflection.c (free_type_info): subinfos should be freed.
2569         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
2570         made non static.
2571         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
2572         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
2573         this fixes #82695 and #81726.
2574    
2575
2576 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
2577
2578         * process.h, process.c:  added support for user profile/info in
2579           ProcessStartInfo. For now only Windows works.
2580
2581 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
2582
2583         * metadata.c: consider the generic arguments when comparing
2584         signatures (bug #82614).
2585
2586 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
2587
2588         * cil-coff.h, image.c: updated assembly loader to cope with the
2589         PE32+ 64 bit file format.
2590
2591 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
2592
2593         * assembly.c, class.c, domain.c, loader.c: remove useless
2594         inclusion of cil-coff.h.
2595
2596 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
2597
2598         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
2599         if interface is marked with CoClassAttribute. 
2600    
2601         Code is contributed under MIT/X11 license.
2602
2603 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
2604
2605         * sgen-gc.c: ensure no object from the to space is copied again or finalized
2606         if it's seen twice in major collections.
2607
2608 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
2609
2610         * sgen-gc.c: big objects are not copied to the gray area, but they
2611         need to be considered for scanning, too, if they are brought alive
2612         by an object ready for finalizations or a survived one.
2613
2614 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2615
2616         * sgen-gc.c: properly account the number of disappearing links when
2617         they are nullified.
2618
2619 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
2620
2621         * sgen-gc.c: share the code to scan the registered roots between the
2622         different types of collections.
2623
2624 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
2625
2626         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
2627
2628 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
2629
2630         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
2631         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
2632
2633 2007-08-28  Mark Probst  <mark.probst@gmail.com>
2634
2635         * security-manager.c (mono_security_manager_get_methods):
2636         LinkDemandSecurityException now has 2 arguments instead of 3.
2637
2638 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
2639
2640         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
2641         platforms which need it.
2642
2643 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
2644
2645         * sgen-gc.c: unregister thread data structures with a pthread_key_t
2646         dtor.
2647
2648 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
2649
2650         * threads.c: free the thread static data on thread exit.
2651
2652 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
2653
2654         * class.c: walk the hierarchy to find the generic definition for
2655         a class (fixes runtime part of bug #82498).
2656
2657 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
2658
2659         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
2660         ...
2661
2662         * image.c (mono_image_close): Here. Hopefully fixes #82510.
2663
2664 2007-08-24  Mark Probst  <mark.probst@gmail.com>
2665
2666         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
2667
2668 2007-08-24  Robert Jordan  <robertj@gmx.net>
2669
2670         * appdomain.c: don't perform the ':'->';' substitution on Win32.
2671
2672 2007-08-24  Jb Evain  <jbevain@novell.com>
2673
2674         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
2675         for byref types.
2676
2677 2007-08-24  Mark Probst  <mark.probst@gmail.com>
2678
2679         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
2680         #82286.
2681
2682 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
2683
2684         * assembly.c: Fix a warning.
2685         
2686 2007-08-23  Marek Habersack  <mhabersack@novell.com>
2687
2688         * appdomain.c: parse the <runtime> section looking for the probing
2689         element with the 'privatePath' attribute, which sets additional
2690         directories in which the runtime should look for assemblies.
2691
2692 2007-08-23  Robert Jordan  <robertj@gmx.net>
2693
2694         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
2695         Fixes #82499.
2696
2697 2007-08-23  Martin Baulig  <martin@ximian.com>
2698
2699         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
2700         _mono_debug_init_corlib() and remove it from the header file.
2701
2702 2007-08-23  Martin Baulig  <martin@ximian.com>
2703
2704         * mono-debug-debugger.c
2705         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
2706         don't notify the debugger about it.
2707
2708         * mono-debug-debugger.h
2709         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
2710
2711 2007-08-23  Robert Jordan  <robertj@gmx.net>
2712
2713         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
2714         Code is contributed under MIT/X11 license.
2715
2716 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
2717
2718         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
2719
2720 2007-08-22  Martin Baulig  <martin@ximian.com>
2721
2722         * mono-debug.c: Store debugging info on a per-domain basis and
2723         free it on domain unload.  Add support for unloading symbol files.
2724
2725         * mono-debug.h
2726         (MonoDebugList): New typedef.
2727         (MonoSymbolTable):
2728         - add `data_tables and `type_table'.
2729         - replace 'symbol_files' and `num_symbol_files' with a
2730           `MonoDebugList *'.
2731         (mono_debug_data_table): Removed.
2732         (mono_debug_list_add): New public function.
2733         (mono_debug_list_remove): New public function.
2734         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
2735         (mono_debug_init_2_memory): Renamed into
2736         mono_debug_open_image_from_memory().
2737         (mono_debug_close_image): New public function.
2738         (mono_debug_domain_create): Likewise.
2739         (mono_debug_domain_unload): Likewise.
2740         (MONO_DEBUGGER_VERSION): Bump to 60.
2741
2742         * mono-debug-debugger.h
2743         (MonoDebuggerEvent):
2744         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
2745         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
2746         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
2747         - rename `THREAD_CREATED' and `THREAD_EXITED' into
2748           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
2749         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
2750           meaning.
2751         (mono_debugger_add_symbol_file): Removed.
2752         (mono_debugger_add_type): Removed.
2753         (mono_debugger_lookup_type): Removed.
2754         (mono_debugger_lookup_assembly): Removed.
2755
2756         * domain.c
2757         (mono_domain_create): Call mono_debug_domain_create().
2758         (mono_init_internal): Call mono_debug_init_corlib().
2759
2760         * assembly.c
2761         (mono_assembly_close): Call mono_debug_close_image().
2762
2763 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
2764
2765         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
2766         mmap call.
2767
2768 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
2769
2770         * sgen-gc.c: ensure section->pin_queue_end is initialized
2771         correctly when non pinning objects in the section have been found.
2772
2773 2007-08-22  Marek Habersack  <mhabersack@novell.com>
2774
2775         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
2776         containing a list of directories separated by ':'. MSDN docs say
2777         the directories should be separated with ';'. Part of a bugfix for
2778         bug #81446
2779
2780 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
2781
2782         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
2783         it should MonoType and not MonoClass.
2784
2785 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
2786
2787         * culture-info-table.h : regenerated.
2788
2789 2007-08-20  William Holmes  <billholmes54@gmail.com>
2790
2791         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
2792          to call ReplaceFile Kernel32 on windows or in io-layer.
2793         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
2794         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
2795          as an internal call.
2796
2797         Code is contributed under MIT/X11 license.
2798
2799 2007-08-20  Jb Evain  <jbevain@novell.com>
2800
2801         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
2802         and MONO_EXCEPTION_FIELD_ACCESS.
2803
2804         * debug-helpers.[c|h]: new mono_field_full_name function.
2805
2806 2007-08-20  Mark Probst  <mark.probst@gmail.com>
2807
2808         * class.c: Removed class_security_level() and moved it to
2809         security-core-clr.c.
2810
2811         * security-core-clr.c, security-core-clr.h: class_security_level()
2812         is now public and renamed to mono_security_core_clr_class_level().
2813         It also looks for security attributes in the classes a class is
2814         nested in.
2815
2816 2007-08-20  Mark Probst  <mark.probst@gmail.com>
2817
2818         * security-core-clr.c, security-core-clr.h: CoreCLR security
2819         utility functions.
2820
2821         * Makefile.am: Added security-core-clr.[ch].
2822
2823         * security-manager.c, security-manager.h: Functions and enum for
2824         setting and getting the security mode.
2825
2826         * class.c: CoreCLR security checks.
2827
2828 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
2829
2830         * icall-def.h, process.c, process.h: implemented icall to get
2831         user/system processor times.
2832
2833 2007-08-17  Mark Probst  <mark.probst@gmail.com>
2834
2835         * domain.c, threads.c, class-internals.h, domain-internals.h: New
2836         reader-lock-free jit_info_table.
2837
2838 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
2839
2840         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
2841
2842         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
2843
2844         * object-internals.h (MonoException): Add missing _data member.
2845
2846 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
2847
2848         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
2849         checking that only methods with matching qname or fqname are picked
2850         from implemented interfaces.
2851
2852 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
2853
2854         * verify.c (do_newarr):added, do type verification of
2855         newarr ops, push the right value on the eval stack.
2856         * verify.c (mono_method_verify): use do_newarr
2857
2858
2859 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
2860
2861         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
2862         factored the common code into get_boxable_mono_type, which
2863         is now using mono_type_get_full, this fixed byref related tests.
2864
2865 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
2866
2867         * class.c: added mono_type_get_full, this function has the same
2868         behavior of mono_class_get_full but the returned MonoType has
2869         all metadata of the associated token in case of a typespec token.
2870         * class.c: added mono_type_retrieve_from_typespec, used by 
2871         mono_type_get_full to retrieve the token type.
2872         * class.c (mono_class_create_from_typespec): changed to use
2873         mono_type_retrieve_from_typespec.
2874         * class.c (mono_ldtoken): changed to use mono_type_get_full
2875         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
2876         * class-internals.h: exported mono_type_get_full for internal use.
2877
2878 2007-08-16  Jb Evain  <jbevain@novell.com>
2879
2880         * domain.c (supported_runtimes): add entry for
2881         the 'moonlight' runtime version.
2882
2883 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
2884
2885         * verify.c (mono_method_verify): small typo sliped in.  
2886
2887 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
2888
2889         * verify.c (do_unbox_value): added, do type verification of
2890         unboxing ops
2891         * verify.c (mono_method_verify): use do_unbox_value
2892
2893
2894 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
2895
2896         * verify.c (dump_stack_value): fixed typo, was printing string
2897         instead of object on stack.
2898         * verify.c (do_box_value): moved the byref check up as it leads
2899         to invalid code and should be done earlier.
2900         * verify.c: improved error messages for and ldobj
2901
2902 2007-08-15  William Holmes  <billholmes54@gmail.com>
2903
2904         * marshal.c (emit_marshal_custom): Omit the call to 
2905           marshal_native_to_managed when calling native to managed 
2906           and the argument is specified as an out argument.
2907
2908         Code is contributed under MIT/X11 license.
2909
2910 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
2911
2912         * verify.c: fixed the type checks for generics, function pointers and vectors.
2913         Added type verification for ldobj and ldtoken. The verifier
2914         would segfault if header or signature of a method contained references
2915         to non-existant types.
2916
2917 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
2918
2919         * marshal.c (cominterop_get_ccw): Patch from
2920         Bill Holmes to no walk up interface hierarchy. 
2921         All parent methods should be present in the interface for COM.
2922    
2923         Code is contributed under MIT/X11 license.
2924
2925 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
2926
2927         * marshal.c (emit_marshal_com_interface): Patch from
2928         Bill Holmes to handle COM Interfaces as return values
2929         for native->managed calls.
2930    
2931         Code is contributed under MIT/X11 license.
2932
2933 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
2934
2935         * marshal.c (cominterop_get_idispatch_for_object): Implement
2936         for runtime callable wrappers.
2937    
2938         Code is contributed under MIT/X11 license.
2939
2940 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
2941
2942         * pedump.c (main): changed from mono_init to mono_init_from_assembly
2943         so 2.0 types are accessible
2944
2945
2946 2007-08-13  Miguel de Icaza  <miguel@novell.com>
2947
2948         * domain.c (mono_init_internal): Call mono_assembly_load_friends
2949         once we load mscorlib.   Due to the order in which we initialize,
2950         the mono_assembly_load_full routine that loads mscorlib did not
2951         load friends.   We now load it once we load the
2952         mono_defaults.internals_visible_class class. 
2953
2954         * assembly.c: Expose the mono_load_friend_assemblies method.
2955
2956 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
2957
2958         * verify.c: improved the handling of boxing, better
2959         type checking for unary ops and conversion. Fix bug
2960         regarding managed pointer compatibility checking
2961
2962 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
2963
2964         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
2965
2966         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
2967
2968 2007-08-09  Raja R Harinath  <rharinath@novell.com>
2969
2970         * reflection.c (dup_type): Remove.
2971         * class.c (dup_type): Remove.
2972         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
2973         instead of the dodgy 'dup_type'.
2974         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
2975         handle the case where 'dup_type' needed the second argument.
2976
2977 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
2978
2979         * domain.c: Fix a warning.
2980
2981 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
2982
2983         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
2984         checking that methods with the same fqname are not overridden
2985         with a method from an ancestor.
2986
2987 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
2988
2989         * threads.c (free_thread_static_data_helper): Avoid a crash if
2990         thread->static_data is not yet set.
2991
2992 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
2993
2994         * marshal.c: Use correct image when emitting
2995         native wrapper for COM calls.
2996    
2997         Code is contributed under MIT/X11 license.
2998
2999 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
3000
3001         * icall-def.h, security.c, security.h :
3002           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
3003
3004 2007-08-07  Martin Baulig  <martin@ximian.com>
3005
3006         * mono-debug-debugger.h
3007         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
3008
3009         * domain.c (mono_domain_free): Call
3010         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
3011
3012 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
3013
3014         * verify.c (check_underflow, check_overflow): error message now returns IL offset
3015         * verify.c (in_same_block): code should test if either offset is inside the clauses
3016         * verify.c (mono_method_verify): push the exception into the eval stack of exception
3017         and filter blocks
3018
3019 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
3020
3021         * image.c (mono_image_close): Fix a leak.
3022
3023         * object.c (mono_runtime_invoke_array): Avoid using alloca.
3024
3025         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
3026
3027 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
3028
3029         * domain.c, threads.c, threads-types.h: fix memory retention issue
3030         with thread static variables not being cleared on domain unload.
3031         Reuse thread static slots after domain unload.
3032
3033 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
3034
3035         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
3036         nullable type.
3037
3038         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
3039         now done in mono_runtime_invoke_array.
3040
3041         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
3042         receiver is a nullable type.
3043
3044         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
3045         generic parameter.
3046
3047 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
3048
3049         * marshal.c: Implement COM Objects as return type for 
3050         managed->unmanaged calls. Added Release calls for COM Object
3051         out/return values in managed->unmanaged calls.
3052
3053         Code is contributed under MIT/X11 license.
3054
3055 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
3056
3057         * threads.h, threads-type.h: move the hazard pointer declarations
3058         to the private header.
3059
3060 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
3061
3062         * file-io.c, appdomain.c: memory leak fixes.
3063
3064 2007-08-02  Dick Porter  <dick@ximian.com>
3065
3066         * socket-io.c
3067         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
3068         SO_REUSEADDR setting into io-layer/sockets.c.
3069
3070 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
3071
3072         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
3073         from Object when called on a generic parameter. Fixes #82211.
3074
3075 2007-08-01  Dick Porter  <dick@ximian.com>
3076
3077         * file-io.c (convert_share): Test FileShare values bit-by-bit.
3078         Fixes bug 79250 yet again.
3079
3080 2007-07-30  Martin Baulig  <martin@ximian.com>
3081
3082         Merged the `debugger-dublin' branch.
3083
3084         * mono-debug.h
3085         (MonoDebugDataTable): New typedef.
3086         (MonoDebugMethodAddressList): New typedef.
3087         (MonoDebugWrapperData): Removed.
3088         (MonoDebugSymbolTable): Removed `current_data_table',
3089         `current_data_table_size', `current_data_table_offset'.
3090         (MonoDebugDataItemType): Moved into mono-debug.c.
3091         (MonoDebugMethodJitInfo): Remove `address'.
3092         (mono_debug_data_table): New global variable.
3093         (mono_debug_lookup_method_addresses): New public function.
3094         (mono_debug_find_method): Take a `MonoMethod *', not a
3095         `MonoDebugMethodInfo *'.
3096
3097         * mono-debug.c: Drop support for the old symbol tables.
3098
3099 2007-06-28  Martin Baulig  <martin@ximian.com>
3100
3101         * mono-debug.c (mono_debug_debugger_version): New public variable.
3102
3103 2007-07-31  William Holmes  <billholmes54@gmail.com>
3104
3105         * metadata.c Changed mono_type_create_from_typespec to not insert
3106           the type into the hash map until after
3107           do_mono_metadata_parse_type has completed.
3108         Fixes Bug #82194
3109         Code is contributed under MIT/X11 license.
3110
3111 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
3112
3113         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
3114         generic parameter. Fixes #82211.
3115
3116 2007-07-27  Jb Evain  <jbevain@novell.com>
3117
3118         * pedump.c (dump_metadata, dump_metadata_header): dump
3119         versions contained in the metadata header.
3120
3121 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
3122
3123         * threads.c: register small_id_table with the GC.
3124
3125 2007-07-27  Mark Probst  <mark.probst@gmail.com>
3126
3127         * threads.c, threads.h, class-internals.h, object-internals.h:
3128         Hazard pointers, to be used by lock-free parallel algorithms.
3129
3130 2007-07-26  Dick Porter  <dick@ximian.com>
3131
3132         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
3133         routine on non-windows platforms, as I've not managed to think of
3134         a non-kludgy way of doing this.  Finishes off bug 78739.
3135
3136 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
3137
3138         * object.c: properly setup interface_bitmap in proxy vtables.
3139
3140 2007-07-25  Marek Habersack  <mhabersack@novell.com>
3141
3142         * appdomain.c (get_shadow_assembly_location): do not use TickCount
3143         to create unique shadow copy target directories, use the domain's
3144         serial number instead. Each domain gets a unique target directory
3145         that way.
3146
3147         * domain.c (mono_domain_create): added code to increment domain
3148         shadow copy serial number and cache the value in the current
3149         domain structure.
3150
3151         * domain-internals.h (struct _MonoDomain): added a new field -
3152         shadow_serial to hold the serial number used in generation of
3153         shadow-copy directories. This is to make sure that the directory
3154         name is unique for each and every domain created. We avoid a race
3155         condition with overriding assemblies already in use by other app
3156         domains.
3157
3158 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
3159
3160         * class.c (mono_bounded_array_class_get): fixed memory leak when 
3161         binding generic parameters.
3162
3163 2007-07-24  Raja R Harinath  <rharinath@novell.com>
3164
3165         * metadata.c (do_mono_metadata_parse_generic_class): Use
3166         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
3167         error.
3168
3169 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
3170
3171         * loader.c, class-internals.h, reflection.c: removed the per-method
3172         generics hashtable: we use the global one through the call of
3173         mono_class_inflate_generic_method ().
3174
3175 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
3176
3177         * class.c, metadata.c, class-internals.h: introduce yet another
3178         generics global cache for inflated methods (fixes 98% of the perf
3179         issue in bug #81806).
3180
3181 2007-07-23  Raja R Harinath  <rharinath@novell.com>
3182
3183         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
3184         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
3185         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
3186         return a MonoGenericInst containing (a copy) of those types.
3187         (mono_metadata_inflate_generic_inst): Update to changes.
3188         (mono_metadata_parse_generic_inst): Likewise.
3189         (mono_get_shared_generic_inst): Likewise.
3190         * reflection.c (mono_class_bind_generic_parameters): Likewise.
3191         (mono_reflection_bind_generic_method_parameters): Likewise.
3192         * metadata-internals.h: Likewise.
3193         * icall.c (free_generic_context): Kill.
3194         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
3195
3196         * reflection.c (reflection_methodbuilder_to_mono_method): Use
3197         mono_metadata_type_dup.
3198         * marshal.c (mono_mb_create_method): Likewise.
3199
3200         * metadata.c (mono_metadata_type_dup): Rename from
3201         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
3202         MonoImage.  Handle a few more cases, esp. when no mempool is given.
3203         * marshal.c, metadata-internals.h: Update to changes.
3204
3205 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
3206
3207         * class.c: fixed a small leak for array classes and removed warning.
3208
3209 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
3210
3211         * loader.c (mono_method_get_param_token): Make this work on generic methods.
3212         Return 0x8000000 for return parameters. Fixes #82161.
3213
3214 2007-07-21  Marek Habersack  <grendello@gmail.com>
3215
3216         * appdomain.c (get_shadow_assembly_location): append the current
3217         ticks value to the path. Avoids overwriting the same assemblies by
3218         several threads at the same time.
3219
3220 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
3221         and Raja R Harinath  <rharinath@novell.com>
3222
3223         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
3224         Simplify slightly.
3225         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
3226         property for testing if a method is a generic method definition.
3227
3228 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
3229
3230         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
3231
3232 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3233
3234         * verify.c: used function from private branch, reverted to the one in class.h 
3235
3236 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3237
3238         * verify.c: a typo slipped in and the code wont compile
3239
3240 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3241
3242         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
3243         disabled box instruction as it is doing the wrong thing
3244         improved stack dump messages, now it is easier to debug type related issues
3245
3246
3247 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
3248
3249         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
3250
3251 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3252
3253         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
3254         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
3255         grouped with class and valuetype. This change will simply 
3256         the code as it should be handled just like unmanaged pointers.
3257
3258 2007-07-19  Mark Probst  <mark.probst@gmail.com>
3259
3260         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
3261
3262 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3263
3264         * verify.c: several stack merge issues fixed, reference comparisons now
3265         check the type size. strict type check now works correctly.
3266         added more uses of IS_MANAGED_POINTER macro.
3267         fixed issues pointed by running the test suite against .net.
3268         
3269
3270 2007-07-19  Mark Probst  <mark.probst@gmail.com>
3271
3272         * class.c, loader.c, class-internals.h: Removed the
3273         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
3274         defines.
3275
3276         * icall.c: Better error checking in some internal reflection
3277         methods.
3278
3279 2007-07-18  William Holmes  <billholmes54@gmail.com>
3280
3281         * filewatcher.c : removed unused variable 'filename' in 
3282           ves_icall_System_IO_FSW_SupportsFSW
3283
3284 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
3285
3286         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
3287         obsolete, removed.
3288
3289 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
3290
3291         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
3292         
3293         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
3294
3295 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
3296
3297         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
3298         Implement generics support.
3299         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
3300
3301         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
3302         type_args and method_args arguments.
3303         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
3304         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
3305         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
3306
3307 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
3308
3309         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
3310           It adds a rootimage parameter to mono_reflection_get_type_internal,
3311           adds new function mono_reflection_get_type_with_rootimage and use
3312           the rootimage to resolve the types instead of the current image
3313
3314 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3315
3316         * culture-info-table.h: Forgot to update after r78304.
3317
3318 2007-07-13  Raja R Harinath  <rharinath@novell.com>
3319
3320         * class.c (mono_class_is_open_constructed_type)
3321         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
3322
3323 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
3324
3325         * class.c (mono_bounded_array_class_get):  method fails if used with
3326         an incomplete TypeBuilder enum (no basetype field), fixed it by 
3327         avoiding calculating the size for such array as it cannot be instantiated.
3328         Fix bug #82015
3329
3330 2007-07-12  Raja R Harinath  <rharinath@novell.com>
3331
3332         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
3333         field.
3334         * metadata.c, reflection.c: Update to changes.
3335
3336 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
3337
3338         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
3339         mono_class_is_valid_enum, they are used to valide a enum when loading.
3340         * reflection.c: used new functions to throw TypeLoadException when and
3341         invalid enum is build with TypeBuilder. Fixes #82018
3342   
3343 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
3344
3345         * object.c: forgot commit of mono_class_setup_methods () to access
3346         iface->methods.
3347         * object-internals.h: added a few more handy fields to
3348         MonoIMTCheckItem.
3349
3350 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
3351
3352         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
3353         iface->methods.
3354
3355 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
3356
3357         * class-internals.h, object-internals.h, object.c: IMT-based
3358         interface invocation core from Massimiliano Mantione
3359         (massi@ximian.com) with a reworked arch-specific interface,
3360         bsearch implementation and a few bugfixes and memory savings by me.
3361
3362 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
3363
3364         * class.c (mono_class_create_from_typedef): mono would segfault if 
3365         an enum did not have a __value field. It now throws a TypeLoadException
3366         for such cases. Fix bug #82022
3367
3368 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
3369
3370         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
3371
3372 2007-07-09  Mark Probst  <mark.probst@gmail.com>
3373
3374         * class.c (mono_class_init): If a class is already inited but has
3375         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
3376
3377 2007-07-09  Mark Probst  <mark.probst@gmail.com>
3378
3379         * class.c: Properly handle the case of an unimplemented interface
3380         method.  Fixes: 81673.
3381
3382 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
3383
3384         * class-internals.h, object.c: cleanup patch from massi: use
3385         MonoVTable->interface_bitmap since the vtable interfaces offset array
3386         is going away.
3387
3388 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
3389
3390         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
3391         GetMDStreamVersion icall instead.
3392
3393 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
3394
3395         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
3396         not use mono_dl_build_path() with a full library name: makes
3397         fallbacks to libgaim and libfam work.
3398
3399 2007-07-06  William Holmes  <billholmes54@gmail.com>
3400
3401         * assembly.c: Added a continue statement in probe_for_partial_name when
3402          parse_assembly_directory_name fails.  Fixes : 82002
3403
3404 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
3405
3406         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
3407         and added a verification  for TYPEDBYREF.
3408         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
3409         make native int interchangeable with int32 and some small cleanup and formating.
3410         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
3411         handle byref of byref.
3412         * verify.c (push_local): handle byref of byref.
3413         * verify.c (do_binop): invalid mix of values is unverifiable
3414         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
3415         added visibility checks
3416         * verify.c (field related method): added visibility checks
3417         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
3418
3419 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
3420
3421         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
3422         string.
3423
3424 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
3425
3426         * profiler.c (mono_profiler_load): Fix an off-by-one error.
3427
3428         * marshal.c (emit_marshal_string): When returning a string from managed code,
3429         allways make a copy even for unicode strings. Fixes #81990.
3430
3431 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
3432
3433         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
3434         of byref generic inst types (bug #81997).
3435
3436 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
3437
3438         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
3439         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
3440
3441 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
3442
3443         * marshal.c (emit_marshal_string): Add support for unicode strings in
3444         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
3445
3446 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
3447
3448         * verify.c: field load/store are now verified, missing only access checks now
3449
3450 2007-06-28  Martin Baulig  <martin@ximian.com>
3451
3452         * mono-debug.c (mono_debug_debugger_version): New public variable.
3453
3454 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
3455
3456         * locales.c: When constructing DateTimeFormat or NumberFormat for
3457         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
3458         MonoCultureInfo contructed from the current locale is always
3459         read-only and has UseUserOverride set to true. All MonoCultureInfo
3460         instances returned for GetCultures have both IsReadOnly and
3461         UseUserOverride set to true. Fixes part of bug #81930.
3462
3463 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
3464
3465        * icall-def.h: Update System.__ComObject icalls
3466        * marshal.c: Avoid managed transition (and object creation)
3467        when looking up COM interface in RCW.
3468        * marshal.h: Ditto.
3469        
3470        Code is contributed under MIT/X11 license.
3471
3472 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
3473
3474         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
3475         to avoid crashes during assembly unloading.
3476
3477 2007-06-22  Raja R Harinath  <rharinath@novell.com>
3478
3479         Fix MethodInfo.IsGenericMethodDefinition
3480         * reflection.c (mono_reflection_bind_generic_method_parameters):
3481         Rearrange code to ensure we always uses a generic method definition.
3482         * class.c (mono_class_inflate_generic_method_full): Set
3483         'generic_container' field only for generic method definitions.
3484         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
3485         Use presense of 'generic_container' field as indication of being a
3486         generic method definition.
3487
3488 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
3489
3490         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3491
3492         * object-internals.h: Reflect changes in the layout of the managed Delegate
3493         class.
3494         
3495         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
3496         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
3497         runtime memory used by the dynamic method. Fixes #77146.
3498
3499 2007-06-21  Dick Porter  <dick@ximian.com>
3500
3501         * file-io.h: 
3502         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
3503         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
3504         81767.
3505
3506 2007-06-21  Raja R Harinath  <rharinath@novell.com>
3507
3508         * reflection.c (method_encode_methodspec): Add a tripwire.
3509         * class.c (inflate_generic_type): The fully open generic type is
3510         not the same as the generic type definition.
3511
3512 2007-06-21  Martin Baulig  <martin@ximian.com>
3513
3514         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
3515
3516         * mono-debug-debugger.h
3517         (MonoDebuggerBreakpointInfo): Removed.
3518         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
3519         (mono_debugger_remove_breakpoint): Likewise.
3520         (mono_debugger_breakpoint_callback): Likewise.
3521         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
3522
3523 2007-06-21  Raja R Harinath  <rharinath@novell.com>
3524
3525         * metadata.c (mono_metadata_lookup_generic_class): The fully open
3526         generic type is not the same as the generic type definition.
3527         * class.c (mono_generic_class_get_class): Likewise.
3528
3529 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
3530
3531         * icall.c: The second argument to 
3532         System.Reflection.MethodBase.GetMethodFromHandleInternalType
3533         is a MonoType not a MonoClass.
3534
3535 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
3536
3537         * verify.c: support for function pointers in the verifier
3538
3539 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
3540
3541         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
3542
3543 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
3544
3545         * assembly.c: removed Mono.Data.SqliteClient from the list of
3546         forward-compatible assemblies as it breaks the ABI (bug #81899).
3547
3548 2007-06-19  Raja R Harinath  <rharinath@novell.com>
3549
3550         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
3551         lookup/update with the loader lock.
3552         * reflection.c (mono_class_bind_generic_parameters): No need to
3553         protect mono_metadata_lookup_* with the loader lock.
3554         * class.c (inflate_generic_type): Likewise.
3555         
3556         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
3557         on a generic instantiated type.
3558
3559 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
3560
3561         *verify.c: produce meanfull error messages on verification error
3562         *verify.c: fixed some cases of verification errors reported as validation errors
3563         *pedump.c: fixed the error name array, now it shows validation errors properly
3564         *verify.h: fixed the contant that should be used for verification errors
3565
3566 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
3567
3568         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
3569         for bug #77596, 81858 and 80743 (generics data structures on domain
3570         unload).
3571
3572 2007-06-15  Raja R Harinath  <rharinath@novell.com>
3573
3574         Avoid allocating 'MonoGenericContext' on the heap.
3575         * class-internals (_MonoMethodInflated::context): Make field
3576         inline, not a pointer.
3577         * loader.c (method_from_methodspec): Allocate 'new_context' on the
3578         stack.  Use the context embedded within the inflated method as the
3579         hash key, rather than 'new_context'.
3580         * class.c (inflate_generic_context): Simplify.  Return a struct
3581         rather than allocating on the heap.
3582         (mono_class_inflate_generic_method_full): Update to changes.  Now,
3583         doesn't salt away a copy of the context -- simplifying the
3584         lifetime rules of a 'MonoGenericContext *'.
3585         (mono_method_get_context): Return pointer to embedded context.
3586         (setup_generic_array_ifaces): Allocate temporary context on stack.
3587         * reflection.c (inflate_mono_method): Likewise.
3588         (mono_reflection_bind_generic_method_parameters): Likewise.
3589         Use the context embedded within the inflated method as the hash key.
3590
3591         Avoid a source of allocation of 'MonoGenericContext'.
3592         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
3593         and 'cached_context' fields into embedded 'MonoGenericContext' field.
3594         * class.c: Update to changes.
3595         (mono_generic_class_get_context): Simplify drastically.  Now just
3596         returns a pointer to the field.
3597         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
3598         argument as a const pointer.
3599         (mono_metadata_generic_context_equal): Likewise.
3600         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
3601         Update to changes.
3602
3603 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
3604
3605         * verify.c improved the handling of brtrue/brfalse, factored out common code
3606
3607 2007-06-14  Raja R Harinath  <rharinath@novell.com>
3608
3609         Kill MonoGenericMethod.
3610         * class-internals.h (MonoGenericContext::method_inst): Rename from
3611         'gmethod' and convert to a MonoGenericInst.
3612         (MonoGenericMethod): Remove.
3613         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
3614         * loader.c (method_from_methodspec): Update to changes.  Use a
3615         MonoGenericContext as the key to the hashtable.
3616         * metadata.c (mono_metadata_generic_context_equal): Rename from 
3617         'mono_metadata_generic_method_equal' and take MonoGenericContext.
3618         (mono_metadata_generic_context_hash): Likewise from
3619         'mono_metadata_generic_method_hash'.  Change hash function.
3620         (mono_metadata_load_generic_params): Update to changes.
3621         (mono_get_shared_generic_method): Remove.
3622         * metadata-internals.h (mono_get_shared_generic_method): Remove.
3623         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
3624         (inflate_generic_context): Likewise.
3625         (mono_class_inflate_generic_method_full): Likewise.
3626         (setup_generic_array_ifaces): Likewise.
3627         (mono_class_create_from_typespec): Likewise.
3628         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
3629         (method_encode_methodspec): Update callsite.
3630         (reflection_methodbuilder_to_mono_method): Update to changes.
3631         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
3632         MonoGenericContext as the key to the hashtable.
3633         (inflate_mono_method): Update to changes.
3634
3635         * class-internals.h (MonoGenericMethod::container): Remove.
3636         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
3637
3638 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
3639
3640         * profiler-private.h, profiler.c, profiler.h: added API to profile
3641         exception events.
3642
3643 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
3644
3645         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
3646
3647 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
3648
3649         * verify.c: method invocation is now validated, now we verify parameter types on stack.
3650         Fixed overflow and underflow not aborting the verification process.
3651
3652 2007-06-13  Mark Probst  <mark.probst@gmail.com>
3653
3654         * class-internals.h (MonoStats): Added stats entries for dynamic
3655         code allocations.
3656
3657 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
3658
3659         * loader.c (mono_free_method): Free header->locals and header->clauses.
3660
3661         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
3662         dynamic case.
3663
3664         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
3665
3666         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
3667
3668 2007-06-12  Raja R Harinath  <rharinath@novell.com>
3669
3670         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
3671         the tables.
3672
3673 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
3674
3675         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
3676
3677 2007-06-11  Raja R Harinath  <harinath@gmail.com>
3678
3679         MonoGenericMethod on a diet
3680         * class-internals.h (_MonoMethodInflated::reflection_info): Move
3681         here ...
3682         (_MonoGenericMethod::reflection_info): ... from here.
3683         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
3684         Update to changes.
3685         * reflection.c (inflate_mono_method): Likewise.
3686         (mono_reflection_bind_generic_method_parameters): Likewise.
3687
3688 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
3689
3690         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
3691         *verify.c: factored long ldarg forms to share code with short forms
3692
3693 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
3694
3695         *verify.c: fixed code formating factored some duplicate code
3696         into a new function
3697
3698         *verify.h: fixed binary incompatibility introduced earlier
3699
3700         *pedump.c: fixed formating
3701
3702 2007-06-11  Raja R Harinath  <harinath@gmail.com>
3703
3704         Fix assertion when disassembling Mono.C5.dll
3705         * loader.c (method_from_methodspec): Avoid inflating a method
3706         twice with the same context.  If the methodref is inflated, use
3707         the declaring method instead.
3708
3709         * class.c (mono_class_from_generic_parameter): Fix case similar to
3710         bug #81830 handled below, but for method containers.
3711
3712 2007-06-10  Raja R Harinath  <harinath@gmail.com>
3713
3714         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
3715         get_shared_generic_class.  Directly inflate the instance.
3716         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
3717         (inflate_generic_class): Delete.
3718         (get_shared_generic_class): Delete.  Move setting of
3719         'cached_class' and 'cached_context' ...
3720         * metadata.c (mono_metadata_lookup_generic_class): ... here.
3721
3722         * metadata.c (mono_metadata_lookup_generic_class): Change
3723         signature to take the components of a MonoGenericClass rather than
3724         an allocated MonoGenericClass.  Change semantics to be intern-like.
3725         * reflection.c (mono_class_bind_generic_parameters): Update to
3726         changes.  Make locking region tighter.
3727         * class.c (inflate_generic_class): Update to changes.
3728         (get_shared_generic_class): Likewise.
3729         * metadata-internals.h: Likewise.
3730
3731         * reflection.c (mono_class_bind_generic_parameters): Take and
3732         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
3733         (mono_reflection_bind_generic_parameters): Use
3734         'mono_class_bind_generic_parameters' rather than duplicate the code.
3735         * class.c (mono_bounded_array_class_get): Update to changes.
3736         * object-internals.h: Likewise.
3737
3738         * reflection.c (mono_class_bind_generic_parameters): Only support
3739         parameterizing generic type definitions.  Remove support for other
3740         open types.
3741
3742 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
3743
3744         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
3745
3746         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
3747         in the dynamic case.
3748
3749 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
3750
3751         * threads.c: When cleaning up thread, reset the Background bit.
3752         Fixes bug #81720.
3753
3754 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
3755
3756        * metadata.c: Move variable declarations to top of scope.
3757        * verify.c: Move variable declarations to top of scope.
3758
3759        Code is contributed under MIT/X11 license.
3760
3761 2007-06-08  Raja R Harinath  <rharinath@novell.com>
3762
3763         * reflection.c (mono_class_bind_generic_parameters): Replace
3764         open-coded loop with mono_metadata_inflate_generic_inst.
3765
3766         * class.c (get_shared_generic_class): Don't call
3767         mono_get_shared_generic_inst.  Use the container's own
3768         'class_inst'.
3769
3770         * metadata.c (mono_metadata_load_generic_params): Move
3771         initialization of 'context' field here from ...
3772         * class.c (mono_class_create_from_typedef): ... here, and ...
3773         * loader.c (mono_get_method_from_token): ... here.
3774
3775         * class.c (get_shared_generic_class): Rename from
3776         mono_get_shared_generic_class and make static.
3777         (mono_get_shared_generic_inst): Move to metadata.c.
3778         * loader.c (mono_get_shared_generic_method): Likewise.
3779         * class-internals.h, metadata-internals.h: Update to changes.
3780
3781         Fix #81830
3782         * class.c (mono_class_from_generic_parameter): Don't assume a
3783         generic container owner exists.  Generic containers from monodis
3784         don't have any.
3785
3786 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
3787
3788         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
3789         * verify.h: new typedefs to returns the non-verifiable status
3790         * verify.c: initial implementation of generics, stack merging and object compatibility check
3791
3792 2007-06-06  Mark Probst  <mark.probst@gmail.com>
3793
3794         * class.c, image.c, class-internals.h (MonoImage): class_cache is
3795         a MonoInternalHashTable again (fixed bug in internal hash table
3796         code).
3797
3798 2007-06-06  Mark Probst  <mark.probst@gmail.com>
3799
3800         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
3801         MonoInternalHashTable again (fixed bug in internal hash table
3802         code).
3803
3804 2007-06-06  Mark Probst  <mark.probst@gmail.com>
3805
3806         * class.c, image.c, class-internals.h, domain.c,
3807         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
3808         changes.  Have to figure out what makes them break the SWF
3809         regression.
3810
3811 2007-06-04  Mark Probst  <mark.probst@gmail.com>
3812
3813         * class.c, image.c, class-internals.h (MonoImage): class_cache is
3814         a MonoInternalHashTable now.
3815
3816 2007-06-04  Mark Probst  <mark.probst@gmail.com>
3817
3818         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
3819         MonoInternalHashTable now.
3820
3821 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
3822
3823         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
3824         invoke_impl code.
3825
3826         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
3827
3828         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
3829         dependent trampoline.
3830
3831         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3832
3833         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
3834
3835 2007-05-29  Robert Jordan  <robertj@gmx.net>
3836
3837         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
3838
3839 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
3840
3841         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
3842
3843 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
3844
3845        * marshal.c: Fix interface lookup loops for
3846        cominterop_get_com_slot_for_method and 
3847        cominterop_get_method_interface. Only need to lookup
3848        if type is a class, else use interface type method is on.
3849
3850        Code is contributed under MIT/X11 license.
3851
3852 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
3853
3854         * reflection.c: HasSecurity can be present even if no specially 
3855         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
3856         SecurityAttribute). Fix CAS regression tests on buildbot.
3857
3858 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
3859
3860        * appdomain.c: Add configure checks for header files.
3861        * image.c: Add configure checks for header files.
3862        * file-io.c: Add configure checks for header files.
3863        * debug-mono-symfile.c: Add configure checks for header files.
3864        * threadpool.c: Add configure checks for header files.
3865        * console-io.c: Add configure checks for header files.
3866        * profiler.c: Add configure checks for header files.
3867        * rawbuffer.c: Add configure checks for header files.
3868        * icall.c: Add configure checks for header files.
3869        * rand.c: Add configure checks for header files.
3870        * socket-io.c: Add configure checks for header files.
3871
3872        Code is contributed under MIT/X11 license.
3873
3874 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
3875
3876         * reflection.c (mono_custom_attrs_from_builders): Remove the 
3877         assertion as it breaks the build.
3878         
3879         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
3880
3881         * reflection.c (lookup_custom_attr): Make a copy here too.
3882
3883         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
3884         dynamic images.
3885
3886         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
3887         images.
3888
3889         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
3890         info.
3891
3892 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
3893
3894         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
3895         (load_cattr_value): Ditto.
3896
3897 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
3898
3899         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
3900
3901 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
3902
3903         * threads.c: In "start_wrapper", set apartment_state to MTA if
3904         apartment_state is Unknown and we're running on 2.0 profile or
3905         higher.
3906         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
3907         to main method, then set apartment_state to Unknown on 1.0 profile,
3908         and MTA on 2.0 profile.
3909
3910 2007-05-16  Jb Evain  <jb@nurv.fr>
3911
3912         * class-internals.h (MonoDefaults): Add an attribute_class and
3913           customattribute_data_class.
3914         * domain.c (mono_init_internal): Populate them.
3915         * reflection.c: Use them to remove duplicates. Make a vew
3916         MonoClass variables `static'.
3917
3918 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
3919
3920         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
3921         step in implementing IMT, so that all isinst checks now can go
3922         through the bitmap.
3923         This was needed because vtables for TransparentProxy need to look
3924         like the vtable of the "target" class, so they need to point to
3925         its interface bitmap directly.
3926
3927         * object.c: inside "mono_class_create_runtime_vtable" and
3928         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
3929
3930 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
3931
3932         * object-internals.h
3933           culture-info.h : added territory field in MonoCulture and
3934           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
3935         * locales.c : fill territory field above too.
3936         * culture-info-table.h : regenerated.
3937
3938 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
3939
3940         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
3941         Fixes #81599.
3942
3943 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
3944
3945         * object.c: Always initialize apartment, even if 
3946         there is no custom attributes on entry point.
3947         
3948         Code is contributed under MIT/X11 license.
3949
3950 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
3951
3952         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
3953         * metadata.c: If no encoding is set, check for unicode
3954         on class.
3955         
3956         Code is contributed under MIT/X11 license.
3957
3958 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
3959
3960         * threads.c: Handle if mono_thread_current returns NULL 
3961         
3962         Code is contributed under MIT/X11 license.
3963
3964 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
3965
3966         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
3967         in start_wrapper. Added mono_thread_init_apartment_state and
3968         mono_thread_cleanup_apartment_state.
3969         * object.c: Initialize thread apartment state on main thread
3970         by checking for STAThreadAttribute on entry point.
3971         * object-internals.h: Add apartment_state field to MonoThread.
3972         * threads-types.h: Add unmanaged definition of 
3973         System.Threading.ApartmentState, MonoThreadApartmentState.
3974         
3975         Code is contributed under MIT/X11 license.
3976         
3977 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
3978
3979         * class.c: Fix windows build.
3980         * class-internals.h: Fix windows build.
3981         
3982         Code is contributed under MIT/X11 license.
3983
3984 2007-05-08  Robert Jordan  <robertj@gmx.net>
3985
3986         * process.c (CreateProcess_internal):
3987         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
3988         .CreateNoWindow was specified. Fixes #81496.
3989
3990 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
3991
3992         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
3993         step in implementing IMT, replaced it with two compact arrays
3994         (interfaces_packed and interface_offsets_packed) and a bitmap that
3995         is used for isinst checks (interface_bitmap).
3996
3997         * class.c: (compare_interface_ids): compare function to pass to
3998         bsearch when looking for an interface with a given id.
3999         (mono_class_interface_offset): reimplemented using bsearch on
4000         interfaces_packed, getting the offset from interface_offsets_packed.
4001         (print_implemented_interfaces): utility debugging function.
4002         (setup_interface_offsets): reworked to initialize interfaces_packed,
4003         interface_offsets_packed and interface_bitmap.
4004
4005         * object.c: replaced all accesses to "MonoClass.interface_offsets"
4006         with uses of interfaces_packed and interface_offsets_packed.
4007
4008 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
4009
4010         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
4011         mono_class_interface_offset prototype to wrap all accesses to
4012         "MonoClass.interface_offsets".
4013
4014         * class.c: Implemented mono_class_interface_offset, and wrapped all
4015         accesses to "MonoClass.interface_offsets".
4016
4017         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
4018         "MonoClass.interface_offsets".
4019
4020 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
4021
4022         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
4023         GetMethodFromHandle overloads (bug #78637).
4024
4025 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
4026
4027         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
4028         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
4029
4030 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
4031
4032         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
4033         #81498.
4034
4035         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
4036         gracefully.
4037         (mono_custom_attrs_from_index): Ditto.
4038
4039         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
4040         Fixes #81501.
4041
4042 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
4043
4044         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
4045         is now allocated from a mempool.
4046
4047 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
4048
4049         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
4050         caller holds threads_lock, leading to deadlocks. Fixes #81476.
4051
4052 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
4053
4054         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
4055         mono_loader_clear_error () too late. Fixes #81463.
4056
4057 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
4058
4059         * culture-info-table.h : regenerated.
4060
4061 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
4062
4063         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
4064         is missing.
4065
4066 2007-04-25  Dick Porter  <dick@ximian.com>
4067
4068         * Makefile.am: Put the mingw enforced-optimisation back into the
4069         PLATFORM_WIN32 section.
4070
4071 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
4072
4073         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
4074         patch.
4075
4076         * image.c (mono_image_load_module): New API function to load a module reference.
4077
4078         * image.c (load_modules): Load modules lazily. Fixes #80812.
4079
4080         * class.c (mono_class_from_typeref): Use mono_image_load_module.
4081         
4082         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
4083
4084         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
4085         to mono_image_load_module_dynamic.
4086
4087 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
4088
4089         * marshal.c: Fix calling convention for CCW on non-windows
4090         platforms. STDCALL on windows, CDECL everywhere else to work 
4091         with XPCOM and MainWin COM.
4092         
4093         Code is contributed under MIT/X11 license.
4094
4095 2007-04-23  Martin Baulig  <martin@ximian.com>
4096
4097         Fix #80969.
4098
4099         * loader.c
4100         (method_from_memberref): Added `gboolean *used_context' argument.
4101         (mono_get_method_from_token): Likewise.
4102         (mono_get_method_full): Don't insert the method in the cache when
4103         `used_context' is true.
4104
4105 2007-04-23  Raja R Harinath  <rharinath@novell.com>
4106
4107         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
4108
4109         * reflection.c (mono_reflection_bind_generic_parameters): Don't
4110         create new MonoTypes for returned types.
4111         * class.c (mono_generic_class_get_class): Export mono-internal.
4112         * class-internals.h: Update to changes.
4113
4114 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
4115
4116         * threadpool.c, threadpool.h, icall-def.h: patch from
4117         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
4118
4119 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
4120
4121         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
4122         
4123         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
4124
4125         * threads.c (mono_thread_get_stack_bounds): New helper function.
4126
4127         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
4128         Correctly compute stack bounds when attaching. Fixes #81394.
4129
4130 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
4131
4132         * reflection.c: fix handling of doubles in custom attributes
4133         for the arm-fpa format (bug #81368).
4134
4135 2007-04-18  Raja R Harinath  <rharinath@novell.com>
4136
4137         * reflection.c (assembly_add_win32_resources): Mildly relax an
4138         bounds check to let the end pointer point just past the end of the
4139         allocated buffer.  (may fix #81384)
4140
4141 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
4142
4143         * culture-info-table.h : regenerated.
4144
4145 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
4146
4147         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
4148         the thread is aborted early.
4149
4150 2007-04-05  Dick Porter  <dick@ximian.com>
4151
4152         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
4153         FindFirstFile()/FindNextFile() to find entries.  This lets the
4154         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
4155         81038.
4156
4157         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
4158         the parameters of
4159         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
4160
4161 2007-04-04  Martin Baulig  <martin@ximian.com>
4162
4163         * debug-helpers.c
4164         (mono_method_desc_full_match): Add support for nested classes.
4165
4166 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
4167
4168         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
4169
4170 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
4171
4172         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
4173         waiting for too many threads.
4174
4175 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4176
4177         * environment.c: Fix return value check on uname so we can get the 
4178         executing version on Solaris operating systems.
4179
4180 2007-03-28  Jb Evain  <jbevain@gmail.com>
4181
4182         * class.c (mono_type_get_name_recurse): Complete the
4183         fix for the creation of assembly qualified names for
4184         pointer types. Fixes #81208.
4185
4186 2007-03-27  Dick Porter  <dick@ximian.com>
4187
4188         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
4189         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
4190         changed.
4191
4192         * threads.c
4193         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
4194         the value of ReleaseMutex().
4195
4196 2007-03-27  Dick Porter  <dick@ximian.com>
4197
4198         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
4199         in little-endian order, not network endian, so must be converted
4200         to host endian here.  Fixes bug 80593.
4201
4202 2007-03-22  Jb Evain  <jbevain@gmail.com>
4203
4204         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
4205         qualified names for pointer types. Fixes #81208.
4206
4207 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
4208
4209         * marshal.c: Add support for PreserveSigAttribute. 
4210         
4211         Code is contributed under MIT/X11 license.
4212
4213 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
4214
4215         * process.c: Fix endianness issues. Fixes #81126.
4216
4217         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
4218         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
4219
4220         * image.c (mono_image_lookup_resource): Make this work on big-endian
4221         machines.Change API contract so the caller needs to free the return value.
4222         
4223         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
4224         API change.
4225         
4226 2007-03-14  Martin Baulig  <martin@ximian.com>
4227
4228         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
4229         mono_type_get_desc() as well.
4230
4231 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
4232
4233         * icall.c:  Fix environ access in VS.  
4234         
4235 2007-03-13  Alp Toker  <alp@atoker.com>
4236
4237         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
4238         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
4239         #63841.
4240
4241 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
4242
4243         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
4244         circular references among dynamic methods. Fixes #81091.
4245
4246         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
4247
4248 2007-03-09  Martin Baulig  <martin@ximian.com>
4249
4250         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
4251
4252 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
4253
4254         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
4255         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
4256         
4257         Code is contributed under MIT/X11 license.
4258         
4259 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
4260
4261         * loader.c: Reapply patch for bug #79424.
4262
4263 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
4264
4265         * metadata.c (mono_type_to_unmanaged): Only convert object to
4266         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
4267
4268 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
4269
4270         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
4271         (and incorrectly set) is_reference field from MonoGenericInst.
4272
4273 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
4274
4275         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
4276         a little earlier.
4277
4278         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
4279
4280         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
4281
4282 2007-03-05  Miguel de Icaza  <miguel@novell.com>
4283
4284         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
4285         FileOptions.1 value to mean "temporary", map that to
4286         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
4287
4288         Fixes 80688
4289
4290 2007-03-03  Marek Habersack  <mhabersack@novell.com>
4291
4292         * appdomain.c: implement MS .Net style shadow copying. Copies of
4293         the assemblies are made in a subdirectory of the dynamic base
4294         directory, the assembly names are preserved.
4295         Copy .mdb and .config files along with the assemblies being shadowed.
4296
4297 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
4298
4299         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
4300         (emit_marshal_handleref): Ditto.
4301
4302         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
4303         on Visual C++. Fixes #80671.
4304
4305 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
4306
4307         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
4308         for clone operations.
4309
4310 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
4311
4312         * marshal.c: Fix warnings.
4313
4314 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
4315
4316         * loader.c: allow case-insensitive matching of the dll name
4317         in dllmap handling when prefixed with "i:".
4318
4319 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
4320
4321         * threads.c: Fix #ifdef for dummy_apc function for VS.
4322
4323 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
4324
4325         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
4326
4327 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
4328         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
4329         giving precedence to the methods with a fully qualified name
4330         (InterfaceName.MethodName) when building the interface sections
4331         of the vtable.
4332
4333 2007-02-16  Dick Porter  <dick@ximian.com>
4334
4335         * threadpool.c (append_job): Fix fast-path array handling, so it's
4336         less likely the array will grow exponentially when the load is
4337         heavy.
4338
4339 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
4340
4341         * metadata-internals.h, loader.c: fix dllmap lookup order
4342         for non-function maps, too, and prepare for fallback code.
4343
4344 2007-02-12  Robert Jordan  <robertj@gmx.net>
4345
4346         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
4347         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
4348         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
4349         GlobalFree. Fixes a part of bug #77075.
4350
4351 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
4352
4353         * loader.c: implemented typedef parent in field memberref.
4354
4355 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
4356
4357         * marshal.c: Fix warnings and remember to call Release on
4358         IUnknown of RCW.
4359         
4360         Code is contributed under MIT/X11 license.
4361
4362 2007-02-10  Miguel de Icaza  <miguel@novell.com>
4363
4364         * class-internals.h: Add MonoHandleRef definition, and
4365         handleref_class to mono_defaults. 
4366
4367         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
4368         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
4369
4370         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
4371         (do nothing on this stage)
4372         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
4373         (emit_marshal_handleref): New method, used for argument handling
4374         of HandleRefs. 
4375
4376 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
4377
4378         * class.c (mono_class_setup_parent): Lazily init com types.
4379         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
4380         init com types.
4381         * object.c (mono_remote_class_vtable): Lazily init com types.
4382         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
4383         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
4384         * domain-internals.h: Expose mono_init_com_types.
4385         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
4386         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
4387         Add support for COM Callable Wrapper marshalling.
4388         * marshal.h: Add icall definitions.
4389         * gc.c: Handle freeing of CCWs in finalizer code.
4390         
4391         Code is contributed under MIT/X11 license.
4392
4393 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
4394
4395         * reflection.c: changed all the signature encoding code to use
4396         a variable-sized buffer.
4397
4398 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
4399
4400         * marshal.c: locking fixes: never take the loader lock
4401         or other runtime locks when holding the marshal lock
4402         (fixes bug#80664).
4403
4404 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
4405
4406         * marshal.c: make the delegate function pointer mapping
4407         work for the moving GC.
4408
4409 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
4410
4411         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
4412         for bug #80618.
4413
4414 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
4415
4416         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
4417         gmodule.
4418
4419 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
4420
4421         * threadpool.c: made the code moving-GC safe.
4422
4423 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
4424
4425         * assembly.c, boehm-gc.c, class-internals.h, class.c,
4426         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
4427         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
4428         warning cleanup.
4429         * reflection.c: warning cleanup, some threading and moving GC fixes.
4430
4431 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
4432
4433         * class.c, loader.c: create the needed Set/Get/Address array methods
4434         as well as the .ctors in mono_class_init (), fixes bug #80567.
4435
4436 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
4437
4438         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
4439         we doesn't decrease its alignment. Should fix the sparc build.
4440
4441 2007-01-24  Dick Porter  <dick@ximian.com>
4442
4443         * socket-io.c
4444         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4445         Create the returned object if we need to ignore an unsupported
4446         socket option.  Fixes a segfault reported by Atsushi.
4447
4448 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
4449
4450         * class.c, object.c: restrict GC-tracked fields to
4451         UIntPtr fields used inside corlib, so we provide better
4452         type info to the GC and also allow broken packing as in
4453         bug #80580.
4454
4455 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
4456
4457         * sgen-gc.c: removed duplicated function.
4458
4459 2007-01-19  Miguel de Icaza  <miguel@novell.com>
4460
4461         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
4462         value that means that the value is not supported, but that we
4463         should not return a failure, but instead report this as a
4464         successful operation.
4465
4466 2007-01-19  Raja R Harinath  <rharinath@novell.com>
4467
4468         Fix tests/bug79956.2.il
4469         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
4470         (mono_generic_class_get_class): If the generic definition in an
4471         enum, copy over other fields related to it.
4472
4473 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
4474
4475         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
4476         genericinst enums (bug #79215).
4477
4478 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
4479         * class.c: Fix bug 80307.
4480
4481 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
4482
4483         * image.c: if the file table is not present, try to load
4484         all the modules, since we don't have info about them
4485         having or not metadata (bug #80517).
4486         * assembly.c: allow mono_assembly_load_references () to
4487         work for netmodules.
4488
4489 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
4490
4491         * image.c, metadata-internals.h, object.c: execute module
4492         cctors when running on the 2 runtime if present (bug #80487).
4493
4494 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
4495
4496         * icall.c: optimized InitializeArray() on bigendian.
4497
4498 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
4499
4500         * icall.c: fix for the broken ARM FPA double format.
4501
4502 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
4503
4504         * icall.c: handle endian issues for r4 and r8 types, too, in
4505         the InitializeArray() icall.
4506
4507 2007-01-15  Miguel de Icaza  <miguel@novell.com>
4508
4509         * loader.c (mono_loader_error_prepare_exception): Clear the error
4510         once we have extracted the information from it, do this before we
4511         call into the JIT's class loading mechanisms.
4512
4513         * object.c (mono_class_create_runtime_vtable): Do not clear the
4514         loader error before calling mono_class_get_exception_for_failure
4515         as the loader error is needed inside
4516         mono_class_get_exception_for_failure to throw the error (thinko).
4517
4518         Fixes #80521
4519         
4520 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
4521
4522         * reflection.c: align fields rva data so it's faster to load at
4523         runtime.
4524
4525 2007-01-12  Raja R Harinath  <rharinath@novell.com>
4526
4527         Prepare to simplify GenericMethod handling.
4528         * class-internals.h (mono_method_get_context): New accessor function.
4529         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
4530         rather than directly accessing '->context' field.
4531
4532         * class-internals.h (_MonoGenericParam.method): Move ...
4533         (_MonoGenericContainer): ... here.  Add into union with klass field.
4534         * class.c, icall.c, loader.c, metadata.c, reflection.c:
4535         Update to changes.
4536
4537 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
4538
4539         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
4540         the wrapper type enum and reduce relocations.
4541
4542 2007-01-12  Raja R Harinath  <rharinath@novell.com>
4543
4544         * reflection.c (inflate_mono_method): Reuse method instantiation
4545         from the generic method, if available.
4546
4547 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
4548
4549         * marshal.c (emit_marshal_variant): Fix conv_arg
4550         type in last commit, based on whether parameter is byref.
4551         
4552 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
4553
4554         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
4555         marshalling.
4556         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
4557         MONO_TYPE_OBJECT back for VARIANT support.
4558
4559 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
4560
4561         * marshal.c, marshal.h, icall-def.h: Implement 
4562         Marshal.ReAllocCoTaskMem.
4563
4564 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
4565
4566         * marshal.c: memory retention fixes: use the proper
4567         image cache for runtime_invoke method lookups.
4568
4569 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
4570
4571         * mempool.c: added code to help debug mempool allocations.
4572
4573 2007-01-11  Dick Porter  <dick@ximian.com>
4574
4575         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
4576         support (experimenting with faking it with IP_MTU_DISCOVER for
4577         systems that don't have IP_DONTFRAGMENT.)
4578         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
4579         icall.
4580
4581         * icall-def.h: new System.Net.Sockets.Disconnect icall.
4582
4583         * socket-io.h: Add new fields to MonoSocketAsyncResult
4584         corresponding to the new ones in Socket.cs.
4585
4586 2007-01-11  Raja R Harinath  <rharinath@novell.com>
4587
4588         Fix IronPython regression mentioned in #80249
4589         * metadata.c (do_mono_metadata_parse_generic_class): Clear
4590         'cached_context' field, since it may have been initialized as a
4591         side-effect of metadata parsing.
4592
4593         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
4594         (_MonoGenericClass.cached_class): Move here and rename from lone
4595         remaining field of ...
4596         (_MonoInflatedGenericClass): ... this.  Remove.
4597         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
4598         to changes.
4599
4600         Fix mcs/tests/test-128.cs regression.
4601         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
4602         2007-01-10 change below.
4603         [MONO_TYPE_OBJECT]: Recurse into array case.
4604
4605 2007-01-11  Raja R Harinath  <harinath@gmail.com>
4606
4607         * class-internals.h (mono_get_inflated_generic_class): Remove.
4608         * class.c (mono_get_inflated_generic_class): Remove.
4609         (mono_generic_class_get_class): Rename from
4610         mono_class_create_generic.
4611         (mono_class_from_mono_type) [GENERICINST]: Use it.
4612         * reflection.c, metadata.c: Update to changes.  Use
4613         'mono_class_from_mono_type'.
4614
4615 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
4616
4617         * reflection.c: use passed type when encoding an array element
4618         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
4619
4620 2007-01-09  Robert Jordan  <robertj@gmx.net>
4621
4622         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
4623         result arguments (someDelegate.EndInvoke (unrelatedAres)).
4624         Fixes bug #80392.
4625
4626 2007-01-09  Raja R Harinath  <rharinath@novell.com>
4627
4628         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
4629
4630         * object.c (set_value): Avoid aliasing between type->data.klass
4631         and type->data.generic_class.
4632
4633         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
4634
4635 2007-01-08  Raja R Harinath  <rharinath@novell.com>
4636
4637         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
4638         between type->data.klass and type->data.generic_class.
4639
4640 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
4641
4642         * marshal.c: In MS.NET, StringBuilder objects are not copied by
4643         value in out parameters.
4644
4645 2007-01-08  Raja R Harinath  <rharinath@novell.com>
4646
4647         Simplify invariant for MonoGenericClass::klass field.
4648         * class.c (mono_class_create_generic): Verify 'klass' is null.
4649         * metadata.c (do_mono_metadata_parse_generic_class): Don't
4650         initialize 'klass' field.
4651
4652 2007-01-05  Raja R Harinath  <rharinath@novell.com>
4653
4654         Ongoing work to avoid redundant data and simplify invariants.
4655         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
4656         'generic_class', and change type to a GenericInst.
4657         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
4658         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
4659
4660 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
4661
4662         * class.c : skip io-layer under PLATFORM_WIN32.
4663
4664 2007-01-03  Tor Lillqvist  <tml@novell.com>
4665
4666         Fix #80305: In a bundled executable, look in the bundled exe
4667         assembly to determine the runtime version. Add the possibility to
4668         bundle also the machine.config file.
4669         
4670         * assembly.c (mono_assembly_open_from_bundle): Make
4671         non-static. Allow being called even if we have no bundled
4672         assemblies, and return NULL right away in that case.
4673
4674         * domain-internals.h: Declare mono_assembly_open_from_bundle()
4675         here.
4676
4677         * domain.c (app_config_parse): Take an assembly exe file name as
4678         parameter instead of a config file name. Check for a bundled
4679         config file for that assembly by calling
4680         mono_config_string_for_assembly_file() (see below) before looking
4681         for one in the file system.
4682         (get_runtimes_from_exe): Corrsponding change to call of
4683         app_config_parse().
4684         (get_runtimes_from_exe): Check for bundled assembly exe file first
4685         by calling mono_assembly_open_from_bundle(). If no bundled
4686         assembly exe file is found, call mono_image_open() as before to
4687         look it up in the file system.
4688
4689         * mono-config.c: Add variable bundled_machinec_onfig.
4690         (mono_config_string_for_assembly_file): New function.
4691         (mono_config_for_assembly): Move code snippet that looks for a
4692         bundled assembly .config file into the above new function. Call
4693         it.
4694         (mono_register_machine_config, mono_get_machine_config): New
4695         functions to set and retrieve
4696
4697         * assembly.h: Declare mono_register_machine_config().
4698
4699         * mono-config.h: Declare mono_get_machine_config() and
4700         mono_config_string_for_assembly_file().
4701
4702         * icall.c: No declaration of environ necessary on Win32. It is
4703         declared (as a macro expanding to a function call) in stdlib.h.
4704         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
4705         New internal mono function. Returns the value of
4706         mono_get_machine_config() as a Mono string.
4707
4708         * icall-def.h: Add get_bundled_machine_config().
4709
4710 2007-01-04  Raja R Harinath  <rharinath@novell.com>
4711
4712         Remove redundant field
4713         * class-internals.h (_MonoGenericContext.container): Remove field.
4714         * loader.c (mono_method_get_signature_full): Don't parse a
4715         "container" for a signature parse when the signature is inflated
4716         immediately.
4717         (method_from_methodspec): Likewise, for a generic_inst.
4718         * class.c, metadata.c, reflection.c: Update to changes.
4719
4720 2006-01-04  Raja R Harinath  <rharinath@novell.com>
4721
4722         * class-internals.h (_MonoGenericClass): Rename 'context' field to
4723         'cached_context', and change semantics -- it starts off NULL, and
4724         is initialized on demand.
4725         * class.c (mono_generic_class_get_context): New accessor to
4726         replace 'context' field accesses.
4727         (mono_class_get_context): New helper.
4728         (*): Update to changes.
4729         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
4730
4731 2007-01-03  Miguel de Icaza  <miguel@novell.com>
4732
4733         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
4734         before the memcpy.   Fixes Marshal2 regression.
4735
4736 2007-01-02  Jb Evain  <jbevain@gmail.com>
4737
4738         * blob.h: add a MONO_TYPE_ENUM definition
4739         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
4740         fix the encoding of arrays of enums in custom attributes.
4741
4742         Fixes #79666.
4743
4744 2007-01-01  Miguel de Icaza  <miguel@novell.com>
4745
4746         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
4747         string is null terminated, but only cut the string short if it
4748         overflows the buffer.   
4749         
4750         (mono_string_to_byvalstr): Also fix this routine.   The code here
4751         was not properly terminating a string (it was only terminated
4752         because of the previous catch-all memset). 
4753
4754         I left the memset, because I do not know if applications expect
4755         the runtime to clear this region. 
4756
4757         Fixes #79944.
4758
4759         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
4760         Clear the error before returning to unmanaged code to prevent the
4761         runtime from being confused later on (fixes  80420).
4762         (ves_icall_type_from_name): Always call mono_loader_clear_error
4763         after parsing a type that could have failed.
4764         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
4765
4766         * loader.c (mono_loader_clear_error): Fix indentation.
4767
4768 2006-12-28  Martin Baulig  <martin@ximian.com>
4769
4770         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
4771
4772 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
4773
4774         * reflection.c: patch from Rolf Bjarne Kvinge to fix
4775         getting a token for an EnumBuilder.
4776
4777 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4778
4779         * reflection.c: be more careful in case resource generation
4780         fails to create the data array.
4781
4782 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
4783
4784         * sgen-gc.c: write barrier for clone and fix unregister handles.
4785
4786 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
4787
4788         * reflection.c: some fixes needed in the generics code for the moving GC.
4789
4790 2006-12-22  Robert Jordan  <robertj@gmx.net>
4791
4792         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
4793         account. Fixes bug #80299.
4794
4795 2006-12-21  Raja R Harinath  <rharinath@novell.com>
4796
4797         Fix WaitHandle usage in delegates.
4798         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
4799         * object.c (mono_wait_handle_new): Use the property set method to
4800         initialize the handle.
4801         (mono_wait_handle_get_handle): New.
4802         * threadpool.c (mono_async_invoke): Use it.
4803         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
4804         Likewise.
4805         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
4806
4807 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
4808
4809         * marshal.c (emit_marshal): Call emit_marshal_variant and
4810         emit_marshal_com_interface when applicable.
4811         (emit_marshal_variant, emit_marshal_com_interface): Add
4812         methods for this case and remove if's from emit_marshal_object.
4813         
4814 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
4815
4816         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
4817
4818 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
4819
4820         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
4821         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
4822         and GlobalFree on Windows. Remove FIXME.
4823
4824 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
4825
4826         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
4827         implementation for managed objects.
4828
4829 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
4830
4831         * object.c: implemented code to be used for checking
4832         that no reference field overlaps with non-references.
4833
4834 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4835
4836         * threadpool.c: fix queue code to be compatible with the
4837         moving GC.
4838
4839 2006-12-18  Miguel de Icaza  <miguel@novell.com>
4840
4841         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
4842         in structures by throwing ArgumentNullException.
4843
4844         (emit_marshal_safehandle): Also when they are null parameters.
4845
4846         (emit_marshal_safehandle): Add support for ref
4847         SafeHandles parameters
4848
4849 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4850
4851         * profiler.c: updated to use the mono-dl API instead of
4852         gmodule.
4853
4854 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4855
4856         * profiler.c: updated to use the mono-dl dynamic loading
4857         API instead of gmodule.
4858
4859 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
4860
4861         * profiler.c: use readlink, older versions of glib don't have
4862         g_file_read_link ().
4863
4864 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4865
4866         * profiler.c: try to detect the path to mono if libc fails to provide
4867         a useful name (bug #80286).
4868
4869 2006-12-16  Raja R Harinath  <rharinath@novell.com>
4870
4871         Fix #80242
4872         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
4873         instance, use the generic type definition instead.
4874         (ves_icall_Type_GetNestedTypes): Likewise.
4875         * class.c (mono_class_create_generic): Always set the
4876         nested_classes of a generic instance to NULL, even if the generic
4877         type definition has nested types.
4878
4879 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
4880
4881         * marshal.c (mono_string_from_bstr): Revert previous Windows change
4882         and fix on Linux.
4883         
4884 2006-12-15  Miguel de Icaza  <miguel@novell.com>
4885
4886         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
4887         my arguments were in the wrong order.   I also fixed the Windows
4888         version which seems to have had the same issue.
4889
4890         (mono_free_bstr): On Unix, this is g_free.
4891         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
4892         conversions (for the tests in corlib to pass).
4893
4894 2006-12-14  Miguel de Icaza  <miguel@novell.com>
4895
4896         * marshal.c (emit_ptr_to_object_conv): For now, ignore
4897         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
4898         exception if a ref SafeHandle in a struct has changed).
4899         
4900         (emit_struct_conv): Do not perform layout checks for classes
4901         derived from SafeHandle, as those are specially handled. 
4902
4903         (emit_object_to_ptr_conv): Add support for
4904         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
4905
4906         (emit_marshal_safehandle): Implement conversion of return values
4907         of safehandles (MARSHAL_ACTION_CONV_RESULT).
4908         
4909         * threads.c: WaitHandle now is compiled with two different handles
4910         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
4911         for 2.0.
4912         
4913         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
4914         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
4915         these routines to cope with both kinds of fields.
4916
4917 2006-12-12  Miguel de Icaza  <miguel@novell.com>
4918
4919         * metadata.c (mono_type_to_unmanaged): Handle the case where
4920         type->data.klass is a SafeHandle, and in that case, return the
4921         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
4922         MONO_MARSHAL_CONV_SAFEHANDLE. 
4923
4924 2006-12-11  Miguel de Icaza  <miguel@novell.com>
4925
4926         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
4927         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
4928         calling emit_marshal_object.
4929
4930         (emit_marshal_safehandle): Implement marshalling of
4931         SafeHandle parameters (no ref support yet).
4932
4933         (MarshalAction): Document the defines as I implement
4934         them for SafeHandle.
4935
4936         (emit_marshal_object): indentation police.
4937
4938         * class-internals.h: Define MonoSafeHandle.
4939         Add safehandle_class to MonoDefaults type.
4940
4941         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
4942         list of classes to check for fields. 
4943
4944         * domain.c (mono_init_internal): Add SafeHandle to the list of
4945         mono_defaults loaded.
4946
4947 2006-12-15  Raja R Harinath  <rharinath@novell.com>
4948
4949         Fix #80253
4950         * reflection.c (mono_reflection_bind_generic_parameters): If the
4951         generic type definition is a type builder, ensure that it is fully
4952         initialized before instantiating it.  Kill some dead code.
4953
4954 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
4955
4956         * object.c: clear the loader_error () before loading
4957         more metadata stuff (bug #80258).
4958
4959 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
4960
4961         * icall.c, icall-defs.h: type modifiers icalls for
4962         parameters and properties.
4963
4964 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
4965
4966         * object.c, icall.c: fixed warnings.
4967
4968 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
4969
4970         * marshal.c: fixed a couple of leaks and coding style in a few places.
4971
4972 2006-12-08  Dick Porter  <dick@ximian.com>
4973
4974         * process.c: Cope with NULL ProcessStartInfo arguments on windows
4975         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
4976         80173.
4977
4978 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4979
4980         * process.c: ProcessStartInfo may have only filename set and
4981         arguments can be NULL.
4982
4983 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4984
4985         * icall.c: fix leak found by Robert Jordan.
4986
4987 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
4988
4989         * marshal.c, marshal.h: generate managed method to access an element
4990         of a multi-dimensional array.
4991
4992 2006-11-30  Paolo Molaro (lupus@ximian.com)
4993
4994         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
4995
4996 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4997
4998         * icall.c: back out GetFields () fix until the serialization code is
4999         fixed to not depend on the incorrect behaviour.
5000
5001 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
5002
5003         * profiler.c: provide defaults if none are set.
5004
5005 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
5006
5007         * Makefile.am, attrdefs.h: new public header file with
5008         constants for attributes for use by embedders.
5009
5010 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
5011
5012         * icall.c: GetFields () fix for bug #80064.
5013
5014 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
5015
5016         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
5017         removed long unused icalls.
5018
5019 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
5020   
5021         * marshal.c: 
5022                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
5023                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
5024                 can be generated without a delegate class.
5025                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
5026         
5027         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
5028
5029 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5030
5031         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
5032         #80069.
5033
5034 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5035
5036         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
5037         icall-def.h: added icalls needed by System.GC.
5038
5039 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
5040
5041         * loader.c: ensure the class in catch clauses is handled
5042         correctly for generics methods (fixes bug#79980).
5043
5044 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
5045
5046         * monitor.h, monitor.c: added mono_locks_dump () function
5047         to help debug deadlocks involving managed locks.
5048
5049 2006-11-13  Dick Porter  <dick@ximian.com>
5050
5051         * file-io.c (get_file_attributes): If the file is a symlink try
5052         and get the stat data for the target, but also add the
5053         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
5054         the specs for the windows symlink support, but will probably have
5055         to be reworked when I have test data from a vista machine.  Fixes
5056         bug 79887.
5057
5058 2006-11-13  Dick Porter  <dick@ximian.com>
5059
5060         * gc.c (mono_domain_finalize): 
5061         * marshal.c (mono_delegate_begin_invoke): 
5062         * threadpool.c (socket_io_init, mono_thread_pool_init)
5063         (mono_thread_pool_finish): 
5064         * monitor.c (mono_monitor_try_enter_internal): 
5065         * threads.c (mono_thread_resume, mono_thread_init)
5066         (mono_thread_suspend_all_other_threads)
5067         (mono_thread_execute_interruption): 
5068         * appdomain.c (mono_domain_unload): Check for NULL error returns
5069         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
5070         75733.
5071
5072 2006-11-11  Miguel de Icaza  <miguel@novell.com>
5073
5074         * process.c
5075         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
5076         Only close the handle if the value of the handle is not
5077         INVALID_HANDLE_VALUE.  This just makes the process a bit more
5078         robust.
5079
5080         Improvement for #75733, so that we do not run into this problem. 
5081
5082         
5083         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
5084         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
5085         internal variables.  Fixes #79462 
5086         
5087
5088 2006-11-09  Dick Porter  <dick@ximian.com>
5089
5090         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
5091         Use poll() not select().  Fixes bug 79397.
5092
5093 2006-11-09  Raja R Harinath  <rharinath@novell.com>
5094
5095         Fix #79872
5096         * assembly.c (mono_assembly_load_from_full): Check that the given
5097         image has an assembly manifest.
5098
5099 2006-11-09  Ankit Jain  <jankit@novell.com>
5100
5101         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
5102         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
5103         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
5104
5105 2006-11-07  Dick Porter  <dick@ximian.com>
5106
5107         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
5108         Put the old resolver behaviour back for pre-2.0 profiles.
5109
5110 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
5111
5112         * threadpool.c: precise GC and locking fixes.
5113
5114 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
5115
5116         * class.c: don't load types that have an explicit unaligned
5117         managed reference. Provide better info in the TypeLoad exception.
5118         Part of the fix for bug #79744.
5119         * object.c: use the correct check for class type load issues.
5120
5121 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5122
5123         * class.c: enforce alignment of fields with managed references
5124         even when Pack=1 is forced by the user (bug #77788).
5125
5126 2006-11-03  Dick Porter  <dick@ximian.com>
5127
5128         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
5129         If the address reverse lookup fails, return it as the hostname
5130         anyway.  Fixes bug 79721.
5131
5132 2006-11-03  Dick Porter  <dick@ximian.com>
5133
5134         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
5135         Fix build on Windows.
5136
5137 2006-11-02  Dick Porter  <dick@ximian.com>
5138
5139         * icall-def.h: 
5140         * object-internals.h: 
5141         * exception.c (mono_get_exception_thread_interrupted): 
5142         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
5143         Fixes bug 74525.
5144
5145         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
5146         Check for pending Thread.Interrupt.
5147
5148 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
5149         * loader.c: Fixed bug 79684.
5150
5151 2006-10-27  Dick Porter  <dick@ximian.com>
5152
5153         * file-io.c (get_file_attributes): Force symlinks to directories
5154         to be returned as a regular file.  Fixes bug 79733.
5155 2006-10-26  Dick Porter  <dick@ximian.com>
5156
5157         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
5158         CreateFile to open a directory then we need to set the
5159         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
5160
5161 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
5162
5163         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
5164         friends.
5165
5166 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5167
5168         * sgengc.c: small cleanup of timer code.
5169
5170 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
5171
5172         * sgen-gc.c: fix some warnings and start adding support for
5173         complete object removal on domain unload.
5174
5175 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
5176
5177         * assembly.c: build_assembly_name should not consider a version
5178         number without build or revision number invalid. Fixes bug #79715.
5179
5180 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
5181
5182         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
5183         call kernel32 function OutputDebugString directly.
5184         
5185         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
5186         
5187 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
5188
5189         * reflection.c: small cleanup, using a function to insert a MonoString
5190         in the string heap.
5191
5192 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
5193
5194         * reflection.c: moving GC fixes.
5195
5196 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
5197
5198         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
5199         all the objects with finalizers belonging to an unloading appdomain.
5200
5201 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
5202
5203         * sgen-gc.c: added ability to allocate even when the nursery is fully
5204         pinned and fixed a couple of bugs.
5205
5206 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
5207
5208         * threads.h: Revert the last change for now.
5209
5210         * threads.h (mono_thread_get_pending_exception): Rename this to
5211         mono_thread_get_undeniable_exception ().
5212
5213 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
5214
5215         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
5216         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
5217         when fname does not refer to valid assembly. This result in a more
5218         meaningful error message.
5219         * exception.c: added mono_get_exception_bad_image_format2 which 
5220         constructs a BadImageFormatException using the ctor taking a custom
5221         message and the file name. Passing in a NULL msg results in a default
5222         message.
5223         * exception.h: define mono_get_exception_bad_image_format2 function.
5224         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
5225         when file name pointed to an invalid IL image. Use 
5226         mono_get_exception_file_not_found2 to construct FileNotFoundException,
5227         as this results in a more meaningful error message.
5228
5229 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
5230
5231         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
5232         #79465.
5233
5234 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
5235
5236         * metadata.c (mono_type_size): Change the align parameter to guint32 for
5237         consistency with the other _size functions.
5238         (mono_type_stack_size): Ditto.
5239
5240         * class.c object.c icall.c: Fix warnings caused by the above change.
5241
5242         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
5243
5244         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
5245
5246         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
5247
5248 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
5249
5250         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
5251         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
5252         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
5253         threadpool.h, threads-types.h: mark more internal functions.
5254
5255 2006-10-11  Dick Porter  <dick@ximian.com>
5256
5257         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
5258         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
5259         reproduce the bug even before applying the fix.)
5260
5261 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
5262
5263         * reflection.c: allow retrieving attributes for arguments in generic
5264         methods (bug #79241).
5265
5266 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
5267
5268         * debug-mono-symfile.c: properly check fopen () result (found by
5269         coverity).
5270
5271 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
5272
5273         * reflection.c: make error message clearer and fixed two
5274         issuelets found by Coverity.
5275
5276 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
5277
5278         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
5279
5280 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
5281
5282         * object-internals.h, gc-internal.h, profiler-private.h:
5283         mark internal functions.
5284
5285 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
5286
5287         * reflection.c: put data in the text section.
5288         * icall.c: recognize more types in type_from_typename ().
5289         * process.c, marshal.c: added some GC FIXMEs.
5290
5291 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
5292
5293         * loader.c: check for NULL before initializing.
5294
5295 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
5296
5297         * gc.c (finalizer_thread): Use a non-alertable wait here.
5298
5299         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
5300         until the correct solution is found.
5301
5302 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
5303
5304         * reflection.c (mono_module_get_object): Avoid an assert when operating on
5305         modules with no metadata. Fixes #79596.
5306
5307         * image.c (load_metadata_ptrs): Put back the error message when
5308         the #- heap is encountered since the support is not complete yet.
5309
5310 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
5311
5312         * gc.c: do not allow the user to SuppressFinalize () a
5313         delegate because it would leak the trampoline if present.
5314
5315 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
5316
5317         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
5318         PropertyPtr table.
5319
5320 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
5321
5322         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
5323
5324         * metadata.c (mono_metadata_get_param_attrs): Ditto.
5325
5326         * row-indexes.h: Add definitions for *Ptr tables.
5327
5328         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
5329
5330         * metadata.c (mono_metadata_translate_token_index): New helper function to
5331         translate table indexes used in uncompressed metadata.
5332         (mono_metadata_decode_table_row): Ditto.
5333         (mono_metadata_decode_table_row_col): Ditto.
5334
5335         * metadata.c: Add table schema for *Ptr tables.
5336
5337         * class.c loader.c: Use the new helper function to access the affected metadata
5338         tables.
5339         
5340         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
5341         #38532.
5342         
5343 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
5344
5345         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
5346         sequences which can be unbounded in size. Fixes #79583.
5347
5348 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
5349
5350         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
5351         static initialization.
5352
5353         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
5354
5355         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
5356
5357         * domain.c (mono_domain_free): Free up type_init_exception_hash.
5358
5359         * object.c (mono_runtime_class_init): Implement correct semantics when a static
5360         ctor fails, i.e. throw the same exception on subsequent accesses.
5361         
5362 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
5363
5364         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
5365         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
5366         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
5367         Handle marshalling of interfaces and VARIANTs contained in structs.
5368         
5369         Code is contributed under MIT/X11 license.
5370         
5371 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
5372
5373         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
5374         
5375         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
5376         mempool.
5377
5378 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5379
5380         * console-io.c: ignore previous SIGINT handler.
5381
5382 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
5383
5384         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
5385         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
5386         #79460, #79461, #79485.
5387
5388         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
5389
5390         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
5391         #79217.
5392
5393 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
5394
5395         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
5396         could be generated from it.
5397
5398 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
5399
5400         * rand.c: fix read loop to correctly handle EINTR.
5401
5402 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5403
5404         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
5405         internal calls are defined to keep methods closer to the declaring
5406         type and allow a significant reduction in runtime relocations and
5407         memory usage.
5408
5409 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
5410
5411         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
5412         exception message to have FileNotFoundException use the default
5413         assembly load error message. Fixes bug #79426.
5414         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
5415
5416 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5417
5418         * threadpool.c: (start_thread_or_queue) use the root domain when
5419         creating the thread instead of the async object one.
5420
5421 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
5422
5423         * class.c, object.c, class-internals.h, reflection.c:
5424         for arrays, store element_size inside MonoClass (speedup
5425         for array object creation).
5426
5427 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
5428
5429         * icall.c: fixed CodeBase to use the file name and not the module
5430         name (bug #79365).
5431
5432 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
5433
5434         * mono-debug.c, mono-debug.h: export find_method as
5435         mono_debug_find_method ().
5436
5437 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5438
5439         * debug-helpers.c, class-internals.h: added a few functions useful
5440         when debugging under gdb.
5441
5442 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5443
5444         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
5445         characters that need special handling.
5446
5447 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
5448
5449         * mono-config.c: make the os/cpu specification more flexible,
5450         allowing lists and negation.
5451
5452 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
5453
5454         * marshal.c: COM Interop fixes. Handle case where method->klass.
5455         is interface. Handle BSTR/MonoString when null. Use CDECL as 
5456         calling convention on non-windows platforms. This is for
5457         compatibility with XPCOM and MainWin COM.
5458         
5459         Code is contributed under MIT/X11 license.
5460         
5461
5462 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
5463
5464         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
5465         correctly. Fixes #79217.
5466
5467         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
5468
5469 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
5470
5471         * mono-config.c: allow both an os and cpu attribute for dllmap
5472         and dllentry elemnets to enable a single config file to be used
5473         for multiple architectures.
5474
5475 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
5476
5477         * loader.c: MonoLoaderError was cleared too soon on load failure.
5478         Fixes bug #79424.
5479
5480 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
5481
5482         * icall.c: use the defining class vtable when accessing a
5483         static field, not a pobblibly derived class.
5484
5485 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
5486
5487         * icall.c string-icalls.c: Remove references to unicode.h.
5488
5489         * unicode.h unicode.c Makefile.am: Remove these unused source files.
5490
5491         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
5492
5493         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
5494         indicating the image where custom marshaller types should be looked up.
5495         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
5496         custom marshallers, instead of corlib. Fixes #79425.
5497
5498 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
5499
5500         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
5501
5502 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
5503
5504         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
5505         Implement Environment.ProcessorCount.
5506         
5507         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
5508         Implement Environment.ProcessorCount.
5509         
5510         * icall.c: 
5511         Add Environment.ProcessorCount icall.
5512         
5513         Patch by Jason McFall.
5514
5515 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5516
5517         * assembly.c: don't append .exe/.dll when the filename already contains
5518         one of those extensions.
5519
5520 2006-09-12  Martin Baulig  <martin@ximian.com>
5521
5522         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
5523         to array interfaces.
5524
5525 2006-09-11  Martin Baulig  <martin@ximian.com>
5526
5527         * reflection.c (mono_image_build_metadata): Create the
5528         MethodImpl's after emitting all types and methods, so we don't
5529         need another fixup pass for them.
5530
5531 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
5532
5533         * class.c (mono_class_from_name_case): Fix regression introduced by the last
5534         change.
5535
5536 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
5537
5538         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
5539         unload.
5540
5541 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
5542
5543         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
5544         args is not set. Fixes #78926.
5545
5546 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
5547
5548         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
5549
5550         * image.c (load_class_names): Move this to class.c, and rename it to 
5551         'mono_image_init_name_cache'.
5552         (load_modules): Fix a warning.
5553
5554         * class.c icall.c image.c: Initialize image->name_cache lazily.
5555
5556         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
5557         on its name using information in the AOT file.
5558
5559         * class.c (mono_class_from_name): Use the new hook function.
5560
5561 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
5562
5563         * reflection.c (mono_param_get_objects): Handle enum default parameter values
5564         correctly.
5565
5566         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
5567         Fixes #79289.
5568         
5569 2006-09-06  Martin Baulig  <martin@ximian.com>
5570
5571         * icall.c (mono_lookup_internal_call): Small fix.
5572
5573 2006-09-05  Raja R Harinath  <rharinath@novell.com>
5574
5575         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
5576         double g_free.
5577
5578 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
5579
5580         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
5581         when --debug is specified.
5582
5583 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
5584
5585         * class.c (setup_generic_array_ifaces): Fix a warning.
5586
5587 2006-09-04  Miguel de Icaza  <miguel@novell.com>
5588
5589         * Temporarily remove the patch to assemly.c that checks the
5590         assembly versions as it breaks our gacutil.
5591
5592 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
5593
5594         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
5595
5596         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
5597         a net 1.0 runtime.
5598
5599         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
5600         created using the default ctor. Fixes #79152.
5601         (mono_string_builder_to_utf16): Ditto.
5602
5603 2006-09-01  Martin Baulig  <martin@ximian.com>
5604
5605         Fix handling of the generic array interfaces.
5606
5607         * class-internals.h
5608         (MonoDefaults): Removed `generic_array_class' and added
5609         `generic_ilist' class.
5610
5611         * class.c
5612         (mono_bounded_array_class_get): Add the new generic array interfaces.
5613         (setup_generic_array_ifaces): New static method; create vtable
5614         entries for each method in the generic array interfaces.
5615
5616         * metadata.c
5617         (select_container): Allow "parent-less" generic methods.
5618
5619         * marshal.c
5620         (mono_marshal_get_generic_array_helper): New public method.
5621
5622         * icall.c
5623         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
5624         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
5625         moved the interncall into System.Array.
5626
5627 2006-09-01  Raja R Harinath  <rharinath@novell.com>
5628
5629         A few more cases of avoiding work on types with ->byref set.
5630         Has the real fix for #79238
5631         * icall.c (is_generic_parameter): New helper.
5632         (ves_icall_Type_GetGenericParameterPosition): Use it.
5633         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
5634         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
5635         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
5636         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
5637         reference types.
5638         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
5639         reference types.
5640         (ves_icall_Type_get_IsGenericInstance): Likewise.
5641         (ves_icall_Type_get_IsGenericType): Likewise.
5642
5643 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
5644
5645         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
5646         class if possible.
5647
5648         * mempool.h (mono_mempool_get_allocated): New helper function.
5649
5650         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
5651         change.
5652
5653         * mempool.c: Fix warnings and the calculation of stats.
5654
5655         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
5656
5657         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
5658
5659         * loader.c (mono_get_method_from_token): Update method_count stat.
5660
5661         * class-internals.h (MonoStats): Add some stats.
5662
5663 2006-08-31 Robert Jordan  <robertj@gmx.net>
5664
5665         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
5666         with managed variants.
5667         All code is contributed under the MIT/X11 license.
5668         
5669 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
5670
5671         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
5672         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
5673
5674         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
5675
5676         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
5677         with cycles in classes.
5678
5679         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
5680
5681         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
5682         missing a [MarshalAs] directive. Fixes #79203.
5683
5684         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
5685         klass->marshal_info. Fixes #79217.
5686
5687 2006-08-30  Martin Baulig  <martin@ximian.com>
5688
5689         Committing a patch from Joachim Ante <joe@otee.dk>:
5690         Add support for binary data symbol stores.
5691
5692         * debug-mono-symfile.c
5693         (mono_debug_open_mono_symbol_file): Renamed into
5694         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
5695         arguments.
5696
5697         * mono-debug.c
5698         (mono_debug_open_image): Added `raw_contents' and `size' args.
5699         (mono_debug_init_2_memory): New public function.
5700
5701 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
5702
5703         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
5704
5705 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5706
5707         * appdomain.c: implement support for ShadowCopyFiles.
5708
5709 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
5710
5711         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
5712         when value is NULL (and should remove CID #51).
5713
5714 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5715
5716         * image.c: moved 2 functions to ../utils.
5717
5718 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
5719
5720         * gc.c: cope with the target object of a GC handle being NULL
5721         (bug #78877).
5722
5723 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
5724
5725         * class.c: recursively check parent's explicit implementations
5726         of interface methods (fixes bug #79125).
5727
5728 2006-08-19  Miguel de Icaza  <miguel@novell.com>
5729
5730         * filewatcher.c: Avoid warnings when building, do not redefine
5731         constants that are defined.
5732
5733         Remove warnings.
5734
5735 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5736
5737         * image.c: don't fail when the link points to an absolute path.
5738
5739 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
5740
5741         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
5742         Fix CID #3.
5743
5744 2006-08-17  Miguel de Icaza  <miguel@novell.com>
5745
5746         * image.c (full_path): A new method used to obtain the actual path
5747         of an assembly even in the presence of symbolic links.  
5748
5749         This is necessary for the case where we are running a binary that
5750         has been GACed, but we are using the "published" path name
5751         ($prefix/mono/1.0/blah.exe) which happens to point to the real
5752         file in the GAC.
5753
5754         This was the source of the failure for the `xsp' command with the
5755         recent AppDomain changes, as far as the runtime was concerned,
5756         there were two different assemblies: $prefix/mono/1.0/blah.exe and
5757         $prefix/mono/gac/blah/version/blah.exe.
5758
5759         (do_mono_image_open): use full path
5760
5761 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
5762
5763         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
5764
5765 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
5766
5767         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
5768         domain_id is supplied. Fix CID #241 and corlib's unit tests.
5769
5770 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
5771
5772         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
5773         small structures. Fixes #78990.
5774
5775 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
5776
5777         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
5778
5779         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
5780
5781 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5782
5783         * appdomain.c:
5784         * marshal.c: don't load all the assemblies from a domain into newly
5785         created ones. The new domains might have different rules and load
5786         assemblies from different locations. Fixes bug #76757.
5787
5788         Patch by Lluis. Conflicts resolved by Brian Crowell.
5789
5790 2006-08-16  Alp Toker  <alp@atoker.com>
5791
5792         * socket-io.c: First half of the fix for #79084.
5793         Set sa_size to the length of the content, not that of the struct.
5794         Don't add NULL suffix to the content, this should be done in
5795         managed code if needed.
5796
5797 2006-08-14  Raja R Harinath  <rharinath@novell.com>
5798
5799         Fix part of #79012
5800         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
5801         mono_metadata_parse_type returns NULL.
5802
5803 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
5804
5805         * normalization-tables.h : new file for string normalization data.
5806         * locales.c, locales.h, icall.c :
5807           added load_normalization_resource() for string normalization,
5808           and icall as well.
5809         * Makefile.am : added normalization-tables.h to the sources.
5810
5811 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
5812
5813         * marshal.c: Add more helper functions to reduce code duplication and use them
5814         everywhere.
5815
5816 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
5817
5818         * marshal.c: Fix non-x86 stdcall warnings.
5819         
5820         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
5821         them everywhere.
5822
5823 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
5824
5825         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
5826         type check on multi-dimensional arrays. Fixes #79000.
5827
5828 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
5829
5830         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
5831         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
5832         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
5833         * class-internals.h: add is_com_object to class structure.
5834         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
5835         null checks to COM object marshalling. Fix .ctor call on RCW.
5836         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
5837         
5838         All code is contributed under the MIT/X11 license.
5839
5840 2006-08-09  Dick Porter  <dick@ximian.com>
5841
5842         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
5843         racing mono_monitor_allocator_lock() somewhere, so don't delete
5844         the critical section for now.  Found by running and exiting
5845         monodevelop.
5846
5847 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
5848
5849         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
5850         (ves_icall_System_ComObject_FindInterface): Ditto.
5851         (ves_icall_System_ComObject_CacheInterface): Ditto.
5852
5853         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
5854         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
5855
5856 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5857
5858         * threadpool.c: treat pipes from process asynchronous reads as sockets
5859         when reading from them, so we get select/poll or epoll to wait for
5860         data.
5861
5862 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
5863
5864         * loader.c: Fix a typo (CID #233) in the null check.
5865
5866 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
5867
5868         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
5869         Hopefully fixes #78949.
5870         
5871         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
5872         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
5873         bytes. Fixes #78972.
5874
5875 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5876
5877         * filewatcher.c: we need to set errno here.
5878
5879 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5880
5881         * filewatcher.c: let Win32Exception get the error value.
5882
5883 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5884
5885         * filewatcher.c: translate errno into win32 errors for Win32Exception
5886         to know what happened.
5887
5888 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
5889
5890         * threadpool.c: Fix more warnings.
5891
5892         * assembly.c (search_loaded): Fix warnings.
5893
5894         * threadpool.c (mono_thread_pool_finish): Fix warnings.
5895         (mono_async_invoke): Ditto.
5896
5897 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
5898
5899         * object.c (mono_remote_class_vtable): Need to create proxy vtable
5900         entries for __ComObject type in addition to ComImport types.
5901         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
5902         about hash table.
5903         
5904         All code is contributed under the MIT/X11 license.
5905
5906 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
5907
5908         * image.c: avoid tentative loading of modulerefs that contain
5909         no metadata (P/Invoke library names).
5910
5911 2006-07-28  Dick Porter  <dick@ximian.com>
5912
5913         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
5914         mono_loader_lock() somewhere, so don't delete the critical section
5915         for now.  Found by running and exiting monodevelop.
5916
5917 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5918
5919         * filewatcher.c: define the inotify syscalls when we're building on
5920         linux and have sys/syscall.h. The build system might not have support
5921         for inotify but the target system might have it.
5922
5923 2006-07-26  Miguel de Icaza  <miguel@novell.com>
5924
5925         * domain.c: Documentation updates.
5926
5927         * loader.c (mono_free_method): Do not release the method
5928         information if we are being profiled, as profilers will use this
5929         information at shut down to present some data to the user.
5930
5931         This is needed so that the profiler does not crash, as the
5932         profiler tends to keep MonoMethods around, and they might become
5933         invalid if we free these.
5934
5935         (mono_get_method_constrained): Return the original CIL stream
5936         method as well, so verification can be performed against it.
5937
5938 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5939
5940         * filewatcher.[ch]: support for inotify file system watcher.
5941         * icall.c: add new internal calls for the inotify file system watcher.
5942
5943 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5944
5945         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
5946         #78888.
5947
5948 2006-07-20  Dick Porter  <dick@ximian.com>
5949
5950         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
5951         warning.
5952
5953 2006-07-20  Dick Porter  <dick@ximian.com>
5954
5955         * threads.c (start_wrapper): Do the thread cleanup while we still
5956         hold a reference to its object.  Fixes bug 78123.
5957
5958 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
5959
5960         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
5961         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
5962           "managed-to-managed".
5963         * icall.c: Redirect string constructors that take sbyte* to
5964           ves_icall_System_String_ctor_RedirectToCreateString.
5965         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
5966           to CreateString () methods with matching signature.
5967         * reflection.c: Use original security informations for
5968           MONO_WRAPPER_MANAGED_TO_MANAGED.
5969         * security-manager.c: Use original security informations for
5970           MONO_WRAPPER_MANAGED_TO_MANAGED.
5971         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
5972           that is a placeholder and only its address should be used.
5973         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
5974           that is a placeholder and only its address should be used.
5975
5976 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
5977
5978         Begin implementing COM Interop.
5979         * appdomain.c: Increment corlib version.
5980         * class.c: Set ComImport classes' parent to __ComObject.
5981         * loader.c: Mark cominterop methods as such.
5982         * domain.c: Add __ComObject class to MonoDefaults structure.
5983         * image.c: Add 2 hashtables to the image for COM Interop related methods
5984         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
5985         using the mempool allocator
5986         
5987         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
5988         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
5989         declaration for mono_metadata_type_dup_mp.
5990         
5991         * debug-helpers.c: Added strings for two additional wrapper types
5992         * object.c: Create proxy objects for ComImport classes
5993         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
5994         and added __ComObject class to MonoDefaults structure.
5995         
5996         * object-internals.h: Finish MonoRealProxy definition, and add definition of
5997         MonoComInteropProxy and MonoComObject.
5998         
5999         * marshal.c: Added support for COM Interop
6000         (signature_cominterop): Converts managed signature to corresponding
6001         unmanaged COM signature.
6002         (cominterop_get_function_pointer): gets unmanaged function pointer via
6003         COM object vtable
6004         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
6005         (cominterop_get_method_interface): returns interface type that method is defined on
6006         (mono_mb_emit_cominterop_call): emits native call to function pointer
6007         gotten from vtable
6008         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
6009         that matches signature of unmanaged function.
6010         (cominterop_get_native_wrapper): wrapper around adjusted method call.
6011         (cominterop_get_invoke): forwards call from proxy to __ComObject
6012         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
6013         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
6014         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
6015         
6016         * marshal.h: Added Marshal icall declarations.
6017         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
6018         so we can access them in finalizer
6019         
6020 2006-07-14  Dick Porter  <dick@ximian.com>
6021
6022         * object.c (mono_type_initialization_cleanup): Fix a race
6023         condition by temporarily commenting out the critical section
6024         deletion.
6025
6026 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
6027
6028         * reflection.c (create_custom_attr): Fix some warnings.
6029         (create_custom_attr_data): Ditto.
6030         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
6031         types. Fixes #78855.
6032
6033 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
6034
6035         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
6036
6037         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
6038
6039 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
6040
6041         * reflection.c (resolve_object): Add support for DynamicMethod.
6042
6043         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
6044         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
6045
6046 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
6047
6048         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
6049         don't leak GPtrArray's pdata has we have no use (nor free) for it.
6050
6051 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
6052
6053         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
6054         Fixes #77888.
6055
6056 2006-06-30  Raja R Harinath  <rharinath@novell.com>
6057
6058         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
6059         slightly: remove a shadow local variable.
6060
6061 2006-06-29  Raja R Harinath  <rharinath@novell.com>
6062
6063         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
6064         definition that introduces the virtual function slot.
6065         Also fix Coverity #105.
6066
6067 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
6068
6069         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
6070         for dynamic assemblies. Fixes #78724.
6071
6072 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
6073
6074         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
6075         Fixes #78722.
6076
6077 2006-06-21  Martin Baulig  <martin@ximian.com>
6078
6079         * reflection.c
6080         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
6081         fixes #76484.
6082
6083 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
6084
6085         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
6086
6087 2006-06-20  Raja R Harinath  <rharinath@novell.com>
6088
6089         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
6090         nor TYPEREFs.
6091         * class.c (mono_class_create_from_typespec): Add 'context' argument.
6092         Inflate result if necessary.
6093         (mono_class_get_full): Remove old version.  Rename from
6094         'mono_class_get' and add 'context' argument.  Pass it to
6095         ..._create_from_typespec.
6096         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
6097         (mono_ldtoken): Revert change below.
6098
6099 2006-06-20  Martin Baulig  <martin@ximian.com>
6100
6101         * class.c (mono_ldtoken): Don't pass the generic context to
6102         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
6103
6104 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
6105
6106         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
6107         and later freeing it. Fixes #78638.
6108
6109 2006-06-15  Miguel de Icaza  <miguel@novell.com>
6110
6111         * icall.c (mono_class_get_throw): Revert over-zealous error
6112         throwing, the caller for mono_class_get_throw will cope with
6113         errors when classes are not properly initialized already.
6114
6115         The code still copes with loader exceptions though.
6116
6117         Fixes the regression in reftype1 and reftype3 from the CAS tests.
6118         
6119 2006-06-14  Miguel de Icaza  <miguel@novell.com>
6120
6121         Fixes the `make run1' version of RuntimeAbort (to be commited,
6122         source is in Bugzilla).
6123         
6124         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
6125         FALSE on class loading failure instead of returning true.
6126
6127         * class.c (mono_class_create_from_typedef): It is possible for
6128         mono_metadata_interfaces_from_typedef_full to fail if a class is
6129         not found, cope with this.
6130         
6131
6132 2006-06-14  Dick Porter  <dick@ximian.com>
6133
6134         * socket-io.c: 
6135         * process.c: Fix a bunch of signed/unsigned warnings from gcc
6136         4.1.1
6137
6138 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
6139
6140         * culture-info-table.h : oops, forgot to make it nsync with r61548.
6141
6142 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
6143
6144         * icall.c: Another fix for building mono in Visual Studio.
6145
6146 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
6147
6148         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
6149         
6150 2006-06-09  Martin Baulig  <martin@ximian.com>
6151
6152         * debug-mono-symfile.c: Put this back and really fix it this
6153         time. Sorry for all the trouble.
6154
6155 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
6156
6157         * icall.c (mono_class_get_throw): Fix a warning.
6158         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
6159         ReflectionTypeLoadException if needed. Fixes #78606.
6160
6161         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
6162         (mono_class_init): Ditto.
6163
6164         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
6165         ref_only exceptions.
6166         (mono_loader_clear_error): Make this work even if there is no error.
6167
6168 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
6169
6170         * object-internals.h marshal.c marshal.h icall.c: Implement method 
6171         Marshal.GetComSlotForMethodInfo using internal call.
6172
6173 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
6174
6175         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
6176         a function for signalling it.
6177
6178         * class.c (mono_class_from_typeref): Use the new kind of loader error when
6179         a referenced assembly is not found.
6180
6181         * loader.c (mono_loader_error_prepare_exception): Add support for 
6182         LOADER_ERROR_ASSEMBLY. Fix formatting.
6183
6184 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6185
6186         * domain.c appdomain.c class-internals.h marshal.c: Add support 
6187         for VARIANT marshalling on windows and increment corlib version
6188         since Variant struct was added.
6189
6190 2006-06-03  Miguel de Icaza  <miguel@novell.com>
6191
6192         * debug-mono-symfile.c: Revert Martin's previous patch which broke
6193         stack trace line information:
6194
6195         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
6196         (Martin) when looking up B which is between A and C, return A not C.
6197
6198         Bug is #78573.
6199
6200         Thanks to Alexander Olk for tracking this down.
6201
6202 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
6203
6204         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
6205         
6206         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
6207         avoid clobbering its value.
6208         (mono_string_to_lpstr): Fix a warning on windows.
6209
6210 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
6211
6212         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
6213
6214         * reflection.c loader.c: Removed references to 'dummy' flag.
6215
6216         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
6217
6218         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
6219         it gets GC tracking.
6220
6221         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
6222         GC tracking.
6223         
6224         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
6225
6226         * marshal.c threadpool.c: Update callers of mono_async_result_new.
6227
6228         * appdomain.c: Bump corlib version.
6229
6230 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
6231
6232         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
6233         CEE_STIND_REF when working with object references.
6234
6235 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
6236
6237         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
6238         Fixes #78539.
6239
6240 2006-05-30  Miguel de Icaza  <miguel@novell.com>
6241
6242         * loader.c (method_from_memberref): Fix argument value for
6243         mono_loader_set_error_method_load (I was passing the MonoClass
6244         instead of the class name char *).
6245
6246 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
6247
6248         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
6249         CEE_STIND_REF when working with object references.
6250
6251 2006-05-30  Martin Baulig  <martin@ximian.com>
6252
6253         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
6254         mono_method_full_name() change and replace the ':' with a '.'
6255         here.
6256
6257 2006-05-30  Martin Baulig  <martin@ximian.com>
6258
6259         * debug-mono-symfile.c
6260         (mono_debug_symfile_lookup_location): Fix the algorithm:
6261         when looking up B which is between A and C, return A not C.
6262
6263 2006-05-29  Martin Baulig  <martin@ximian.com>
6264
6265         * mono-debug.h
6266         (MonoDebugMethodInfo): Make the typedef public.
6267         (MonoDebugSourceLocation): New public struct.
6268
6269         * mono-debug.c
6270         (mono_debug_source_location_from_address): Removed.
6271         (mono_debug_source_location_from_il_offset): Removed.
6272         (mono_debug_il_offset_from_address): Removed.
6273         (mono_debug_address_from_il_offset): Removed.
6274         (mono_debug_lookup_method): New public function.
6275         (mono_debug_lookup_source_location): New public function; replaces
6276         the old mono_debug_source_location_from_*() functions; see the
6277         inline documentation.
6278         (mono_debug_free_source_location): New public function.
6279         (mono_debug_print_stack_frame): New public function; see the
6280         inline documentation.
6281
6282         * debug-mono-symfile.c
6283         (mono_debug_find_source_location): Renamed into
6284         mono_debug_symfile_lookup_location(); only take a
6285         `MonoDebugMethodInfo *' and an `offset' argument; added inline
6286         documentation.
6287         (mono_debug_find_method): Renamed into
6288         mono_debug_symfile_lookup_method().
6289
6290 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
6291
6292         * assembly.c (mono_assembly_open_full): Dont overwrite the status
6293         returned by mono_image_open_full ().
6294
6295         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
6296         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
6297         #78517.
6298
6299         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
6300         #78518.
6301
6302 2006-05-27  Miguel de Icaza  <miguel@novell.com>
6303
6304         * class.c (mono_class_from_typeref): handle missing images
6305         earlier, deals with bug #78418.   Refactor code; 
6306
6307         Fix a warning introduced in my previous commit (some stale code
6308         from before I revisited my patch).
6309
6310         * class.c (mono_class_create_from_typedef): On failure, remove the
6311         class from the MonoImage->class_cache as the class is not
6312         initialized;   Fixes the leak pointed out by Paolo.
6313
6314 2006-05-25  Dick Porter  <dick@ximian.com>
6315
6316         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
6317         DeleteCriticalSections until I figure out which one may still be
6318         sometimes locked when mono_thread_cleanup is called.
6319
6320 2006-05-24  Dick Porter  <dick@ximian.com>
6321
6322         * threads.c (mono_thread_cleanup): Move the threading cleanup out
6323         of mono_thread_manage and back into its own function, so it can be
6324         called after the finalizer thread has finished.
6325
6326         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
6327
6328 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
6329
6330         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
6331         Fixes #78495.
6332
6333         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
6334         with non-blittable elements.
6335         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
6336
6337 2006-05-24  Martin Baulig  <martin@ximian.com>
6338
6339         * mono-debug-debugger.h (MonoDebuggerEvent): Added
6340         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
6341
6342         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
6343         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
6344         `mono_debugger_event_handler' to NULL.
6345
6346 2006-05-24  Martin Baulig  <martin@ximian.com>
6347
6348         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
6349
6350 2006-05-24  Martin Baulig  <martin@ximian.com>
6351
6352         * mono-debug-debugger.h
6353         (mono_debugger_create_notification_function): Added
6354         `MonoCodeManager *' argument.
6355
6356 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
6357
6358         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
6359
6360 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
6361
6362         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
6363         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
6364         implementation.
6365
6366 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
6367
6368         * icall.c: precise GC support: objects can't be stored in unmanaged
6369         memory anymore, even if they are kept alive by other references: since
6370         they can move the GC needs to be able to always find them.
6371
6372 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
6373
6374         * object.c: precise GC support for static fields. Support
6375         for moving GCs: write barriers and pinned allocation for interned
6376         strings.
6377
6378 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
6379
6380         * domain.c, domain-internals.h: precise GC support for the MonoDomain
6381         structure.
6382
6383 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
6384
6385         * class.c, gc.c: sgen and precise GC updates.
6386
6387 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
6388
6389         * marshal.h, marshal.c: added write barrier wrapper and precise type
6390         fixes.
6391
6392 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
6393
6394         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
6395         support.
6396
6397 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
6398
6399         * reflection.c: precise and sgen GC updates.
6400
6401 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
6402
6403         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
6404
6405 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
6406
6407         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
6408
6409 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
6410
6411         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
6412         MONO_TYPE_OBJECT. Fixes #78462.
6413
6414 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
6415
6416         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
6417         and blittable types.
6418
6419 2006-05-17  Miguel de Icaza  <miguel@novell.com>
6420
6421         * class.c (mono_class_get_exception_for_failure): Implement parts
6422         of a TODO: if the loader error is set (instead of the class
6423         error), we return a Loader exception that can be properly thrown
6424         elsewhere.
6425
6426         This was exposed by some Winforms 2.0 code that I tried to run
6427         (Atsushi pointed me to it).
6428
6429 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
6430
6431         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
6432         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
6433         
6434         * marshal.c (emit_marshal_vtype): Add limited support for 
6435         UnmanagedType.LPStruct. Fixes #78427.
6436
6437         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
6438         Applied a patch from kangaroo to fix #77523.
6439
6440 2006-05-17  Martin Baulig  <martin@ximian.com>
6441
6442         * threads.c
6443         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
6444         (debugger_thread_created): Removed.
6445         (debugger_thread_exited): Removed.
6446
6447 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
6448
6449         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6450
6451         * object-internals.h (MonoReflectionResource): Sync with managed version.
6452
6453 2006-05-12  Wade Berrier <wberrier@novell.com>
6454
6455         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
6456
6457 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
6458
6459         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
6460         functions try to allocate from the image mempool.
6461
6462 2006-05-12  Dick Porter  <dick@ximian.com>
6463
6464         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
6465
6466 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
6467
6468         * object.c: The FieldGetter and FieldSetter methods require the full
6469         name of the class, not only the name. Fixes bug #78277.
6470
6471 2006-05-11  Miguel de Icaza  <miguel@novell.com>
6472
6473         * loader.c (method_from_memberref): Do not pass the NULL klass to
6474         mono_loader_set_error_() methods.  Pass the non-NULL value
6475         (class). 
6476
6477 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
6478
6479         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
6480         (mono_assembly_close): Null out assembly->image->references after freeing it.
6481
6482         * image.c (mono_image_close): Free image->references.
6483         
6484         * reflection.c (mono_image_basic_init): Fix a small memory leak.
6485
6486 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
6487
6488         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
6489         before checking if it's NULL (g_assert).
6490
6491 2006-05-10  Martin Baulig  <martin@ximian.com>
6492
6493         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
6494         I thought I already killed that two months ago, but now it somehow reappeared.
6495
6496 2006-05-10  Martin Baulig  <martin@ximian.com>
6497
6498         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
6499
6500 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
6501
6502         * reflection.c: Allocate memory for dynamically created methods in the image
6503         mempools.
6504
6505 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
6506
6507         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
6508         don't use the ad pointer before checking if it's NULL (g_assert).
6509
6510 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
6511
6512         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
6513         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
6514
6515         * marshal.c: Allocate all signatures from mempools.
6516
6517         * marshal.c: Allocate some more signatures from mempools.
6518
6519 2006-05-09  Miguel de Icaza  <miguel@novell.com>
6520
6521         * object.c (mono_load_remote_field): The code used to provide a
6522         temporary variable for returning results if the user did not
6523         provide a result pointer.  But our temporary variable was allocted
6524         on the satck.
6525
6526         Fix calling code to always pass a result area.   Coverity ID 103.
6527
6528 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
6529
6530         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
6531         value, not the old. Fixes #78312.
6532         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
6533
6534         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
6535         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
6536         per-image cache.
6537
6538         * assembly.c (mono_assembly_close): Free image->references.
6539
6540         * assembly.c (mono_assembly_names_equal): Fix a warning.
6541         (mono_assemblies_cleanup): Cleanup more global data.
6542
6543         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
6544
6545         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
6546         ptr_cache and image->modules.
6547
6548         * image.c (mono_image_init): Allocate array_cache lazily.
6549         
6550 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6551
6552         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
6553         behavior was changed recently and has bad side effects.
6554
6555 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
6556
6557         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
6558         
6559         * assembly.c (mono_assembly_close): Remove a debug printf.
6560
6561         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
6562
6563         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
6564         to also allow for temporary references between mono_image_open ()/close ().
6565
6566         * domain.c (get_runtimes_from_exe): Add a FIXME.        
6567
6568 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
6569
6570         * marshal.c: Fix support for dynamic methods.
6571
6572         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
6573
6574         * marshal.c (mono_marshal_cleanup): New cleanup function.
6575
6576         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
6577         image mempools.
6578
6579         * class.c (mono_class_init): Fix leaking class->nested_classes.
6580
6581         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
6582
6583         * image.c (mono_image_init): Initialize the new cashes.
6584
6585         * image.c (mono_image_close): Destroy the new cashes.
6586
6587         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
6588
6589         * mempool.c (mono_mempool_strdup): New helper function.
6590
6591         * class-internals.h: Add prototype for mono_loader_unlock ().
6592
6593         * domain.c (mono_jit_info_table_find): Fix a warning.
6594         (mono_debugger_check_runtime_version): Ditto.
6595
6596         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
6597         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
6598         functions to these modules.
6599
6600         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
6601         metadata modules.
6602         
6603         * marshal.c (mono_free_bstr): Fix a warning.
6604
6605         * assembly.c (mono_assembly_open_full): Fix another small leak.
6606
6607         * object.c: Fix some unload leaks in the remoting code.
6608
6609         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
6610         function.
6611
6612         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
6613
6614         * reflection.c: Fix some unload leaks in dynamic assemblies.
6615
6616 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
6617
6618         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
6619         * marshal.h: Add BSTR support on Win32
6620         * icall.c: Add BSTR icalls
6621         * metadata.h: Add BSTR enums
6622
6623 2006-04-28  Miguel de Icaza  <miguel@novell.com>
6624
6625         Work to catch the crash from #76795 and turn it into an
6626         exception.   As I stubbed out pieces of the VisualBasic support,
6627         I found a number of places where the code was failing and I added
6628         checks to those places. 
6629         
6630         * metadata.c (do_mono_metadata_parse_generic_class): Make this
6631         function return a status code.  If we fail to parse the signature
6632         from mono_metadata_parse_generic_inst, return FALSE.
6633
6634         * loader.c (mono_get_method_from_token): If we fail to load the
6635         method (mono_class_get) return NULL.   
6636
6637         * (method_from_memberref): Return NULL if we are unable to parse
6638         the method signature
6639
6640         (mono_loader_error_prepare_exception): Since we now use the
6641         loader_error flag internally to stop processing, and obtaining
6642         exceptions that might be thrown will walk this code path the
6643         proper way of going from a MonoLoaderError into a
6644         MonoException was convoluted.   This new routine encapsulates the
6645         process of turning the error into an exception and *clearing* the
6646         error afterwards.
6647         
6648 2006-04-27  Miguel de Icaza  <miguel@novell.com>
6649
6650         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
6651         with missing assemblies), and to cope with:
6652
6653                 * Missing fieldref from a non-existing assembly.
6654                 * Missing methodref from a non-existing assembly.
6655
6656         The first batch of work to address *some* of the issues from 76661.
6657         
6658         * object.c (mono_class_create_runtime_vtable): If we fail to
6659         initialize the class raise the exception here. 
6660
6661         * metadata.c (mono_class_get_overrides_full): If any methods fail
6662         to load return the failure to the caller.
6663
6664         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
6665         flagging assemblies that failed to load.   
6666
6667         Do not crash if we are unable to load the assembly.
6668
6669         (mono_assembly_close): Do nothing with REFERENCE_MISSING
6670         assemblies. 
6671
6672         * loader.c (mono_loader_set_error_type_load): Change the
6673         convention to always pass unallocated strings, so we make our own
6674         copies (I know our own code had duplicated strings before, but
6675         this keeps the normal conventions).
6676         (method_from_memberref): Call mono_loader_set_error_method_load
6677         for all possible failures of loading the class. 
6678         Remove assert, turn into a loader error.
6679
6680         (mono_loader_error_to_exception): Move this routine from mini
6681         (mini_loader_error_to_exception) there was no need to have that in
6682         mini. 
6683
6684         * class.c (mono_class_from_typeref): If we were not able to load
6685         the assembly with mono_assembly_load_reference, call the
6686         mono_loader_set_error_type_load to register the problem.
6687
6688         (mono_class_setup_fields): If we fail to load the type from
6689         mono_metadata_parse_type_full, call mono_class_set_failure and
6690         break from the loop.
6691
6692         If class->exception_type is set, we do not layout the fields as
6693         that might crash the runtime, and instead return (from breaking
6694         from the previous loop).
6695
6696         (mono_class_setup_vtable): This now returns a boolean indicating
6697         whether the table was properly setup.   The decision is driven by
6698         mono_class_get_overrides_full which might run into non-existing
6699         methods. 
6700         
6701         (mono_class_init): Returns TRUE on success or FALSE if there was a
6702         problem in loading the type (incorrect assemblies, missing
6703         assemblies, methods, etc).
6704
6705         When we call mono_class_setup_fields we also check for a potential
6706         error inside this call (either a class exception or a general
6707         loader exception).
6708
6709         (mono_class_create_from_typedef): If the parent fails to load
6710         (calling mono_class_get_full) return NULL.
6711         
6712         ** Important **
6713
6714         calls to mono_metadata_parse_type_full should be checked
6715         everywhere and set the mono_class_set_failure
6716         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
6717
6718         The current patch checks the places where my manually constructed
6719         tests show the errors are showing up, but we should do it
6720         everywhere. 
6721
6722         ** Important2 **
6723
6724         mono_class_init return values should be tested everywhere, like
6725         the previous case this is something that we should audit
6726         everywhere and not only on the cases exposed by the tests I
6727         created. 
6728
6729 2006-04-26  Miguel de Icaza  <miguel@novell.com>
6730
6731         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
6732         boolean parameter and instead pass the information on `options'
6733         parameter (FileOptions).
6734
6735         * icall.c: Register the new signature for MonoIO.Open.
6736
6737         * debug-helpers.c (dis_one): Trying to understand how coverity
6738         works.  Fix Run 5, item 78.
6739
6740 2006-04-26  Dick Porter  <dick@ximian.com>
6741
6742         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
6743         dereference.
6744
6745 2006-04-25  Martin Baulig  <martin@ximian.com>
6746
6747         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
6748
6749         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
6750         debugger_thread_created().
6751         (debugger_gc_push_all_stacks): Don't handle the main thread in any
6752         special way.
6753         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
6754         (mono_debugger_finalize_threads): New function; undo the effects
6755         of mono_debugger_init_threads().
6756         (mono_debugger_create_all_threads): Removed.
6757
6758 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
6759
6760         * image.c (mono_image_close): Tidy up trace messages.
6761
6762         * assembly.c (mono_assembly_close): Ditto.
6763
6764         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
6765         no longer references an already freed assembly. Fixes #78168.
6766
6767 2006-04-21  Dick Porter  <dick@ximian.com>
6768
6769         * threads.c (mono_thread_detach): Fix reference counting when
6770         detaching threads.
6771
6772 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
6773
6774         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
6775         #78155.
6776
6777 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
6778
6779         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
6780         (mono_type_to_stind): Ditto.
6781
6782         * marshal.c: Use the new helper functions to simplify code.
6783
6784         * image.c (mono_image_close): Add some code for help debug assembly unloading
6785         problems.
6786
6787         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
6788         image mempool.
6789
6790         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
6791         assembly was already loaded in another appdomain. Fixes #78083.
6792
6793 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
6794
6795         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
6796         referenced assemblies.
6797         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
6798
6799         * domain.c (mono_domain_free): Add a trace message.
6800
6801         * appdomain.c (add_assemblies_to_domain): Ditto.        
6802
6803         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
6804         field.  
6805
6806 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
6807
6808         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
6809
6810 2006-04-12  Martin Baulig  <martin@ximian.com>
6811
6812         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
6813         `USE_INCLUDED_LIBGC'.   
6814
6815 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
6816
6817         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
6818         the patch contains ../ and a small directory name later. Hopefully fixes
6819         #78035.
6820
6821 2006-04-10  Martin Baulig  <martin@ximian.com>
6822
6823         Clean up the debugger's thread-handling code.
6824
6825         The debugger's thread-handling code has been moved from
6826         ../mini/debug-debugger.c to threads.c.  We now iterate directly
6827         over the `threads' hash, keep track of exiting threads and also
6828         use proper locking.
6829
6830         We can now debug XSP and XSP based applications with the debugger.
6831
6832         * object-internals.h (MonoThread): Added `gpointer end_stack'.
6833
6834         * threads.h
6835         (MonoThreadCallbacks): Removed; this was only used by the debugger.
6836         (mono_install_thread_callbacks): Likewise.      
6837
6838         * threads.c (mono_thread_callbacks): Removed.
6839         (debugger_thread_created, debugger_thread_exited): New static functions.
6840         (start_wrapper): Call debugger_thread_created().
6841         (thread_cleanup): Call debugger_thread_exited().
6842         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
6843         (mono_debugger_init_threads): New public function.
6844         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
6845         iterate directly over the `threads' hash and also use proper locking.
6846
6847         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
6848
6849         * mono-debug-debugger.h
6850         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
6851
6852 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
6853
6854         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
6855         argument type=array. Fixes #78057.
6856
6857 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
6858
6859         * culture-info-table.h : regenerated. Fixed bug #69652.
6860
6861 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
6862
6863         * loader.c metadata.c: Reapply a variant r59116.
6864         
6865         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
6866
6867         * class.c (mono_class_setup_interface_offsets): New internal function.
6868
6869         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
6870         interfaces too. Fixes #77398.
6871
6872         * reflection.c (encode_cattr_value): Add support for 
6873         parameter type=object, argument type=array.
6874         (load_cattr_value): Ditto. Fixes #77916.
6875
6876         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
6877         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
6878
6879         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
6880         a byval char array and CharSet is Ansi.
6881
6882         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
6883
6884 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
6885
6886         * metadata.c: Add some locking comments.
6887         
6888         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
6889         mempool.
6890         (mono_metadata_free_method_signature): Don't free the signature itself.
6891
6892         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
6893
6894         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
6895         reference the same MonoImage.
6896         (mono_assembly_load_from_full): Add an assert.
6897
6898 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
6899
6900         * image.c (mono_image_close): Don't put the image we are about to free into the
6901         loaded_images_guid_hash.
6902
6903         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
6904         to reduce code duplication.
6905
6906         * marshal.c: Register the native functions called by this module as icalls, to
6907         somewhat centralize the creation of MonoMethodSignature's.
6908
6909         * loader.c (mono_method_signature): Add a cache for method signatures.
6910
6911         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
6912         the parameter attributes of a method.
6913         (mono_metadata_parse_method_signature_full): Refactored the computation of
6914         parameter attributes into a separate function. Also avoid one allocation in
6915         most cases.
6916
6917         * assembly.c (mono_assembly_close): Ditto.
6918
6919         * image.c (mono_image_close): Log trace messages with INFO level.
6920
6921         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
6922
6923         * image.c reflection.c: Correct reference counting of image modules.
6924         
6925         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
6926         of this function from the image mempool.
6927         
6928         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
6929         to allow more cached types to be used.
6930
6931         * mono-debug.c (mono_debug_add_method): Appled patch from
6932         David S. Miller  <davem@sunset.davemloft.net>: Access 
6933         minfo->lexical_blocks[] entry elements using read32().
6934
6935 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
6936
6937         * loader.c (mono_free_method): No longer free the method header for non-dynamic
6938         methods as it is allocated from the mempool.
6939
6940         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
6941         image mempool.
6942
6943         * metadata-internals.h: Add comments describing the reference counting scheme
6944         used for MonoImage and MonoAssembly.
6945
6946         * image.c assembly.c reflection.c: Rework reference counting of images and 
6947         assemblies so they are freed when the runtime is shut down. Free some 
6948         additional memory structures when an image is unloaded.
6949         
6950 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
6951
6952         * class.c loader.c reflection.c: Allocate more data structures in
6953         the image mempool.
6954
6955 2006-03-31  Miguel de Icaza  <miguel@novell.com>
6956
6957         * icall.c
6958         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
6959         build on pre glib 2.4 systems.
6960
6961 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
6962
6963         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
6964
6965         * icall.c: Fix some warnings.
6966
6967 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
6968
6969         * culture-info-table.h : regenerated.
6970
6971 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
6972
6973         * threads.c, object-internals.h, verify.c: changed the culture caching
6974         code to use a normal MonoArray for storage so the GC can keep track of
6975         them easily. Fixed bits of the cache logic, too and simplified the
6976         code.
6977
6978 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
6979
6980         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
6981         thread for non-Boehm GCs.
6982
6983 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
6984
6985         * domain.c, object.c, domain-internals.h: reduce the amount of memory
6986         needed to keep track of the data for static fields.
6987
6988 2006-03-29  Raja R Harinath  <rharinath@novell.com>
6989
6990         Fix #75172
6991         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
6992         for interface classes.  Use 'num_methods' instead.
6993         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
6994         before using '->vtable_size' field.
6995
6996 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
6997
6998         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
6999         doesn't contain managed pointers, so use a normal hashtable.
7000
7001 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
7002
7003         * reflection.c, class-internals.h, domain.c: fixed handling of types
7004         used as values for objects in custom attributes (bug #77915):
7005
7006 2006-03-24  Martin Baulig  <martin@ximian.com>
7007
7008         * class.c (mono_class_setup_fields): Added support for generic
7009         instances; fixes #77580.
7010
7011 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7012
7013         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
7014
7015 2006-03-24  Dick Porter  <dick@ximian.com>
7016
7017         * file-io.c (get_file_attributes): More stat macro breakage.
7018         Fixes bug 77759.
7019
7020 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
7021
7022         * profiler.c: added the file=filename option in the default profiler
7023         to output the profile data to filename.
7024
7025 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7026
7027         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
7028         bug #77877.
7029
7030 2006-03-22  Martin Baulig  <martin@ximian.com>
7031
7032         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
7033         allocated `MonoClassField *' in `fb->handle'.
7034
7035 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
7036
7037         * class.c, image.c, metadata-internals.h: implemented new mechanism to
7038         allocate interface ID to save memory and allow better ID reuse on
7039         appdomain unload. setup_generic_vtable () removal from Martin.
7040
7041 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
7042
7043         * object.h, appdomain.c, domain.c, exception.c, icall.c,
7044         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
7045         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
7046         write barriers for reference stores with managed objects accessed with
7047         C structures in the runtime and in embedding programs.
7048
7049 2006-03-20  Raja R Harinath  <rharinath@novell.com>
7050
7051         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
7052         'interface_id' and 'max_interface_id' fields of MonoClasses
7053         representing open generic types.
7054
7055 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
7056
7057         * object.h, object.c, icall.c: added functions to deal with
7058         storing valuetypes that contain references in managed objects.
7059         * reflection.c, string-icalls.c, threads.c, marshal.c: small
7060         fixes and comments around uses of mono_array_addr ().
7061
7062 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
7063
7064         * object.h, icall.c, monitor.c: object.GetHashCode ()
7065         implementation that supports the moving garbage collector.
7066
7067 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
7068
7069         * icall.c, threads-types.h, threads.c: implemented finalizer for
7070         LocalDataStoreSlot.
7071
7072 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
7073
7074         * metadata.c (mono_type_size): Add a fixme.
7075         (mono_type_stack_size): Ditto.
7076
7077         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
7078         'type_forwarders' field.
7079
7080         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
7081         attribute from net 2.0.
7082
7083         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
7084         from class.c.
7085
7086         * class.c (mono_class_setup_fields): Fix a warning.
7087         
7088         * class.c (mono_class_from_name): Add support for assemblyref entries
7089         in the EXPORTEDTYPE table.
7090
7091         * reflection.c: Add support for handling type forwarders under net 2.0.
7092
7093         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
7094         
7095 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
7096
7097         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
7098         overwriting entries in ModuleBuild->types, also clean up the code
7099         a little. Fixes #77774.
7100
7101 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
7102
7103         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
7104         load friend assembly info when present.
7105
7106 2006-03-14  Raja R Harinath  <rharinath@novell.com>
7107
7108         Fix crasher on gtest-158.cs.
7109         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
7110         the return value if the MonoClass we want is yet in an
7111         inconsistent state.
7112         * class.c (mono_class_create_from_typedef): Add an comment
7113         explaining an order dependency between mono_class_setup_parent and
7114         mono_class_setup_mono_type.
7115
7116 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
7117
7118         * class.c: documentation updates and events bug fix.
7119
7120 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
7121
7122         * class.c: some cleanup, locking fixes.
7123
7124 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
7125
7126         * class.c: fix the generics code to setup nested
7127         type info to the instantiated type (bug #77770).
7128
7129 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
7130
7131         * marshal.c: fixed a few type correctness issues.
7132
7133 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
7134
7135         * loader.c: the Set/Get/Addrtess array methods should be public.
7136
7137 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
7138
7139         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
7140         
7141         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
7142         info->wrapper.
7143
7144 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
7145
7146         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
7147
7148         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
7149
7150         * mempool.c (mono_mempool_alloc): Speed this up a bit.
7151         (mono_mempool_alloc0): Ditto.
7152
7153 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7154
7155         * socket-io.c:
7156         (create_object_from_sockaddr): it was allocating 4 extra bytes
7157         for the AF_UNIX data. Fixes bug #77747.
7158
7159 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
7160
7161         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
7162
7163 2006-03-09  Dick Porter  <dick@ximian.com>
7164
7165         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
7166         Fixes bug 76966 again.
7167
7168 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
7169
7170         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
7171         names from r57532
7172         * appdomain.c: Bumped corlib version to 48 (due to r57532)
7173
7174 2006-03-07  Martin Baulig  <martin@ximian.com>
7175
7176         * object.c
7177         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
7178
7179 2006-03-07  Martin Baulig  <martin@ximian.com>
7180
7181         * class.c
7182         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
7183         regression introduced in r56970; see gtest-252.cs.
7184
7185         * loader.c (mono_get_method_constrained): Correctly handle generic
7186         methods; see gtest-253.cs.
7187
7188 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
7189
7190         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
7191
7192 2006-03-04  Martin Baulig  <martin@ximian.com>
7193
7194         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
7195         compute the parent type at runtime, just like we're already doing
7196         it for interfaces.
7197
7198         * reflection.c
7199         (mono_reflection_bind_generic_parameters): Don't compute the
7200         parent type anymore.
7201
7202         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
7203
7204 2006-03-04  Martin Baulig  <martin@ximian.com>
7205
7206         * mono-debug-debugger.h
7207         (mono_debugger_create_notification_function): Allocate memory at
7208         runtime and return a pointer to it.
7209
7210 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
7211
7212         * assembly.c: Fix windows build.
7213         
7214         * assembly.c: Fix build.
7215
7216         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
7217
7218         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
7219         
7220 2006-03-03  Dick Porter  <dick@ximian.com>
7221
7222         * process.c
7223         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
7224         Check parameters before dereferencing them.  Fixes Aaron's part of
7225         bug 77393.
7226
7227 2006-03-03  Raja R Harinath  <rharinath@novell.com>
7228
7229         Fix performance regression.
7230         * loader.c (find_method_in_class): Add 'from_class' argument.
7231         Rename 'klass' argument to 'in_class'.  The signature is compared
7232         against the method in 'in_class', and the corresponding method is
7233         returned from 'from_class'.
7234         (find_method): Walk both 'in_class' and 'from_class' in parallel.
7235         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
7236         type definition and generic instantiation in parallel.
7237         (mono_get_method_constrained): Update to changes.
7238
7239 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
7240
7241         * threads.c: make sure the domain is correct, too when doing
7242         mono_thread_attach ().
7243
7244 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
7245
7246         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
7247         windows. Fixes #77683.
7248
7249 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
7250
7251         * object.h, *: introduced specific way to set elements of an array
7252         of references to be used as write barrier. Still need to audit the
7253         uses of mono_array_addr.
7254
7255 2006-03-01  Miguel de Icaza  <miguel@novell.com>
7256
7257         * object-internals.h: New field to cache the assmebly name, patch
7258         from Tambet Ingo (tambet@ximian.com)
7259
7260 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
7261
7262         * decimal.h, class-internals.h, metadata-internals.h,
7263         file-io.h: mark a few function declarations as internal, to
7264         reduce the number of PLT entries.
7265
7266 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7267
7268         * file-io.c: fix typo in warning message.
7269
7270 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
7271
7272         * loader.c: on unix, lookup the "*A" version of a function
7273         if charset is auto as a second option before failing.
7274
7275 2006-02-28  Raja R Harinath  <rharinath@novell.com>
7276
7277         * class.h (mono_class_inflate_generic_method): Revert to two
7278         argument version.
7279         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
7280         (mono_class_inflate_generic_method_full): Add.
7281         * class.c (mono_class_inflate_generic_method_full): Rename from
7282         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
7283         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
7284         * loader.c, reflection.c: Update to changes.
7285
7286 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
7287
7288         * icall.c: const fixes and small improvements.
7289
7290 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7291
7292         * threadpool.c: for asynchronous connect(), enable the same workaround
7293         for BSD 6 as for the Mac. Fixes bug #77637.
7294
7295 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
7296
7297         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
7298         formatted classes. Fixes #77524.
7299
7300 2006-02-24  Raja R Harinath  <rharinath@novell.com>
7301
7302         * class.c (inflate_generic_type): Add a couple more
7303         micro-optimizations.
7304         (inflate_generic_context): Don't use the 'gmethod' from
7305         'inflate_with'.
7306         (mono_class_inflate_generic_method): If the method has generic
7307         parameters, but the passed-in context doesn't have a 'gmethod',
7308         create one.  Use the possibly simplified generic instantiation
7309         from the declaring class instead of the one passed in.
7310
7311 2006-02-24  Raja R Harinath  <harinath@gmail.com>
7312
7313         Make generic method signature and method header handling lazy.
7314         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
7315         (inflate_generic_header): Likewise.
7316         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
7317         parameter to avoid inflating types.
7318         (mono_get_inflated_method): Empty out.
7319         * class.h (mono_class_inflate_generic_method): Update to changes.
7320         * loader.c (mono_get_method_from_token): Don't parse signature for
7321         generic methods, nor methods of generic classes.
7322         (mono_method_signature): Rename from 'mono_method_signature'.
7323         Inflate signature on demand.
7324         (mono_method_get_header): Inflate method header on demand.
7325         * reflection.c: Update to changes.
7326
7327 2006-02-23  Raja R Harinath  <rharinath@novell.com>
7328
7329         * metadata.c (mono_metadata_inflate_generic_inst): If the
7330         instantiation is closed, don't bother expanding it in the new
7331         context.
7332         * class.c (inflate_generic_class): If the generic instantiation
7333         doesn't change after inflation, return the argument itself.
7334         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
7335         Add bounds checks.
7336         (inflate_generic_context): If neither the generic class nor the
7337         generic method instantiations change, return the original context.
7338         * reflection.c (mono_method_get_object): Do
7339         'mono_get_inflated_method' before accessing the ->klass field.
7340         (inflate_mono_method): Don't create a MonoGenericMethod unless
7341         necessary.
7342         (inflate_method): Don't pass a constructed type as the declaring
7343         type of a methodbuilder.
7344
7345 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
7346
7347         * object.c: fix memory overwrite.
7348
7349 2006-02-22  Dick Porter  <dick@ximian.com>
7350
7351         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
7352         it doesn't work any more.
7353         (mono_threads_request_thread_dump): Fix unused variable warnings.
7354
7355 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
7356
7357         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
7358         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
7359         the public header file.
7360
7361 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
7362
7363         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
7364
7365 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
7366
7367         * class-internals.h, object.c: reduce the size of MonoVTable
7368         and store the interface_offsets array at negative offsets.
7369
7370 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
7371
7372         * metadata.c: tweak table descriptors data structures to reduce
7373         size and runtime relocations.
7374
7375 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
7376
7377         * marshal.c: fix some types and opcodes to be type-safe
7378         in marshaling wrappers.
7379
7380 2006-02-21  Ankit Jain  <jankit@novell.com>
7381
7382         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
7383
7384 2006-02-21  Raja R Harinath  <rharinath@novell.com>
7385
7386         * metadata.c (get_constraints): Relax debugging checks for monodis.
7387
7388 2006-02-21  Ankit Jain  <jankit@novell.com>
7389
7390         * metadata.c (mono_metadata_load_generic_params): Move the code
7391         checking for ambiguous generic params from here to mono/dis/get.c
7392         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
7393
7394 2006-02-21  Raja R Harinath  <harinath@gmail.com>
7395
7396         Fix assertion triggered when compiling nemerle.
7397         * class.c (mono_get_shared_generic_inst): Rename from
7398         get_shared_inst and make non-static.
7399         * loader.c (mono_get_shared_generic_method): New.  Used to create
7400         the MonoGenericContext-equivalent of a MonoGenericContainer.
7401         (mono_get_method_from_token): Initialize the 'context' field of
7402         the created MonoGenericContainer.
7403         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
7404         * metadata.c (get_constraints): Add sanity check.
7405         * class-internals.h: Add new internal methods.
7406
7407         * reflection.c (verify_safe_for_managed_space): New sanity check.
7408         Currently checks that owner-less generic parameters aren't allowed
7409         in managed space.
7410         (mono_type_get_object): Use it.
7411         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
7412         that are now in mono_type_get_object.
7413         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
7414
7415 2006-02-19  Raja R Harinath  <harinath@gmail.com>
7416
7417         * metadata.c (mono_type_create_from_typespec): Rename from
7418         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
7419         argument and caching of types in the generic container.
7420         (unwrap_arrays, find_generic_param): Remove.
7421         * metadata-internals.h: Update.
7422         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
7423
7424 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
7425
7426         * class.c (mono_class_get_exception_for_failure): Fix a warning.
7427
7428         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
7429         return values. Fixes #77581.
7430
7431         * class.c (mono_fnptr_class_get): Switch name and name_space.
7432
7433         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
7434         classes and add support for [In, Out] attributes.
7435         (mono_marshal_free_asany): Ditto. Fixes #77524.
7436
7437 2006-02-18  Raja R Harinath  <harinath@gmail.com>
7438
7439         * class.c (mono_class_from_generic_parameter): Make more robust to
7440         incomplete MonoGenericContainers from monodis.
7441
7442 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
7443
7444         * class-internals.h: added some more exception types.
7445         * class.c, metadata.c: added a few checks to handle missing
7446         types.
7447
7448 2006-02-17  Raja R Harinath  <rharinath@novell.com>
7449
7450         Use owner-less generic-params some more.
7451         * class.c (my_mono_class_from_generic_parameter): Remove.
7452         (mono_class_from_generic_parameter): Handle null image,
7453         param->name and param->owner.
7454         (mono_class_from_mono_type): Update.
7455         (mono_class_create_from_typespec): Remove 'container' parameter.
7456         If that parameter is non-null, the result is always inflated by
7457         'mono_class_get_full' anyway.
7458         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
7459         parameter.
7460         (mono_class_get_full): Update.
7461
7462         * class.c (inflate_generic_type) [GENERICINST]: If the generic
7463         instance is not open, don't bother inflating.
7464         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
7465         parse metadata for inflated classes.
7466         (_mono_class_get): Change GenericContext* parameter to
7467         GenericContainer*.
7468         (mono_class_create_from_typespec): Likewise.  Simplify, and
7469         implement trivially.  All the cases are handled in
7470         mono_class_from_mono_type.  Don't inflate returned class.
7471         (mono_class_get_full): Delegate GENERICINST optimization to
7472         inflate_generic_type.
7473         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
7474
7475 2006-02-16  Dick Porter  <dick@ximian.com>
7476
7477         * socket-io.c (create_object_from_sockaddr): Fix typo.
7478         (create_sockaddr_from_object): Check array lengths before
7479         potentially accessing items off the end.
7480         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
7481         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
7482         (ves_icall_System_Net_Sockets_Socket_Send_internal)
7483         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
7484         length checks to avoid wraparound overflows.
7485         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
7486         contents of the array of sockets
7487         (hostent_to_IPHostEntry2)
7488         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
7489         Check return value of inet_ntop ().
7490         (addrinfo_to_IPHostEntry): Fix typo
7491
7492 2006-02-16  Raja R Harinath  <rharinath@novell.com>
7493
7494         Type metadata parsing doesn't use generic-instantiation information.
7495         * metadata.c (mono_metadata_parse_array_full): Change
7496         MonoGenericContext* parameter to MonoGenericContainer*.
7497         (mono_metadata_parse_type_full): Likewise.
7498         (mono_type_create_from_typespec_full): Likewise.
7499         (mono_metadata_parse_mh_full): Likewise.
7500         (mono_metadata_parse_generic_inst): Likewise.
7501         (do_mono_metadata_parse_generic_class): Likewise.
7502         (do_mono_metadata_parse_type): Likewise.
7503         * metadata-internals.h: Update to changes.
7504         * class.c (mono_class_find_enum_basetype): Likewise.
7505         (mono_class_setup_fields): Likewise.
7506         (mono_class_create_from_typespec): Likewise.
7507         * loader.c (method_from_methodspec): Likewise.
7508         (mono_get_method_from_token): Likewise.
7509         (mono_method_get_header): Likewise.
7510
7511 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
7512
7513         * marshal.c: handle additional GENERICINST case (patch from
7514         Thong Nguyen <tum@veridicus.com>).
7515         Fix a few cases where LDIND_I/STIND_I was used for references.
7516
7517 2006-02-16  Raja R Harinath  <rharinath@novell.com>
7518
7519         * reflection.c (mono_reflection_get_token): Remove unused variable.
7520
7521 2006-02-16  Martin Baulig  <martin@ximian.com>
7522
7523         * reflection.c (mono_reflection_get_token): Add support for fields
7524         in instantiated generic types.
7525
7526         * icall.c
7527         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
7528
7529 2006-02-15  Martin Baulig  <martin@ximian.com>
7530
7531         * icall.c
7532         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
7533         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
7534         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
7535         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
7536
7537 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
7538
7539         * class.c, metadata.c, metadata.h, object.c, icall.c,
7540         marshal.c: changed mono_type_get_underlying_type () to do
7541         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
7542         Fixed handling of instantiated generic valuetypes (bug #75479).
7543
7544 2006-02-15  Raja R Harinath  <rharinath@novell.com>
7545
7546         * metadata.c (mono_metadata_decode_signed_value): Simplify.
7547         Delegate to mono_metadata_decode_value, and work on the returned value.
7548
7549         * icall.c (ves_icall_MonoType_GetGenericArguments):
7550         Add consistency check here too.
7551         
7552 2006-02-15  Ankit Jain  <jankit@novell.com>
7553
7554         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
7555         char/short etc.
7556
7557 2006-02-15  Ankit Jain  <jankit@novell.com>
7558
7559         * metadata.c (mono_metadata_decode_signed_value): New function to decode
7560         signed values, used only for representing lower bounds of arrays.
7561         (mono_metadata_parse_array_full): Use new
7562         mono_metadata_decode_signed_value to decode lower bounds.
7563
7564 2006-02-14  Martin Baulig  <martin@ximian.com>
7565
7566         * reflection.c
7567         (mono_reflection_get_token): Support "MonoGenericMethod" and
7568         "MonoGenericCMethod" and allow generic instances / methods.
7569
7570 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
7571
7572         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
7573         to obtain the terminal size using an ioctl.
7574
7575         * object.c (mono_nullable_init): Revert this as nullable reference
7576         types are not valid.
7577         (mono_nullable_box): Ditto.
7578
7579 2006-02-09  Dick Porter  <dick@ximian.com>
7580
7581         * threads.c (mono_thread_detach): Drop a reference to the thread
7582         we're detaching.
7583
7584 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
7585
7586         * object.c (mono_nullable_init): Handle nullable reference types.
7587         (mono_nullable_box): Ditto. Fixes #77446.
7588
7589 2006-02-07  Martin Baulig  <martin@ximian.com>
7590
7591         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
7592
7593 2006-02-07  Ankit Jain  <jankit@novell.com>
7594
7595         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
7596         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
7597         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
7598         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
7599         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
7600         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
7601
7602 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
7603
7604         * class.c (mono_class_create_generic): Set type_token as well.
7605
7606         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
7607         compatible with MS.
7608
7609 2006-02-02  Martin Baulig  <martin@ximian.com>
7610
7611         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
7612         has never been used so far.
7613
7614 2006-02-02  Martin Baulig  <martin@ximian.com>
7615
7616         * mono-debug-debugger.h: Changed comment at the top of this file;
7617         the header is not installed, but it's safe to #include it from
7618         within the JIT.
7619
7620         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
7621         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
7622
7623 2006-02-02  Martin Baulig  <martin@ximian.com>
7624
7625         * mono-debug.h
7626         (MonoSymbolTable): Removed the `metadata_info' field.
7627
7628         * mono-debug.c
7629         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
7630
7631         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
7632         (mono_debugger_add_builtin_types): Removed.
7633         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
7634         (mono_debugger_create_notification_function): We now operate on a
7635         pre-allocated area; take a `gpointer' and return `void'.
7636
7637         * mono-debug-debugger.c
7638         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
7639         (mono_debugger_add_builtin_types): Removed.
7640
7641 2006-02-02  Martin Baulig  <martin@ximian.com>
7642
7643         * threads.c (mono_debugger_create_all_threads): New public method.
7644
7645 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
7646
7647         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
7648         breaks on several platforms.
7649
7650 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
7651
7652         * assembly.c: the VS.NET build doesn't supply default values for
7653         MONO_ASSEMBLIES and MONO_CFG_DIR.
7654
7655 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
7656
7657         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
7658         helper function.
7659
7660         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
7661
7662         * loader.c (method_from_memberref): Fix a warning.
7663
7664         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
7665
7666         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
7667         with explicit layout. Fixes #77433.
7668
7669 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
7670
7671         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
7672         max_interface_id is initialized before using it. Fixes #77398.
7673         (ves_icall_Type_GetInterfaces): Ditto.
7674
7675 2006-01-30  Raja R Harinath  <rharinath@novell.com>
7676
7677         * metadata.c (mono_metadata_parse_method_signature_full): Don't
7678         allocate memory for parameter attributes when parsing memberref
7679         signatures.
7680         * loader.c (mono_loader_set_error_method_load): Don't warn.
7681         (method_from_memberref): Ensure MissingMethodException gets thrown
7682         if method is not found.  Make warning more informative.
7683
7684 2006-01-29  Raja R Harinath  <harinath@gmail.com>
7685
7686         Fix #77397
7687         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
7688         return true if is byref.
7689         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
7690         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
7691         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
7692
7693 2006-01-27  Raja R Harinath  <rharinath@novell.com>
7694
7695         Fix tests/find-method.2.il
7696         * loader.c (find_method, find_method_in_class): Remove is_inflated
7697         argument.  Revert 2006-01-18 change.
7698         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
7699         is generic, search for method in its generic definition.
7700         * class.c (mono_class_setup_vtable_general): Print generic
7701         arguments of generic types in debugging printf.
7702
7703 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
7704
7705         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
7706
7707         * threads.c (mono_threads_request_thread_dump): New helper function.
7708
7709 2006-01-25  Raja R Harinath  <rharinath@novell.com>
7710
7711         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
7712
7713 2006-01-25  Ankit Jain  <jankit@novell.com>
7714
7715         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
7716         move definition to ..
7717         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
7718         
7719 2006-01-25  Ankit Jain  <jankit@novell.com>
7720             Raja R Harinath  <rharinath@novell.com>
7721
7722         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
7723         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
7724         as necessary.
7725
7726 2006-01-25  Martin Baulig  <martin@ximian.com>
7727
7728         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
7729         `MonoDebuggerThread' into debug-debugger.c.
7730
7731 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
7732
7733         * profiler.c: fix printing of data.
7734
7735 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
7736
7737         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
7738           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
7739
7740 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
7741
7742         * object.c: fix deadlock related to string interning.
7743
7744 2006-01-23  Martin Baulig  <martin@ximian.com>
7745
7746         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
7747
7748         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
7749
7750 2006-01-23  Martin Baulig  <martin@ximian.com>
7751
7752         * mono-debug.h: Moved the prototypes of some functions which are
7753         used by the JIT here from mono-debug-debugger.h.
7754
7755 2006-01-21  Martin Baulig  <martin@ximian.com>
7756
7757         * Makefile.am: Don't install mono-debug-debugger.h.
7758
7759 2006-01-21  Martin Baulig  <martin@ximian.com>
7760
7761         * mono-debug-debugger.h: Enforce the private status of this header
7762         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
7763         Moved some stuff from mono-debugger-jit-wrapper.h here.
7764
7765 2006-01-20  Raja R Harinath  <rharinath@novell.com>
7766
7767         * class.c (mono_class_from_typeref): Add a sanity test to help
7768         catch lack of assembly load/search hooks.
7769
7770 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
7771
7772         * marshal.c (emit_struct_conv): Relax the fields with same offset
7773         check even more. Fixes #77230.
7774
7775 2006-01-18  Martin Baulig  <martin@ximian.com>
7776
7777         * loader.c (find_method_in_class): Added `gboolean is_inflated'
7778         argument; if false, we compare the uninstantiated signatures.
7779         (method_from_memberref): Compare the uninstantiated signatures;
7780         fixes #76417.
7781
7782 2006-01-18  Robert Jordan  <robertj@gmx.net>
7783
7784         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
7785         Clear the weak link. Fixes bug #77170.
7786
7787         * gc.c (mono_gchandle_free):
7788         Reflect *-gc.c changes (tiny optimization).
7789
7790 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
7791
7792         * metadata.c (mono_metadata_signature_dup): Applied patch from
7793         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
7794         Fixes #77288.
7795
7796 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
7797
7798         * marshal.c (emit_struct_conv): Allow fields with the same offset when
7799         marshalling from native to managed code. Fixes #77230.
7800
7801 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7802
7803         * threadpool.c: fix problem (Mac only) when more than one asynchronous
7804         connect. Fixes bug #77020.
7805
7806 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
7807
7808         * class.c: fixed id assignement for nested interfaces (bug #77275).
7809         Added also better info for --print-vtable debugging.
7810
7811 2006-01-12  Martin Baulig  <martin@ximian.com>
7812
7813         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
7814         interfaces on-the-fly; fixes #76625.
7815
7816         * class-internals.h
7817         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
7818         don't need that anymore.
7819
7820 2006-01-12  Miguel de Icaza  <miguel@novell.com>
7821
7822         * socket-io.c
7823         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
7824         To avoid initing the nested_classes when not needed I turned the
7825         PeerCredData as a toplevel internal class, as it has to be shared
7826         anyways. 
7827
7828         Fixes the CASA issue.
7829
7830 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
7831
7832         * domain.c: Accessors for MonoJitInfo
7833
7834         * profiler-private.h: Add jitinfo to the end jit hook
7835
7836         * profiler.[ch]: Define new hooks, called after jitting which give
7837         the MonoJitInfo that was compiled
7838
7839 2006-01-10  Martin Baulig  <martin@ximian.com>
7840
7841         * class.c (mono_class_setup_events): Add support for generic
7842         classes; fixes #76440.
7843
7844 2006-01-06  Raja R Harinath  <rharinath@novell.com>
7845
7846         Fix #77160.
7847         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
7848         on passed-in method.
7849
7850 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
7851
7852         * object.c (mono_runtime_invoke_array): Add Nullable support.
7853
7854         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
7855
7856 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
7857
7858         * file-io.c: Don't consider sockets as directory and avoid an endless
7859         loop. Fix bug #76966.
7860
7861 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
7862
7863         * object.c (mono_nullable_init): New helper function.
7864         (mono_nullable_box): Ditto.
7865
7866         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
7867
7868         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
7869
7870         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
7871         
7872 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
7873
7874         * class.c (mono_class_is_assignable_from): Make T assignable to 
7875         Nullable<T>.
7876
7877 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
7878
7879         * appdomain.c: Bump corlib version to 46.
7880         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
7881         serialization purpose) and changed ves_icall_System_Reflection_
7882         Assembly_get_code_base signature to accept a boolean (to escape, or 
7883         not, the assembly code base).
7884
7885 2005-12-23  Dick Porter  <dick@ximian.com>
7886
7887         * icall.c: 
7888         * threads-types.h: 
7889         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
7890         CreateEvent icall now returns "created" boolean parameter.
7891
7892 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
7893
7894         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
7895         #76967.
7896
7897         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
7898         when attr_klass is an interface. Fixes #77045.
7899
7900 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
7901
7902         * marshal.c (emit_struct_conv): Fix previous patch.
7903         
7904         * marshal.c (emit_struct_conv): Add a check for fields with the same
7905         offset.
7906
7907 2005-12-20  Raja R Harinath  <rharinath@novell.com>
7908
7909         Fix regression in Mono.C5.
7910         * class.c (mono_class_create_generic): If 'klass' is an interface
7911         set up the interface offsets.
7912         (mono_class_is_assignable_from): Don't throw away generic arguments.
7913
7914 2005-12-19  Raja R Harinath  <rharinath@novell.com>
7915
7916         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
7917         type parameters.
7918
7919 2005-12-15  Raja R Harinath  <rharinath@novell.com>
7920
7921         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
7922         dead store.
7923         (do_mono_metadata_parse_generic_class): Don't pass the current
7924         generic context when parsing the type being instantiated: it
7925         cannot use it, anyway.
7926
7927         * loader.c (method_from_memberref): Don't inflate a signature if
7928         it doesn't contain any type parameters.
7929
7930 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
7931
7932         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
7933
7934 2005-12-14  Martin Baulig  <martin@ximian.com>
7935
7936         * class.c
7937         (mono_type_get_name_recurse): Don't return null for type
7938         parameters and open generic classes.
7939         (mono_class_setup_methods): Don't exclude generic instances.
7940         (mono_get_unique_iid): Use different IDs for different
7941         instantiations of the same generic type.
7942         (mono_class_setup_vtable): Only use setup_generic_vtable() for
7943         open generic instances; create a normal vtable for closed generic
7944         instances.
7945         (mono_class_setup_vtable_general): We're now also called for
7946         closed generic instances.
7947
7948         * reflection.c
7949         (mono_reflection_bind_generic_parameters): Correctly use
7950         mono_metadata_lookup_generic_inst() everywhere.
7951
7952 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
7953
7954         * object.c (mono_class_create_runtime_vtable): Call 
7955         mono_class_setup_vtable ().
7956
7957         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
7958         function.
7959         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
7960         #76959.
7961
7962         * loader.c (mono_loader_set_error_type_load): Print the type load
7963         warnings to the console so they are more visible to the user.
7964         (mono_loader_set_error_method_load): Ditto.
7965
7966         * reflection.c (ensure_runtime_vtable): Revert the last change as it
7967         is still broken.
7968         
7969         * reflection.c (ensure_runtime_vtable): Fix build.
7970
7971         * reflection.c (ensure_runtime_vtable): Disable an optimization which
7972         doesn't work in all cases.
7973
7974 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
7975
7976         * object.c (mono_array_new_full): Treat a single dimensional array
7977         with 0 lower bounds as an szarray. Fixes #76973.
7978
7979         * reflection.c (custom_attr_visible): Really fix this.
7980
7981 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
7982
7983         * reflection.c (custom_attr_visible): Allow nested public attributes
7984         as well.
7985
7986         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
7987         interface check.
7988
7989 2005-12-12  Raja R Harinath  <harinath@gmail.com>
7990
7991         * class.c (set_generic_param_owner): Delete.
7992         (mono_class_create_from_typedef): Don't set ->owner field of
7993         generic parameters to "param containers" of enclosing classes.
7994         * reflection.c (mono_reflection_initialize_generic_parameter):
7995         Likewise.
7996
7997 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
7998
7999         * reflection.c (custom_attr_visible): Fix build.
8000
8001 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
8002
8003         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
8004         private attributes.
8005         
8006         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
8007         handling of null parameter defaults.
8008
8009 2005-12-09  Raja R Harinath  <rharinath@novell.com>
8010
8011         * class.c (mono_class_from_generic_parameter): Don't set
8012         klass->generic_container.
8013         (my_mono_class_from_generic_parameter): Likewise.
8014
8015 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
8016
8017         * reflection.c (load_public_key): Fix a warning.
8018         (method_encode_code): Fix unaligned accesses.
8019
8020 2005-12-07  Martin Baulig  <martin@ximian.com>
8021
8022         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
8023
8024         * reflection.c
8025         (write_generic_param_entry): Encode our custom attrs.
8026
8027         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
8028
8029 2005-12-07  Martin Baulig  <martin@ximian.com>
8030
8031         * reflection.c (encode_new_constraint): Removed; we don't use the
8032         `NewConstraintAttribute' anymore.
8033
8034 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
8035
8036         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
8037         not fire a TypeResolve event when Assembly.GetType () is called.
8038
8039 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
8040
8041         Beginning of support for nullable types in the runtime. Parts of
8042         this patch are from Martin.
8043
8044         * appdomain.c (MONO_CORLIB_VERSION): Bump
8045
8046         * domain.c (mono_init_internal): get the nullable type
8047
8048         * class.c (mono_class_is_nullable): New method
8049         (mono_class_get_nullable_param): New mehod
8050         (mono_class_create_generic): In types T? set cast_class to T
8051
8052         * class-internals.h (MonoDefaults): new nullable default class
8053         (mono_class_get_nullable_param, mono_class_get_nullable_param):
8054         new methods.
8055
8056 2005-12-05  Raja R Harinath  <rharinath@novell.com>
8057
8058         * metadata.c (select_container): New.  Refactor code to select the
8059         appropriate GenericContainer given the type of generic parameter
8060         we are looking for.
8061         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
8062         not a MonoGenericContext.  Use select_container.  Update parameters.
8063         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
8064         and MONO_TYPE_MVAR.
8065         (unwrap_arrays): Remove duplicate tests.
8066         (find_generic_param): Rename from 'has_same_context'.  Now walks a
8067         generic instantiated class to find any arguments that are generic
8068         parameters.
8069         (mono_type_create_from_typespec_full): Use find_generic_param to
8070         avoid evicting some generic instantiations from the typespec
8071         cache.
8072
8073 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
8074
8075         * reflection.c: fixed writing of doubles on ARM FPA.
8076
8077 2005-12-02  Robert Jordan  <robertj@gmx.net>
8078
8079         * icall.c: Fixed EventInfo.ReflectedType (#76829).
8080
8081 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8082
8083         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
8084         least on SUSE 10 they are not the same (on debian, they are just the
8085         same thing).
8086
8087 2005-12-01  Raja R Harinath  <rharinath@novell.com>
8088
8089         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
8090         DeclaringType for VARs and MVARs.
8091         * class.c (set_generic_param_owner): Fix initialization of owner
8092         fields.
8093
8094 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
8095
8096         * icall.c: fixed Enum.ToObject() to correctly convert the values.
8097
8098 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8099
8100         * threadpool.c: workaround for a bug that shows up on the Mac:
8101         select()+connect() on a blocking socket is not like it should
8102         be, so we proceed to connect() in that case, wasting the I/O
8103         threadpool thread until connect succeedes. Fixes bug #75436.
8104
8105 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8106
8107         * threadpool.c: fix typo when setting file descriptor states.
8108
8109 2005-11-28  Raja R Harinath  <rharinath@novell.com>
8110
8111         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
8112         * metadata.c (mono_metadata_parse_method_signature_full): Don't
8113         create a temporary signature container.
8114         (mono_metadata_parse_generic_param): Update to changes.
8115         (mono_type_create_from_typespec_full): Update to changes.
8116         * loader.c (method_from_memberref): Don't use a
8117         MonoGenericContainer while parsing a memberref signature.
8118         (method_from_methodspec): Remove dead-store of the 'container'
8119         variable.  It's overwritten before use.
8120
8121         * metadata.c (mono_type_create_from_typespec_full): Make debugging
8122         checks tighter.
8123         (mono_metadata_parse_generic_param): Likewise.
8124         * loader.c (find_method_in_class): Does not need a
8125         MonoGenericContainer.  Use 'mono_method_signature' rather than
8126         'mono_method_signature_full'.
8127         (find_method, mono_get_method_constrained, method_from_memberref):
8128         Update to changes.
8129
8130         * metadata.c (mono_type_create_from_typespec_full): Ensure that
8131         owner-less generic-parameters are never evicted from the typespec
8132         cache.
8133
8134         * loader.c (method_from_memberref): Don't use the current context
8135         when parsing signatures.
8136         (method_from_methodspec, mono_get_method_from_token): Update to changes.
8137
8138         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
8139         side-effects in g_assert.
8140         * loader.c (mono_get_method_from_token): Resolve klass earlier so
8141         that we don't potentially lose information.
8142
8143 2005-11-26  Dick Porter  <dick@ximian.com>
8144
8145         * icall.c:
8146         * threads.c: icalls to implement basic (ie, not named)
8147         System.Threading.Semaphore.
8148
8149 2005-11-24  Dick Porter  <dick@ximian.com>
8150
8151         * process.c
8152         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
8153         Use GetProcessId() if it's available.
8154
8155 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
8156
8157         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
8158
8159 2005-11-23  Raja R Harinath  <rharinath@novell.com>
8160             Ankit Jain  <jankit@novell.com>
8161
8162         * loader.c (mono_get_method_from_token): Initialize 'method' field
8163         of all generic parameters before parsing the signature.  Remove
8164         code that "fixed"-up MVAR references.
8165
8166 2005-11-23  Ankit Jain  <jankit@novell.com>
8167
8168         * metadata.c (mono_metadata_has_generic_params):
8169         (mono_metadata_load_generic_param_constraints):
8170         (mono_metadata_load_generic_params): Move duplicate code ...
8171         (mono_metadata_get_generic_param_row): ... here. Returns the
8172         first row-id in GenericParam table for a given owner (token).
8173         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
8174         prototype.
8175
8176 2005-11-23  Raja R Harinath  <rharinath@novell.com>
8177             Ankit Jain  <jankit@novell.com>
8178
8179         * metadata.c (mono_metadata_class_equal): Pass signature_only when
8180         comparing VARs too.
8181         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
8182         type->data.generic_param only if the type is an MVAR.
8183         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
8184         leak owner-less VARs and MVARs into managed space.
8185
8186 2005-11-21  Martin Baulig  <martin@ximian.com>
8187
8188         * class-internals.h
8189         (MonoMethod): Moved the `generic_container' here from
8190         `MonoMethodNormal' since we now also need it for
8191         `MonoMethodPInvoke';
8192         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
8193         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
8194         an union containing both `MonoMethodNormal' and
8195         `MonoMethodPInvoke'.
8196
8197         * loader.c
8198         (mono_get_method_from_token): Allow implementing generic methods
8199         as interncalls.
8200
8201         * threads.c
8202         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
8203         icall.
8204
8205 2005-11-17  Dick Porter  <dick@ximian.com>
8206
8207         * icall.c: 
8208         * process.h: 
8209         * process.c: Split the Process Start_internal icall into
8210         ShellExecuteEx_internal and CreateProcess_internal, which are
8211         called depending on whether UseShellExecute is true.  Fixes bug
8212         76670.
8213
8214         * appdomain.c (MONO_CORLIB_VERSION): Incremented
8215
8216 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
8217
8218         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
8219         'msize' parameters, use the information in 'mspec' instead.
8220         (emit_object_to_ptr_conv): Ditto.
8221
8222         * marshal.c (emit_struct_conv): Handle explicit layout structs with
8223         fields out of order. Fixes #76733.
8224
8225 2005-11-17  Ankit Jain  <jankit@novell.com>
8226
8227         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
8228
8229 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
8230
8231         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
8232           bug #76575.
8233
8234 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
8235
8236         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
8237         for types with non-auto layout. Fixes #76717.
8238
8239 2005-11-16  Ankit Jain  <jankit@novell.com>
8240
8241         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
8242         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
8243         if generic_context is null.
8244           (mono_metadata_generic_param_equal): param->owner can be null.
8245           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
8246         null.
8247
8248 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
8249
8250         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
8251         the correct value.
8252
8253 2005-11-15  Martin Baulig  <martin@ximian.com>
8254
8255         * object.c (set_value): Use mono_class_from_mono_type() instead of
8256         the hack for generic instances; fixes #76136.
8257
8258 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
8259
8260         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
8261         fields.
8262
8263         * image.c (load_metadata_ptrs): Initialize the new fields.
8264
8265         * reflection.c (create_dynamic_mono_image): Ditto.
8266
8267         * reflection.c (build_compressed_metadata): Use the new fields.
8268
8269         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
8270         icall.
8271
8272         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
8273         icall.
8274         
8275 2005-11-15  Ankit Jain  <jankit@novell.com>
8276             Raja R Harinath  <harinath@gmail.com>
8277
8278         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
8279         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
8280         new per-generic_container cache if the cached MonoType's context matches
8281         the current context.
8282           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
8283         to the expected context.
8284           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
8285
8286 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8287
8288         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
8289         we changed the signature of an icall.
8290         * icall.c: Modify to mono_double_ParseImpl return true/false 
8291         depending on the success, instead of throwing the exception. This will
8292         help us in Double.TryParse methods.
8293         
8294 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
8295
8296         * marshal.c (emit_marshal_object): Throw an exception when
8297         marshalling 'object' instead of crashing. Fixes #76696.
8298
8299 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
8300
8301         * class-internals.h: Add prototype for mono_type_get_full_name ().
8302
8303 2005-11-11  Dick Porter  <dick@ximian.com>
8304
8305         * threads.c (mono_thread_manage): Make sure the main thread has
8306         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
8307
8308 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
8309
8310         * loader.c (mono_loader_set_error_type_load): Log a warning to the
8311         console about the missing type.
8312         (mono_loader_set_error_method_load): Ditto.
8313
8314 2005-11-09  Miguel de Icaza  <miguel@novell.com>
8315
8316         * mono-config.c (mono_get_config_dir): Set the system defaults if
8317         none is specified.
8318
8319         * assembly.c (mono_set_dirs): New API entry point to set the
8320         assembly and the config directory in one call
8321
8322 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
8323
8324         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
8325         the ftnptr was created from a delegate in a domain other than the
8326         current domain. Fixes #75377.
8327
8328         * exception.h exception.c: Add mono_get_exception_not_supported ().
8329
8330 2005-11-08  Martin Baulig  <martin@ximian.com>
8331
8332         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
8333
8334 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
8335
8336         * security-manager.h: Added definitions to deal with strongname key 
8337         pairs bigger (and smaller) than 1024 bits.
8338         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
8339         adjust wrt the public key length being used.
8340
8341 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
8342
8343         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
8344           Windows build (r51396-51397).
8345
8346 2005-11-03  Martin Baulig  <martin@ximian.com>
8347
8348         * class.c (mono_class_setup_vtable_general): Also add generic
8349         methods to the vtable; fixes #76581.
8350
8351 2005-11-01  Miguel de Icaza  <miguel@novell.com>
8352
8353         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
8354         sure that we lookup GetString method from the System.Text.Encoding
8355         class, not the derived class or we get an empty method.
8356
8357         Fixed class #76612.
8358
8359 2005-10-25  Miguel de Icaza  <miguel@novell.com>
8360
8361         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
8362         if it has been previously set (embedders). 
8363
8364         Make mono_set_rootdir available also on Unix.
8365
8366 005-10-24  Robert Jordan  <robertj@gmx.net>
8367
8368         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
8369
8370 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
8371
8372         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
8373         only calls which are made to native code use this flag.
8374
8375         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
8376
8377 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
8378
8379         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
8380         Add support for FieldBuilders.
8381
8382 2005-10-29  Martin Baulig  <martin@ximian.com>
8383
8384         * mono-debug.c
8385         (mono_debug_using_mono_debugger): New public method; returns
8386         whether we're running inside the debugger.
8387
8388 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
8389
8390         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
8391         for Method/Constructor/FieldBuilders.
8392
8393 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
8394
8395         * reflection.c (module_add_cattrs): Save custom attributes for global methods
8396         and fields as well.
8397
8398 2005-10-26  Martin Baulig  <martin@ximian.com>
8399
8400         * mono-debug-debugger.c
8401         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
8402
8403 2005-10-24  Raja R Harinath  <harinath@gmail.com>
8404
8405         * icall.c (base64_to_byte_array): Don't pass an out-of-range
8406         integer to isspace.
8407
8408 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
8409
8410         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
8411         when passing valuetypes byref. Fixes #76502.
8412
8413 2005-10-19  Jackson Harper  <jackson@ximian.com>
8414
8415         * profiler.c: Don't put a . in front of types that are not in a
8416         namespace.
8417
8418 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
8419
8420         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
8421
8422 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
8423
8424         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
8425         #76436.
8426         (mono_marshal_get_ldflda_wrapper): Fix a warning.
8427
8428 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8429
8430         * assembly.c metadata-internals.h icall.c: Define an additional
8431         parameter for mono_assembly_name_parse_full, so we can avoid creating
8432         S.R.AssemblyName.Version when no version info wasn't passed.
8433         
8434 2005-10-09  Miguel de Icaza  <miguel@novell.com>
8435
8436         * class.c (mono_type_get_full_name): Reimplement method that was
8437         removed. 
8438
8439         * image.c: Some docs
8440
8441 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
8442
8443         * profiler.c (output_newobj_profile): Fix printing of Total memory
8444         on x86.
8445
8446 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
8447
8448         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
8449
8450 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
8451
8452         * threads.c: remove debug output.
8453
8454 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
8455
8456         * threads.c (mono_thread_manage): Fix crashes if more than 64
8457         threads need to be aborted. Hopefully fixes #75899.
8458
8459         * assembly.c (mono_stringify_assembly_name): New helper function.
8460
8461         * class.c: Use mono_stringify_assembly_name instead of the similar
8462         static function.
8463
8464         * assembly.h assembly.c: Add support for calling a postload search 
8465         hook if an assembly cannot be loaded.
8466
8467         * appdomain.c: Register new search hooks which call the AssemblyResolve
8468         events in AppDomain. Fixes #75231
8469
8470 2005-10-07  Martin Baulig  <martin@ximian.com>
8471
8472         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
8473         methods without debug info.
8474
8475 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
8476
8477         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
8478         wrappers.
8479
8480 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8481
8482         * file-io.c: now that we return symlinks, use lstat and, when the file
8483         is a symbolic link, stat, to get the file attributes. Also avoid the
8484         conversion to/from utf16/external.
8485
8486 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
8487
8488         * class.c (mono_class_layout_fields): Compute klass->has_references
8489         correctly if an embedded valuetype is not yet initialized. Fixes
8490         #76331.
8491
8492 2005-10-04  Martin Baulig  <martin@ximian.com>
8493
8494         * metadata.c
8495         (mono_metadata_load_generic_param_constraints): New public
8496         function; splitted the constraints loading out from
8497         mono_metadata_load_generic_params().
8498
8499         * class.c (mono_class_create_from_typedef): Call
8500         mono_metadata_load_generic_param_constraints() after setting up
8501         the type and creating our parent; fixes #75329.
8502
8503 2005-10-04  Martin Baulig  <martin@ximian.com>
8504
8505         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
8506         non-dynamic parent classes.
8507
8508 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
8509
8510         * file-io.c : win32 build fix (ETXTBSY seems not found).
8511
8512 2005-10-04  Martin Baulig  <martin@ximian.com>
8513
8514         * reflection.c
8515         (mono_image_get_methodspec_token): Make the cache actually work;
8516         fixes #75974.
8517
8518 2005-10-04  Martin Baulig  <martin@ximian.com>
8519
8520         * class.c (mono_class_name_from_token): Removed the unneccessary
8521         `MonoGenericContext *' argument.
8522
8523 2005-10-04  Martin Baulig  <martin@ximian.com>
8524
8525         * loader.c
8526         (method_from_methodspec): Make the caching work again; fixes the
8527         performance regression from #76262.
8528
8529 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8530
8531         * file-io.c:
8532         * file-io.h:
8533         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
8534         GetFileSystemEntries that performs the same work but without going
8535         into io-layer, locking, etc.
8536
8537 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
8538
8539         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
8540         ThreadState_Stopped as well. Fixes #76047.
8541
8542 2005-09-29  Martin Baulig  <martin@ximian.com>
8543
8544         * class.c
8545         (inflate_generic_context): If the new context has a `gmethod', set
8546         its `container' that that gmethod's `container'.
8547
8548         * metadata.c
8549         (mono_metadata_parse_generic_param): Simplify things;
8550         `generic_container = generic_context->container;' is just fine.
8551
8552         * loader.c (method_from_methodspec): Code cleanups.
8553
8554 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
8555
8556         * decimal.c: fix warning (and let gcc generate correct
8557         code on ARM with optimizations).
8558
8559 2005-09-28  Martin Baulig  <martin@ximian.com>
8560
8561         * loader.c
8562         (method_from_memberref): Added `MonoGenericContext *class_context'
8563         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
8564         (method_from_methodspec): If we're a memberref, use the enclosing
8565         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
8566
8567 2005-09-28  Martin Baulig  <martin@ximian.com>
8568
8569         * object.c (mono_runtime_invoke_array): Added support for
8570         MONO_TYPE_GENERICINST; fixes #75917.
8571
8572 2005-09-27  Martin Baulig  <martin@ximian.com>
8573
8574         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
8575         `k->byval_arg.type' to determine the actual type.
8576
8577         * loader.c (method_from_methodspec): Removed some hacks.
8578
8579 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
8580
8581         * class-internals.h (mono_field_is_deleted): Do the test for
8582         rtspecialname before we check the actual name of the field. This
8583         prevents us from dereferencing a pointer into the string table,
8584         saving us from accessing a few pages
8585
8586         * *.c: Replace the use of {Enter,Leave}CriticalSection with
8587         macros. This will allow a deadlock debugger to easily be plugged
8588         in.
8589
8590 2005-09-27  Martin Baulig  <martin@ximian.com>
8591
8592         * loader.c (method_from_methodspec): Create a "signature"
8593         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
8594
8595 2005-09-27  Martin Baulig  <martin@ximian.com>
8596
8597         * class.c
8598         (inflate_generic_class): Correctly set the new context's
8599         container.
8600
8601         * loader.c
8602         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
8603         instead of a `MonoGenericContext *'.
8604         (mono_method_signature_full): Take a `MonoGenericContainer *'
8605         instead of a `MonoGenericContext *'.
8606
8607         * metadata.c
8608         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
8609         instead of a `MonoGenericContext *'.
8610         (mono_metadata_parse_method_signature_full): Likewise.
8611
8612 2005-09-26  Martin Baulig  <martin@ximian.com>
8613
8614         * class.c
8615         (mono_class_from_generic_parameter): Set `klass->generic_container'
8616         (mono_class_from_generic_parameter): Likewise.
8617         (mono_bounded_array_class_get): We inherit the generic container
8618         from the element class.
8619
8620         * loader.c
8621         (find_method, find_method_in_class): Take a `MonoGenericContext *'
8622         argument rather than computing it here.
8623         (method_from_memberref): Correctly set the generic context before
8624         parsing the signature.  Fixes #75681.
8625
8626 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
8627
8628         * object.c (mono_class_has_special_static_fields): Fix warnings.
8629
8630 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8631
8632         * assembly.c: Add parse_public_key function, to
8633         par the public keys. Also added mono_assembly_name_parse_full,
8634         to define it the parsed key should be freed or not.
8635         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
8636         to parse a long format assembly name.
8637         * metadata-internals.h: Keep mono_assembly_name_parse_full as
8638         private, since calling it to preserve the key requires
8639         freeing it manually.
8640         
8641 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
8642
8643         * locales.c : removed HAVE_ICU part.
8644
8645 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
8646
8647         * object.c (mono_class_create_runtime_vtable): Avoid calling 
8648         field_is_special_static if the klass has no special static fields.
8649
8650         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
8651         (MonoCachedClassInfo): Likewise.
8652
8653         * object.c (mono_class_has_special_static_fields): New helper function.
8654
8655 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
8656
8657         * class.c (mono_class_create_from_typedef): Don't call 
8658         interfaces_from_typedef_full for enums.
8659         (mono_class_create_from_typedef): Compute the base types of enums directly
8660         without calling mono_class_setup_fields ().
8661         (mono_class_find_enum_basetype): New helper function.
8662
8663         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
8664         one place inside the string heap.
8665         
8666 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
8667
8668         * class.c: locking fixes, code cleanups, some docs added.
8669         Allocate some data structures in the image mempool.
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 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
8677
8678         * class-internals.h, class.c, reflection.c: reduce memory taken by
8679         MonoClass.
8680
8681 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
8682
8683         * metadata.c, metadata.h, loader.h: documentation updates, code and
8684         API cleanups.
8685
8686 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
8687
8688         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
8689         the example code.
8690
8691         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
8692         page faults caused by the runtime while reading metadata.
8693
8694 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8695
8696         * socket-io.c: the field names were changed 3 months ago and no one
8697         realized until bug #76077 got filed!
8698
8699 2005-09-20  Martin Baulig  <martin@ximian.com>
8700
8701         * icall.c (assembly_icalls): Removed some unused debugger icalls.
8702
8703 2005-09-20  Martin Baulig  <martin@ximian.com>
8704
8705         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
8706         write the rank into the class entry.
8707
8708 2005-09-20  Martin Baulig  <martin@ximian.com>
8709
8710         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
8711
8712 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
8713
8714         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8715
8716         * icall.c (custom_attrs_defined_internal): New icall.
8717
8718         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
8719         function.
8720         (mono_custom_attrs_construct_by_type): New helper function.
8721
8722 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
8723
8724         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
8725         terminate the resulting string. Fixes #76123.
8726
8727 2005-09-16  Martin Baulig  <martin@ximian.com>
8728
8729         * mono-debug.c
8730         (mono_debug_add_method): Ignore inflated methods for the moment.
8731
8732 2005-09-14  Martin Baulig  <martin@ximian.com>
8733
8734         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
8735
8736 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
8737
8738         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
8739         return a success/failure indication.
8740         (mono_metadata_interfaces_from_typedef_full): Ditto.
8741         (get_constraints): Ditto.
8742
8743 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
8744
8745         * marshal.c (emit_marshal_array): Fix handling of null arrays.
8746         
8747         * marshal.c (emit_marshal_array): Add support for returning string
8748         arrays from delegates. Fixes #76063.
8749
8750         * marshal.c: Use the emit_ldloc/stloc macros where possible.
8751
8752 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
8753
8754         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
8755         icall.
8756
8757 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
8758
8759         * reflection.c icall.c: Fix after mono_get_exception_type_load
8760         signature change.
8761
8762         * assembly.c (mono_assembly_get_assemblyref): New helper function.
8763         (mono_assembly_load_reference): Use the new helper.
8764
8765         * class-internals.h (MonoLoaderError): New structure containing 
8766         information about type loading errors.
8767
8768         * class-internals.h loader.c: Add APIs to store per-thread loader
8769         error information.
8770
8771         * loader.c class.c: Set the loader error if needed.
8772
8773         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
8774
8775 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
8776
8777         * decimal.c: fixed to handle the broken ARM fp format.
8778
8779 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
8780
8781         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
8782         broken.
8783
8784 2005-09-06  Martin Baulig  <martin@ximian.com>
8785
8786         * domain.c (supported_runtimes): Added v2.0.50727.
8787
8788 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
8789
8790         * culture-info.h: reduce the size of some structures.
8791
8792 2005-09-05  Martin Baulig  <martin@ximian.com>
8793
8794         Reflect latest API changes in the August CTP.
8795
8796         * icall.c
8797         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
8798         ("MonoType.HasGenericArguments"): Removed.
8799         ("MonoMethod.BindGenericParameters"): Renamed to
8800         "MakeGenericMethod".
8801         ("MethodBuilder.BindGenericParameters"): Renamed to
8802         "MakeGenericMethod".    
8803
8804 2005-09-05  Martin Baulig  <martin@ximian.com>
8805
8806         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
8807
8808 2005-09-05  Martin Baulig  <martin@ximian.com>
8809
8810         Applying a patch from Michal Moskal <malekith@nemerle.org>.
8811
8812         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
8813         generic_container is non-NULL.
8814
8815 2005-09-05  Martin Baulig  <martin@ximian.com>
8816
8817         Applying a patch from Michal Moskal <malekith@nemerle.org>.
8818
8819         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
8820
8821 2005-08-29  Michal Moskal  <malekith@nemerle.org>
8822
8823         * reflection.c (encode_locals,
8824         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
8825         for large generic types.
8826
8827 2005-09-05  Martin Baulig  <martin@ximian.com>
8828
8829         Applying a patch from Michal Moskal <malekith@nemerle.org>.
8830
8831         * class.c (mono_dup_array_type): New public method.
8832         (mono_metadata_signature_deep_dup): New public method.
8833         (dup_type): Correctly duplicate array and function types.
8834
8835 2005-09-05  Martin Baulig  <martin@ximian.com>
8836
8837         Applying a patch from Michal Moskal <malekith@nemerle.org>.
8838
8839         * reflection.c (get_default_param_value_blobs): Handle generic types
8840         and generic methods.
8841
8842 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
8843
8844         * class.c: Fixed error reporting (method/class were inversed) for 
8845         inheritance demands.
8846         * security-manager.c|h: Added the AppDomain when calling the managed
8847         System.Security.SecurityManager.InheritanceDemand method.
8848
8849 2005-09-01  Raja R Harinath  <rharinath@novell.com>
8850
8851         * reflection.c (encode_marshal_blob): 'marshaltype' and
8852         'marshaltyperef' are alternate sources for the custom marshaler
8853         name.
8854
8855 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
8856
8857         * class.c: fix creation of array classes with rank == 1
8858         (patch by Ankit Jain <jankit@novell.com>).
8859
8860 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
8861
8862         * object.c: fix check for creating the bound data for arrays vs
8863         szarrays.
8864
8865 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8866
8867         * object.c: configuration file name is now based on the executable name,
8868         not the image name. Fixes bug #75931.
8869
8870 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
8871
8872         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
8873         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
8874
8875 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
8876
8877         * rand.c: Use wincrypt.h instead of WinCrypt.h.
8878
8879 2005-08-24  Ankit Jain  <jankit@novell.com>
8880             Raja R Harinath  <rharinath@novell.com>
8881
8882         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
8883           called by it recursively.
8884           (mono_class_init): Remove special case in pending_init handling, since it's
8885           superseded by the fix to mono_class_from_typeref.
8886
8887 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
8888
8889         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
8890         BROKEN_THREAD_START stuff.
8891
8892 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
8893
8894         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
8895         trampoline.
8896
8897         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
8898         
8899         * object.c (mono_delegate_ctor): Replace the original function address with
8900         a delegate trampoline.
8901
8902 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
8903
8904         * icall.c: add boolean argument to base64_to_byte_array and 
8905         InternalFromBase64String to control whether a whitespace-only string
8906         is allowed (or should casue a FormatException to be thrown). We need
8907         this as the behavior has changed between MS.NET 1.x and 2.0, and we
8908         to match the MS behaviour in both profiles.
8909         * appdomain.c: Bump corlib version.
8910
8911 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8912
8913         This patch implements a big portion of publisher policy
8914         support, used to bind assembly versions and redirect
8915         one assembly from version A to version B.
8916
8917         * assembly.c:
8918         New GSList loaded_assembly_bindings, for storing the cached
8919         assembly bindings.
8920         (assembly_binding_maps_name): New static function for checking if a 
8921         assembly binding information maps an assembly name.
8922         (mono_assembly_binding_info_free): New function for freeing
8923         assembly binding information resources.
8924         (get_publisher_policy_info): New static function for retrieving 
8925         assembly binding information from a MonoImage.
8926         (compare_versions): New static function for comparing an assembly
8927         binding information data and the version of an assembly name.
8928         (check_policy_versions): New static function for checking if an
8929         assembly binding info mapping an assembly name is valid for it.
8930         (mono_assembly_load_publisher_policy): New static function for
8931         loading the 'policy.major.minor.MyAssembly' image for an assembly
8932         with an assembly name 'aname'.
8933         (mono_assembly_bind_version): New static function for updating
8934         assembly redirection.
8935         (mono_assembly_apply_binding): New static function for applying
8936         assembly binding.
8937         (search_binding_loaded): New static function for searching 
8938         loaded assembly binding infos in the cache domain.
8939         (mono_assembly_load_full): Don't apply assembly binding for
8940         reflection only assemblies.
8941
8942         * metadata-internals.h: Add MonoAssemblyBindingInfo,
8943         which contains information about assembly binding. Also
8944         declare signature for mono_config_parse_publisher_policy ()
8945         function, used to retrieve pub policy info.
8946         
8947         * mono-config.c:
8948         (publisher_policy_start): New static function used to parse publisher 
8949         policy config files.
8950         (publisher_policy_parser): New static MonoParseHandler containing 
8951         the functions used when parsing config files.
8952         (mono_config_parse_publisher_policy): New function for parsing
8953         publisher policy files.
8954         
8955 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
8956
8957         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
8958
8959         * marshal.c (mono_delegate_free_ftnptr): Ditto.
8960
8961         * object.c (mono_get_addr_from_ftnptr): New helper function.
8962
8963         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
8964
8965         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8966
8967 2005-08-19  Dick Porter  <dick@ximian.com>
8968
8969         * threads.c, threads.h, appdomain.c, appdomain.h,
8970         profiler-private.h, monitor.c, object.c, object-internals.h,
8971         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
8972         store the thread ID, so it can hold a 64 bit value if needed.
8973
8974 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
8975
8976         * reflection.c (mono_reflection_create_dynamic_method): Store the
8977         handle class into the method references as well so ldtoken works in
8978         dynamic methods.
8979
8980         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
8981         types.
8982
8983 2005-08-19  Ankit Jain <jankit@novell.com>
8984
8985         Fix #75847.
8986         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
8987           here rather than using the method signature of a arbitrary function
8988           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
8989           two arguments.
8990           Hack done with Harinath.
8991
8992 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8993
8994         * threadpool.c: disable printing stack traces when we get a exception
8995         in a threadpool thread. I need to do more testing to figure out which
8996         cases actually print this. Fixes bug #75828.
8997
8998 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8999
9000         * icall.c: there might be ignored whitespace after the last '='. This
9001         fixes length computation and bug #75840.
9002
9003 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
9004
9005         * assembly.c (mono_assembly_load_full): Consider .exe extension as
9006         well. Fixes #75809.
9007
9008         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
9009         #75784.
9010         
9011         * reflection.c (create_custom_attr_data): Ditto.
9012
9013 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
9014
9015         * locales.c, culture-info.h : removed RegionLCIDMap.
9016         * culture-info-tables.h : regenerated.
9017
9018 2005-08-16  Martin Baulig  <martin@ximian.com>
9019
9020         * class.c (mono_type_get_name_recurse): Small fix.
9021
9022 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
9023
9024         * locales.c : indentation fixie.
9025
9026 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
9027
9028         * object-internals.h,
9029           locales.h,
9030           locales.c,
9031           culture-info.h,
9032           icall.c : added RegionInfo table support.
9033         * culture-info-table.h : regenerated for region support.
9034
9035 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
9036
9037         * reflection.c (resolve_object): handle all kinds of MonoMethod
9038         including generic ones
9039
9040 2005-08-12  Ankit Jain <jankit@novell.com>
9041
9042         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
9043           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
9044
9045 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
9046
9047         * process.c: Don't close a thread handle when it's NULL. This is a
9048         workaround for bug #75733.
9049
9050 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
9051
9052         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
9053
9054 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
9055
9056         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
9057
9058 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9059
9060         * threadpool.c: if a work item in the thread pool has a callback that
9061         catches a exception, don't propagate it after invoking the callback.
9062         Fixes bug #75336.
9063
9064 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
9065
9066         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
9067
9068         * class-internals.h (MonoCachedClassInfo): Add some new fields.
9069
9070         * class.c (mono_class_init): Load field info lazily in the AOT case.    
9071
9072         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
9073
9074 2005-08-03  Ankit Jain  <jankit@novell.com>
9075
9076         Fix #75683.
9077         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
9078           PInvoke calling convention is 0.
9079
9080 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
9081
9082         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
9083         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
9084
9085 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
9086
9087         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
9088         to handle threads not started by the GC (patch by Michael Meeks
9089         <michael.meeks@novell.com>).
9090
9091 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
9092
9093         * reflection.c: Make buffer used in emitting types larger for some
9094         big generic types (patch by Michal Moskal).
9095
9096 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
9097
9098         * mono-debug.c: Fix some (not all) alignment problems.
9099
9100 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9101
9102         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
9103         Invoke mono_image_load_from_data_full passing the refonly
9104         parameter.
9105
9106         * assembly.c
9107         (mono_assembly_open_from_bundle): Add the refonly argument, 
9108         in order to pass it to other methods it calls to.
9109         (do_mono_assembly_open): Add the refonly argument, in order 
9110         to pass it to other methods it calls to.
9111         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
9112         the refonly parameter to it.
9113
9114         * image.c: Add loaded_images_refonly_hash and
9115         loaded_images_refonly_guid_hash to cache the reflection
9116         only loaded images.
9117         (mono_images_init): Initialize the hash tables used for
9118         caching the reflection only images.
9119         (load_modules): Invoke mono_image_open_full passing the refonly
9120         parameter to load the modules the correct way.
9121         (build_guid_table): Add the refonly argument, to re-build the 
9122         correct hash table.
9123         (do_mono_image_open): Added the refonly argument, in order to
9124         define it for the loaded image.
9125         (mono_image_loaded_full): New function, which receives an
9126         additional parameter to look for the image in the refonly or
9127         non-refonly section.
9128         (mono_image_loaded): Updated, using mono_image_loaded_full.
9129         (mono_image_loaded_by_guid_full): The same case that happens
9130         with mono_image_loaded_full.
9131         (mono_image_loaded_by_guid): Likewise.
9132         (register_image): Use the ref_only variable inside MonoImage
9133         to decide in which hash table store the current image.
9134         (mono_image_open_from_data_full): Rename
9135         mono_image_open_from_data to mono_image_open_from_data_full,
9136         adding the refonly argument, to define the ref_only variable 
9137         inside MonoImage.
9138         (mono_image_open_from_data): Return 
9139         mono_image_open_from_data_full.
9140         (mono_image_open_full): Rename mono_image_open to
9141         mono_image_open_full, receiving the new refonly argument,
9142         to pass it to inner methods.
9143         (mono_pe_file_open): Update this function, to open
9144         a MonoImage as a non-refonly image.
9145         (mono_image_close): Use the refonly variable inside
9146         MonoImage to remove the image from the correct caches.
9147
9148         * image.h: Add the signatures of mono_image_open_full,
9149         mono_image_open_from_data_full, mono_image_loaded_full,
9150         mono_image_loaded_by_guid_full.
9151
9152         * metadata-internals.h: Add the ref_only field to 
9153         MonoImage.
9154         
9155 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9156
9157         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
9158         Fix the last behavior, which used to load the assemblies and
9159         extract MonoReflectionAssemblyName information, instead of
9160         extract it from the metadata tables. Needed for Reflection
9161         Only assemblies.
9162         
9163 2005-07-29  Martin Baulig  <martin@ximian.com>
9164
9165         * mono-debug-debugger.c
9166         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
9167         not initialized.
9168
9169         * mono-debug.c
9170         (mono_debug_address_from_il_offset): Check whether we have
9171         debugging support before attempting to take the lock.
9172         (mono_debug_source_location_from_address): Likewise.
9173         (mono_debug_source_location_from_il_offset): Likewise.
9174         (mono_debug_il_offset_from_address): Likewise.
9175         (mono_debug_address_from_il_offset): Likewise.
9176
9177 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
9178
9179         * class.c (mono_class_from_name_case): Add support for dynamic images.
9180         Fixes #75650.
9181
9182         * object.c (mono_class_compute_gc_descriptor): Add a workaround
9183         for #75479.
9184
9185 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
9186         
9187         * reflection.c (mono_method_get_object): Fix warning.
9188
9189 2005-07-28  Martin Baulig  <martin@ximian.com>
9190
9191         * mono-debug.c
9192         (mono_debug_add_wrapper): Also write the wrapper type.
9193
9194 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
9195
9196         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
9197         
9198         * class.c (mono_class_init): Avoid reading nested classes if the AOT
9199         data indicates the class has none.
9200
9201 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
9202
9203         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
9204         loader lock with the debugger lock. Prevents deadlocks for beagle.
9205
9206         Beagle can now run on an smp box for a weekend without any
9207         issues. Woohoo!
9208
9209 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
9210
9211         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
9212         in a module. Fixes #75629.
9213
9214 2005-07-26  Martin Baulig  <martin@ximian.com>
9215
9216         * mono-debug.c (mono_debug_add_wrapper): New static method.
9217         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
9218         interncall or a wrapper.
9219
9220         * mono-debug.h (MonoDebugWrapperData): New public typedef.
9221         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
9222         (MONO_DEBUGGER_VERSION): Bump to 51.
9223
9224         * mono-debug-debugger.c
9225         (mono_debugger_add_type): Removed this empty function.
9226         (mono_debugger_add_method): Likewise.
9227
9228 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
9229
9230         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
9231         before accessing method->slot.
9232
9233 2005-07-21  Jb Evain  <jbevain@gmail.com>
9234
9235         * reflection.c (method_encode_clauses/class): Handle filters clauses.
9236         Fixes #75010.
9237
9238 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
9239
9240         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
9241         #75587.
9242
9243 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
9244
9245         * image.h image.c: Add mono_image_get_guid () API function.
9246
9247 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
9248
9249         There were issues when multiple threads tried to load
9250         assemblies. A deadlock was created between assemblies_mutex and
9251         mono_domain_assemblies_lock. This fixes the issue by making the
9252         assembly ref counting be lock free. See bug 75586.
9253         
9254         * image.c (mono_image_close): The add ref function here was using
9255         Interlocked operations while the unref was using a mutex and a
9256         --. I don't think this was ever a bug that would be exposed in a
9257         non-pendantic way (ie, by an embedder doing a ref on one thread
9258         and an unref on another), but for the sake of correctness, this is
9259         now Interlocked.
9260
9261         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
9262         (mono_assembly_load_reference): Call mono_assembly_addref rather
9263         than touching the refcount ourselves.
9264         (mono_assembly_close): Use InterlockedDecrement to unref the
9265         assembly. Don't acquire the lock unless it is actually needed.
9266
9267 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
9268
9269         * class.c (mono_class_layout_fields): Fix calculation of has_references
9270         for generic types.
9271
9272 2005-07-12  Martin Baulig  <martin@ximian.com>
9273
9274         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9275
9276         * metadata.c
9277         (mono_type_hash): Provide better hashing for generic instances.
9278         (mono_generic_inst_hash): Improve hashing.
9279         (mono_generic_class_hash): Likewise.
9280
9281         * reflection.c (mymono_metadata_type_hash): Improve hashing for
9282         generic instances.
9283
9284 2005-07-12  Martin Baulig  <martin@ximian.com>
9285
9286         * reflection.c (mono_reflection_create_runtime_class): Remove the
9287         hack for generic type definitions and non-`Run' assemblies.
9288         (mono_reflection_bind_generic_parameters): Also use
9289         `klass->wastypebuilder' to check for TypeBuilders.
9290
9291 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
9292
9293         * class.c (mono_class_layout_fields): Fix calculation of has_references
9294         for generic types.
9295
9296         * class.c (inflate_generic_class): Fix a leak.
9297         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
9298         for generic types.
9299
9300 2005-07-11  Martin Baulig  <martin@ximian.com>
9301
9302         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
9303         on error.
9304
9305 2005-07-11  Martin Baulig  <martin@ximian.com>
9306
9307         * loader.c (find_method): Also lookup in
9308         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
9309
9310 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9311
9312         * appdomain.c (mono_domain_unload): Don't free the error message
9313         before passing it to mono_get_exception_...
9314
9315         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
9316         
9317 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
9318
9319         * threads.c: try to better guess an available RT signal (bug #75387).
9320
9321 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9322
9323         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
9324         and CACHE_OBJECT.
9325
9326 2005-07-07  Martin Baulig  <martin@ximian.com>
9327
9328         * class.c (mono_type_get_name_full): Return NULL for
9329         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
9330         fixes #75408.
9331
9332 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9333
9334         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
9335         exit the appdomain as well being aborted.
9336
9337         * threadpool.c: Create all threadpool threads inside the root appdomain, and
9338         change back to the root domain after calling managed code. This enables
9339         appdomains using threadpools to be unloaded.
9340
9341 2005-07-07  Martin Baulig  <martin@ximian.com>
9342
9343         * class-internals.h
9344         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
9345         into `MonoDynamicGenericClass' since we only need it for dynamic
9346         types.
9347
9348         * reflection.c (mono_class_bind_generic_parameters): We don't need
9349         to compute the `parent' here.
9350
9351 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
9352
9353         * culture-info-table.h : regenerated.
9354
9355 2005-07-06  Martin Baulig  <martin@ximian.com>
9356
9357         * icall.c
9358         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
9359
9360         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
9361
9362 2005-07-06  Martin Baulig  <martin@ximian.com>
9363
9364         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
9365         we're doing a signature-only comparision; fixes #74945.
9366
9367 2005-07-06  Martin Baulig  <martin@ximian.com>
9368
9369         * class-internals.h (MonoGenericClass): Moved some things out into
9370         a new `MonoInflatedGenericClass' type.  
9371         (MonoInflatedGenericClass): New type; the `klass' of a
9372         `MonoGenericClass' is now computed lazyly in
9373         mono_get_inflated_generic_class().      
9374
9375         * class.c (mono_get_inflated_generic_class): New public function.
9376         (mono_class_inflate_generic_method): Removed the unused
9377         `MonoClass *' argument.
9378         (setup_generic_vtable): Don't call mono_get_inflated_method() on
9379         all the methods.
9380         (mono_class_create_generic): Make this static and merge it with
9381         mono_class_create_generic_2(); we're now called automatically from
9382         mono_get_inflated_generic_class().
9383
9384         * loader.c (mono_method_signature): Call
9385         mono_get_inflated_method() here.
9386
9387 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
9388
9389         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
9390         type of fields with RVA.
9391
9392         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
9393         for this pseudo class.
9394         (my_mono_class_from_generic_parameter): Likewise.
9395         (mono_class_init): Allow interfaces to have cctors.
9396
9397 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
9398
9399         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
9400         lazily for AOT methods.
9401
9402 2005-07-05  Martin Baulig  <martin@ximian.com>
9403
9404         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
9405         returns FALSE for a successful match, not TRUE.
9406
9407 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
9408
9409         * loader.c (mono_method_get_index): Optimize this a bit.
9410
9411 2005-07-04  Martin Baulig  <martin@ximian.com>
9412
9413         * class.c
9414         (class_compute_field_layout): Move the check for generic type
9415         definitions into mono_class_layout_fields().  Fixes #74684.
9416         (mono_class_from_generic_parameter): Correctly compute
9417         `klass->parent'; fixes #75457.
9418
9419         * reflection.c (register_assembly, register_module): Make sure
9420         `domain->rejobject_hash' is already created.
9421
9422 2005-07-02  Martin Baulig  <martin@ximian.com>
9423
9424         * class-internals.h
9425         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
9426         `MonoDynamicGenericClass'.      
9427
9428 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
9429
9430         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
9431         returned by a field getter is null, since null is a valid value.
9432
9433 2005-07-01  Martin Baulig  <martin@ximian.com>
9434
9435         * reflection.c (mono_reflection_generic_class_initialize): Update
9436         the `dgclass->fields [i].parent' to the correct class.
9437         (mono_image_get_fieldref_token): Use the declaring type, not the
9438         reflected type.
9439
9440 2005-07-01  Martin Baulig  <martin@ximian.com>
9441
9442         * loader.c (find_method): Also look in the interfaces; fixes #75429.
9443
9444 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
9445
9446         * threads.c (thread_cleanup): assert that thread != NULL
9447         (wait_for_tids_or_state_change): We were using the wrong variable
9448         when accessing wait->threads. `i' was always out of the bounds of
9449         the array.
9450
9451 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9452
9453         * loader.c: map user32 and kernel32 to libMonoSupportW
9454
9455 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
9456
9457         * appdomain.c (unload_thread_main): Mark this as WINAPI.
9458
9459 2005-06-28  Martin Baulig  <martin@ximian.com>
9460
9461         * loader.c (method_from_methodspec): Fix #75334.
9462
9463 2005-06-28  Martin Baulig  <martin@ximian.com>
9464
9465         Fix #74953 - Arrays now implement the generic IList<T> interface
9466         on the 2.0 platform.
9467
9468         * class-internals.h (MonoDefaults): Added `generic_array_class'.
9469
9470         * reflection.c (mono_class_bind_generic_parameters): New public
9471         function; similar to mono_reflection_bind_generic_parameters(),
9472         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
9473
9474         * domain.c (mono_init_internal): Try to initialize.
9475         `mono_defaults.generic_array_class' here; this'll only succeed if
9476         we're using the 2.0 corlib.
9477
9478         * icall.c
9479         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
9480         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
9481         (mono_lookup_internal_call): Added support for nested classes.
9482
9483         * loader.c
9484         (mono_get_method_from_token): Set `result->signature->pinvoke' if
9485         we're an interncall and have generic arguments.
9486
9487         * class.c
9488         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
9489         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
9490         instance of System.Array.InternalArray<T> for arrays, so they
9491         implement the generic IList<T> interface.
9492
9493 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
9494
9495         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
9496         (chastamar@yahoo.com). Fixes #75374.    
9497
9498 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
9499
9500         * culture-info-table.h: regenerated.
9501
9502 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9503
9504         * icall.c: handle spaces correctly for base64 strings.
9505
9506 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
9507
9508         * *.c: Kill some warnings.
9509
9510 2005-06-23  Duncan Mak  <duncan@novell.com>
9511
9512         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
9513         that this builds on Solaris 10 (x86).
9514
9515 2005-06-23  Martin Baulig  <martin@ximian.com>
9516
9517         * class.c
9518         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
9519         generic type definitions.
9520
9521 2005-06-23  Martin Baulig  <martin@ximian.com>
9522
9523         Fix #75331.
9524
9525         * metadata.c (mono_class_get_overrides): Renamed to
9526         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
9527         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
9528         pass it to mono_get_method_full().
9529
9530 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
9531
9532         * reflection.c (mono_reflection_create_runtime_class): take the
9533         mono_domain_lock in this method. Prevents deadlocks
9534
9535 2005-06-22  Martin Baulig  <martin@ximian.com>
9536
9537         * loader.c (method_from_methodspec): Fix #75330.
9538
9539 2005-06-22  Martin Baulig  <martin@ximian.com>
9540
9541         * reflection.c (type_get_qualified_name): Use
9542         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
9543         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
9544         argument; use it if we don't have an assembly name.
9545
9546 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
9547
9548         * object.c: In mono_message_init, set "copy out" flag for in
9549         parameters with the [Out] flag.
9550
9551 2005-06-21  Martin Baulig  <martin@ximian.com>
9552
9553         * class.c
9554         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
9555         and MONO_TYPE_PTR.
9556
9557 2005-06-21  Martin Baulig  <martin@ximian.com>
9558
9559         * class.c (mono_class_init): Don't initialize `class->fields' for
9560         generic instances since they're initialized again in
9561         compute_field_layout(). 
9562         (compute_field_layout): Set the field's `generic_info' here; fix
9563         #75320. 
9564
9565 2005-06-21  Martin Baulig  <martin@ximian.com>
9566
9567         * class-internals.h
9568         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
9569
9570         * metadata.c (mono_metadata_generic_method_equal): Also
9571         distinguish the `generic_class'; fixes #75334.
9572
9573 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9574
9575         * domain.c:
9576         * appdomain.c:
9577         * domain-internals.h:
9578         * reflection.c: 'domain_assemblies' field is now protected by its own
9579         lock. Don't call into managed code to run the AssemblyLoad event if we
9580         now there are no registered delegates for it.
9581
9582 2005-06-20  Martin Baulig  <martin@ximian.com>
9583
9584         * class.c (mono_class_is_assignable_from): Use a custom version of
9585         mono_class_has_parent() to make things work for generic instances;
9586         fix #75300.
9587
9588 2005-06-20  Martin Baulig  <martin@ximian.com>
9589
9590         * loader.c (method_from_methodspec): Apply a patch from
9591         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
9592
9593 2005-06-20  Martin Baulig  <martin@ximian.com>
9594
9595         * class.c (mono_class_init): Reverted Zoltan's last change; it
9596         breaks generics.
9597
9598 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
9599
9600         * threads.c (wait_for_tids_or_state_change): Add missing locking.
9601
9602 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9603
9604         * socket-io.c: fix the index in the socket array for writable/error
9605         sockets. Fixes bug #75306.
9606
9607 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
9608
9609         * class.c (mono_class_init): Allow interfaces to have static ctors.
9610
9611 2005-06-17  Martin Baulig  <martin@ximian.com>
9612
9613         * loader.c (method_from_methodspec): Use `context->container' when
9614         parsing the `gmethod->inst'.
9615
9616 2005-06-17  Martin Baulig  <martin@ximian.com>
9617
9618         * class.c (mono_type_get_name_recurse): Don't add the assembly
9619         name for type arguments.
9620
9621 2005-06-15  Martin Baulig  <martin@ximian.com>
9622
9623         * reflection.c (mono_image_get_inflated_method_token): Encode
9624         correct klass; fixes #75260.
9625
9626 2005-06-13 Michal Moskal <malekith@nemerle.org>
9627
9628         * icall.c: Make GetCorrespondingMethod/Constructor take
9629         MonoReflectionMethod method not MonoMethod. Removed
9630         MonoType.GetCorrespondingField, and make
9631         MonoGenericType.GetCorrespondingField take name not
9632         MonoClassField.
9633
9634 2005-06-13  Michal Moskal <malekith@nemerle.org>
9635
9636         * reflection.c (field_encode_signature, encode_locals):
9637          Make sizes of buffers for types larger (for big generic types).
9638          (create_generic_typespec,
9639          mono_reflection_sighelper_get_signature_local,
9640          mono_reflection_sighelper_get_signature_field):
9641          Add asserts for too small buffers.
9642
9643 2005-06-15  Martin Baulig  <martin@ximian.com>
9644
9645         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
9646         if our parent is not a dynamic type.
9647
9648 2005-06-15  Martin Baulig  <martin@ximian.com>
9649
9650         * class-internals.h (MonoTypeNameFormat): New enum.
9651
9652         * class.c
9653         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
9654         (mono_type_get_full_name): Removed.
9655         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
9656         argument instead of the boolean's.
9657
9658         * icall.c (ves_icall_System_MonoType_getFullName):
9659         Added `gboolean assembly_qualified'.    
9660
9661         * reflection.h
9662         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
9663
9664         * reflection.c (mono_reflection_parse_type): Parse the new type
9665         name format.
9666
9667 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9668
9669         * icall.c: no need to convert from utf16 to utf8 and then back again
9670         after the call to GetLogicalDrives.
9671
9672 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9673
9674         * icall.c: frombase64. Fix problems exposed by new tests.
9675
9676 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9677
9678         * icall.c: added internal calls for converting char [] and strings in
9679         base64 into byte [].
9680
9681 2005-06-10  Martin Baulig  <martin@ximian.com>
9682
9683         * class.c (mono_class_create_generic_2): Read the nested classes
9684         from the metadata rather than from `gklass->nested_classes' since
9685         `gklass' might not be initialized yet.
9686
9687 2005-06-09  Duncan Mak  <duncan@novell.com>
9688
9689         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
9690         all public headers. Fixes #74919.
9691
9692 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
9693
9694         * domain.c: The key for proxy_vtable_hash is now a pointer
9695         array. Added new GHashFunc and GCompareFunc functions for this.
9696
9697         * class.h: The list of interfaces in MonoRemoteClass is known in
9698         advance and can't grow (we create a new MonoRemoteClass if needed),
9699         so now the interface array can be allocated together with
9700         MonoRemoteClass.
9701         
9702         * object.c: Added a new method create_remote_class_key.
9703         Fixed mono_remote_class so it does not depend on
9704         mono_upgrade_remote_class.
9705         Removed extend_interface_array.
9706         Added new method clone_remote_class(), which makes a copy of a remote
9707         class and adds a new interface or class to it.
9708         mono_upgrade_remote_class() now creates a new remote class (or gets
9709         it from the cache) if an vtable upgrade is needed. In this way
9710         we make sure that other objects sharing the same remote class
9711         don't get the new vtable with unwanted interfaces.
9712         
9713         * object-internals.h:
9714         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
9715         
9716         * marshal.c: Track changes in mono_upgrade_remote_class().
9717
9718 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
9719         * icall.c: Add runtime methods for obtaining members of inflated
9720         class, which were created from supplied non-inflated members. It
9721         is used in internal Get{Method,Constructor,Field} methods in
9722         System.Type
9723
9724 2005-06-09  Martin Baulig  <martin@ximian.com>
9725
9726         * reflection.c
9727         (mono_reflection_bind_generic_method_parameters): Fix #75169.
9728
9729 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9730         * reflection.c (mono_image_basic_init): Define
9731         Version in MonoDynamicAssembly. 
9732         
9733 2005-06-08  Martin Baulig  <martin@ximian.com>
9734
9735         Fix #75136.
9736
9737         * loader.c
9738         (mono_method_signature_full): New public method; takes a
9739         `MonoGenericContext *'.
9740         (find_method): Use mono_method_signature_full() and pass the
9741         klass'es context to it.
9742
9743         * class.c (mono_class_is_inflated_method): Use
9744         mono_method_signature_full() and pass the context to it.
9745
9746 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
9747
9748         * object.c: add proper locking in mono_remote_class_vtable(),
9749         fixes possible memory corruption.
9750
9751 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
9752
9753         * marshal.c (mono_remoting_marshal_init): set
9754         initialized after initialization.
9755
9756 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9757
9758         * locales.c : hush.
9759
9760 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
9761
9762         * object.c (extend_interface_array): fix really silly
9763         memory corrupting / comparison bug.
9764
9765 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9766
9767         * reflection.c: Functions added to support the creation
9768         of CustomAttributeData, which includes Attribute data
9769         used by ReflectionOnly methods.
9770
9771         * reflection.h:  mono_reflection_get_custom_attrs_data and
9772          mono_custom_attrs_data_construct added (functions exposed).
9773
9774          * icall.c: Added mono_reflection_get_custom_attrs_data
9775          as icall.
9776         
9777 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
9778
9779         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
9780         lupus's request.
9781
9782 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
9783
9784         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
9785
9786         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
9787         dynamic DllImportAttribute.
9788
9789         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
9790         dynamic DllImportAttribute.
9791
9792         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
9793         Fixes #75162.
9794
9795 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9796
9797         * threads.c: avoid segfault when an unstarted thread is aborted.
9798
9799 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
9800
9801         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
9802         Returns the name and version of the runtime for reporting.
9803
9804 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9805
9806         * appdomain.c: bump corlib version.
9807         * object-internals.h: new field in MonoReflectionAssembly.
9808
9809 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9810
9811         * object-internals.h: Carlos forgot to add this field.
9812
9813 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9814
9815         * icall.c: Added create_version to create instances
9816         of Version of MonoReflectionAssemblyName. This change helps
9817         the AssemblyName tests to keep running fine.
9818         
9819 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
9820   
9821         * object.c (mono_method_return_message_restore): A somehow less
9822         intrusive fix for #75138.
9823
9824 2005-06-03  Raja R Harinath  <rharinath@novell.com>
9825
9826         * object.c (mono_method_return_message_restore): Fix computation
9827         of expected number of out args.
9828
9829 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
9830
9831         * reflection.c (mono_image_get_method_info): Fix the case when the
9832         charset is empty.
9833
9834 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
9835
9836         * object.c: Added missing null check in
9837           mono_method_return_message_restore.
9838
9839 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
9840
9841         * reflection.c (mono_image_get_method_info): Handle the case when
9842         dllentry is empty.
9843
9844 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
9845
9846         * object.c: When creating the vtable for a proxy, take into account
9847         all inherited interfaces, not only the ones registered in
9848         iclass->interfaces. This fixs bug #74996.
9849         Also, in mono_method_return_message_restore, verify that the array
9850         of out args has the expected lengh.
9851
9852 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9853
9854         * socket-io.c: update the timeout in Poll when the call is interrupte.
9855
9856 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9857
9858         * socket-io.c: support abort/suspend in Select_internal after last
9859         change.
9860
9861 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9862
9863         * threadpool.c: remove warning.
9864
9865 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9866
9867         * icall.c:
9868         * socket-io.[ch]: Select_internal uses poll() now when available, thus
9869         removing the 1024 limit from select(). Runtime part of the fix for
9870         bug #71203.
9871
9872 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9873
9874         * socket-io.c: when resolving the addresses for the same
9875         host returned by gethostname(), get the local IPs from the interface
9876         list. Loopback addresses are discarded if the are interfaces up with
9877         non-loopback ones. Fixes bug #63265.
9878
9879 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
9880
9881         * appdomain.c, verify.c, object-internals.h, reflection.c:
9882         bumped corlib number to 36, and added new extra_flags field
9883         to ReflectionMethodBuilder and friends.  Fixes #75060.
9884
9885 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
9886
9887         * gc.c: register a new weak link only if the object is non-null
9888         (fixes bug#75047).
9889
9890 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
9891
9892         * culture-info.h : short time pattern too.
9893
9894 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
9895
9896         * culture-info.h : expand long time pattern string length.
9897
9898 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
9899
9900         * culture-info-table.h : update (more French date format; #72788).
9901
9902 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
9903
9904         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
9905         the method is static. Fixes #75029.
9906
9907 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
9908
9909         * reflection.c: Update the table_idx field of method builders after
9910         saving the module, since it can change. This is a workaround for
9911         bug #74914. 
9912
9913 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
9914
9915         * culture-info-table.h : update (additional French date format).
9916
9917 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
9918
9919         * icall.c (ves_icall_type_Equals): Revert last change.
9920         
9921         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
9922
9923         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
9924
9925 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
9926
9927         * class-internals.h: Added executioncontext_class field to 
9928         MonoDefaults structure.
9929         * domain.c: Cache System.Threading.ExecutionContext class in 
9930         mono_defaults.
9931         * object.c: Capture the ExecutionContext for asynchroneous calls in
9932          mono_async_result_new.
9933         * object-internals.h: Added execution_context and original_context 
9934         fields to MonoAsyncResult. Added execution_context to MonoThread.
9935         * security-manager.c|.h: Added mono_get_context_capture_method to 
9936         return the capture method (if required by the security manager or by
9937         the framework version used).
9938         * threadpool.c: Apply capture (if present) ExecutionContext in 
9939         mono_async_invoke and revert to original context after it completes.
9940
9941 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
9942
9943         * culture-info-table.h : updated (real hacky solution for zh-CHT).
9944
9945 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
9946
9947         * culture-info-table.h : zh-CHT related workaround.
9948
9949 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
9950
9951         * marshal.c (emit_marshal_custom): Add some error checking and call the
9952         methods in the ICustomMarshaler interface. Fixes #74875.
9953         
9954         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
9955         native->managed wrappers.
9956
9957 2005-05-12  Martin Baulig  <martin@ximian.com>
9958
9959         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
9960         here and use the loader lock.
9961
9962         * mono-debug.c: Properly lock when the debugger is not attached.
9963         (mono_debug_init): Release the initial lock if we're not running
9964         in the debugger.
9965
9966 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
9967
9968         * marshal.c (emit_marshal_custom): Pass through NULL values without
9969         calling the custom marshalling routines.
9970
9971         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
9972         conversion in structures. Fixes #74882.
9973
9974 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
9975
9976         * culture-info-table.h : zh-* cultures were missing.
9977
9978 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
9979
9980         * threads.c: Added a new event background_change_event which is signaled
9981         when a thread changes its background mode.
9982         Moved here several checks previously done in managed code. The checks
9983         require the thread lock, and using the thread lock in managed code
9984         can result in deadlocks.
9985         Merged Start_internal and Thread_internal into a single method. Now 
9986         Thread_internal does all work of creating and starting a thread.
9987         Added icalls for setting and getting the state of the object. Moved from
9988         managed code to avoid locking there.
9989         Added wait_for_tids_or_state_change() which is called instad of
9990         wait_for_tids when waiting for non-backround threads to end. This method
9991         will return if one of the threads ends or the background_change_event
9992         is signaled.
9993         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
9994         the background mode. This method signals the background_change_event
9995         event.
9996         * icall.c:
9997         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
9998         removed Start_internal.
9999         
10000 2005-05-11  Martin Baulig  <martin@ximian.com>
10001
10002         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
10003         to order of some fields to get proper alignment on 64-bit machines.
10004
10005 2005-05-11  Martin Baulig  <martin@ximian.com>
10006
10007         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
10008         changes as they're broken and completely fuck up the debugger.
10009
10010         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
10011
10012 2005-05-10  Martin Baulig  <martin@ximian.com>
10013
10014         * reflection.c (mono_reflection_generic_class_initialize): Don't
10015         call mono_class_setup_parent() here.
10016
10017 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10018
10019         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
10020         send/receive timeout use an integer in milliseconds. We were using a
10021         struct timeval.
10022
10023 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10024
10025         * locales.c:
10026         (internal_get_cultures): reserve the first slot of the array for the
10027         InvariantCulture, which will be filled in managed code.
10028
10029 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
10030
10031         * reflection.c (mono_image_fill_module_table): Initialize the
10032         GENERATION field as well.
10033
10034 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10035
10036         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
10037         Monitor.Enter on the object.
10038
10039 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
10040
10041         * threads.c: Enable the wait for running threads when exiting.
10042         * icall.c: Suspend all threads before exiting.
10043
10044 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
10045
10046         * assembly.c (mono_assembly_load_reference): Fix warning.
10047
10048 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10049
10050         * threadpool.c: changed the default number of threads per cpu. From now
10051         on, the default will be 20 + (5 * number of cpus) instead of 50.
10052
10053 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
10054
10055         * loader.c (mono_method_get_signature_full): Add locking here.
10056
10057 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
10058
10059         * appdomain.c: Moved methods for parsing and freeing assembly
10060         names to assembly.c.
10061         * assembly.c, domain-internals.h: Created public methods for parsing
10062         assembly names. Fixed mono_assembly_load_with_partial_name:
10063         it now finds the best match, taking into account the version,
10064         token and culture specified in the partial name. Also return
10065         the latest version if no version information is specified.
10066
10067 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
10068
10069         * threadpool.c: replace check for SocketAsyncCall class.
10070
10071 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10072
10073         * threadpool-internals.h:
10074         * Makefile.am: added threadpool-internals.h
10075
10076         * threadpool.c: call mono_unhandled_exception on exceptions not handled
10077         that happen in threadpool threads (tested on MS).
10078         (mono_thread_pool_remove_socket): new function that dispatch any pending
10079         AIO call on a socket that is closing. By now only epoll really needs it,
10080         as select/poll wake up when the socket closes.
10081
10082
10083         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
10084
10085 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
10086
10087         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
10088
10089 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
10090
10091         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
10092
10093 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
10094
10095         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
10096         has an abort request, convert it into a suspend request.
10097
10098 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
10099
10100         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
10101         warning for the usage of `UnmanagedFunctionPointerAttribute' which
10102         is not supported yet.
10103
10104 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10105
10106         * image.c: register assemblies loaded from data (bundles) in the loaded
10107         assemblies hash. Fixes bug #74772.
10108
10109 2005-04-29  Martin Baulig  <martin@ximian.com>
10110
10111         * class.c (mono_type_get_name_recurse): Update to the new naming
10112         schema from the latest .NET 2.x beta2.
10113         (mono_class_setup_vtable_general): If we're a generic instance,
10114         copy the vtable from our generic type definition and inflate all
10115         the methods in it.
10116
10117         * loader.c (find_method): Update to the new naming schema from the
10118         latest .NET 2.x beta2.
10119
10120 2005-04-29  Raja R Harinath  <harinath@gmail.com>
10121
10122         * class.c (mono_class_init): Add a mono_loader_unlock to the
10123         #74734 fix.
10124
10125 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
10126
10127         * icall.c (ves_icall_System_Environment_Exit): Remove the 
10128         suspend_all_other_threads () call for the time being, since it can hang.
10129
10130         * threads.c (mono_thread_manage): Similarly, disable the waiting for
10131         the background threads to exit, since it can also hang.
10132
10133         * class.c (mono_class_init): Applied patch from Ankit Jain 
10134         (radical@gmail.com). Avoid pending init errors when a field refers
10135         to a nested class using a typeref. Fixes #74734.
10136
10137         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
10138         this for dynamic modules.
10139
10140 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10141
10142         * threads.c: don't wait for threads that are in the process of aborting
10143         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
10144         and waiting for background threads to finish. This makes xsp and
10145         mod-mono-server exit without random length delays and/or hangs.
10146
10147 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10148
10149         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
10150
10151 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
10152
10153         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
10154         dynamic types to prevent infinite loops. Fixes #74727.
10155
10156         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
10157         ..._is_assignable_to.
10158
10159 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
10160
10161         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
10162
10163 2005-04-25  Martin Baulig  <martin@ximian.com>
10164
10165         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
10166
10167         * domain.c
10168         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
10169
10170         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
10171
10172         * reflection.c (build_compressed_metadata): Set metadata header
10173         version to 2.0.
10174
10175 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
10176
10177         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
10178         number into an integral and a decimal part. Fixes #70473.
10179
10180         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
10181
10182 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
10183
10184         * culture-info-table.h : reflected the latest locale-builder output.
10185
10186 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10187
10188         * threadpool.c: check for SuspendRequested too when deciding if
10189         mono_thread_interruption_checkpoint should be called.
10190
10191 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10192
10193         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
10194         * threads.c: remove interruption_mutex and use Interlocked instead. When
10195         suspending all the threads, wait for all the suspended events at once.
10196         If we're shutting down and get an APC that is going to be queued,
10197         call mono_thread_execute_interruption immediately, as the thread might
10198         be sleeping on a pthread condition or mutex.
10199
10200         * icall.c: call mono_runtime_set_shutting_down before suspending the
10201         threads.
10202
10203         Fixes bug #74693. And now xsp is happier when exiting.
10204
10205 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
10206
10207         * loader.c (mono_stack_walk): Fix #74690.
10208
10209 2005-04-22  Martin Baulig  <martin@ximian.com>
10210
10211         * mono-debug.h (MonoDebugMethodJitInfo): Added
10212         `MonoDebugMethodJitInfo *jit'.
10213
10214         * mono-debug.c (mono_debug_read_method): Cache the
10215         MonoDebugMethodJitInfo in `address->jit'.
10216         (mono_debug_free_method_jit_info): New public method.
10217
10218 2005-04-22  Martin Baulig  <martin@ximian.com>
10219
10220         * class.c (mono_class_is_assignable_from): Disallow
10221         type parameter -> interface.
10222
10223 2005-04-21  Dick Porter  <dick@ximian.com>
10224
10225         * threads.c (mono_thread_create): Turn an assertion into an error.
10226
10227 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
10228
10229         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
10230         
10231         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
10232         Fix some gcc 4.0 warnings.
10233
10234 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
10235
10236         * file-io.c: fix alt dir separator char on unix systems
10237         and cleanup (fixes bug #71214).
10238
10239 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
10240
10241         * marshal.c: Use CALLVIRT instead of CALL when dispatching
10242         a call to a remote domain, since the method may be an
10243         interface method in the client domain. This fixes bug #74192.
10244
10245 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10246
10247         * threadpool.c: recv/send are now performed before going back to managed
10248         code to save one transition.
10249
10250 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10251
10252         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
10253
10254         * metadata/threadpool.c: removed hack to workaround the bug above.
10255
10256         Fixes bug #74618.
10257
10258 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
10259
10260         * reflection.c reflection.h: Fix handling of parameter defaults in
10261         dynamic methods. Also fixes handling of parameter attributes.
10262         Fixes #74609.
10263
10264         * mono-debug.c (mono_debug_close_image): Fix warning.
10265
10266 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10267
10268         * socket-io.h: replaced old unused field with new 'blocking'.
10269         * threadpool.c: restore socket blocking state on windows(tm).
10270
10271 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
10272
10273         * icall.c: don't return the codebase in the AssemblyName[] returned by
10274         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
10275         * object-internals.h: Removed FIXME (fields were presents) and fixed
10276         versioncompat declaration.
10277
10278 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10279
10280         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
10281         not closed, so don't cleanup when it happens.
10282
10283 2005-04-13  Chris Toshok  <toshok@ximian.com>
10284
10285         * mono-debug-debugger.h: change prototype for
10286         mono_debugger_lookup_type.
10287
10288         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
10289         this function, although it should probably be named
10290         mono_debugger_init_type.
10291
10292 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10293
10294         * threadpool.c: fix non-AIO case.
10295
10296 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
10297
10298         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
10299         the built-in profiler to measure just JIT compilation times.
10300
10301 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10302
10303         * threadpool.c: the epollfd might be closed by another thread at
10304         any time, so ignore EBADF at treat it as a "we're closing" sign.
10305
10306 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10307
10308         * threadpool.c: release the semaphores with a count equals to the number
10309         of working threads in both IO and regular pools. Fixed typo that messed
10310         up the count of IO pool threads. Don't initialize the pipe handles if
10311         we're using epoll.
10312
10313 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10314
10315         * threadpool.c: some systems don't like a NULL when deleting the socket
10316         from epoll.
10317
10318 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10319
10320         * threadpool.c: fix semaphore allocation.
10321
10322 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10323
10324         * threadpool.c: added epoll() based implementation for asynchronous IO
10325         that is used instead of the default poll() when available.
10326         It can be disabled by setting MONO_DISABLE_AIO.
10327
10328 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10329
10330         * threadpool.c: windows needs 'closesocket' and instead of returning
10331         0 when the stream is closed while in select, it returns -1. Fixes bug
10332         #74573.
10333
10334 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
10335
10336         * class.c (class_compute_field_layout): Fix the regression caused by
10337         the previous try.
10338
10339 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10340
10341         * threadpool.c: separate pool for socket async. IO.
10342         * threadpool.h: mono_max_worker_threads is not a global any more.
10343
10344 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
10345
10346         * class.c (class_compute_field_layout): Fix #74549.
10347
10348 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10349
10350         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
10351         use 2 connected sockets instead.
10352
10353 2005-04-08  Miguel de Icaza  <miguel@novell.com>
10354
10355         * mono-config.c: Add new entry point for mkbundle
10356         mono_config_parse_memory. 
10357
10358 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10359
10360         * threadpool.c: removed another unused function.
10361
10362 2005-04-08  Ankit Jain  <radical@corewars.org>
10363
10364         * reflection.c (get_default_param_value_blobs): Add 'types'
10365         parameter to get the types encoded in the constant table.
10366         (mono_param_get_objects): Use the type from the constant table,
10367         not the type of the parameter, when creating default values.
10368         Handle null default values correctly.
10369
10370 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10371
10372         * file-io.c:
10373         * file-io.h:
10374         * threadpool.c:
10375         * threadpool.h:
10376         * icall.c:
10377         * socket-io.c: removed dead code for async IO.
10378
10379 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10380
10381         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
10382
10383         * threadpool.c: intercept socket async. calls and pass them to a thread
10384         that is polling and dispatching the job items to the threadpool as
10385         socket become ready. Fixes bugs #71217, #71933.
10386
10387         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
10388         between char and short/ushort arrays.
10389
10390         * socket-io.c: remove dead code.
10391
10392 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
10393
10394         * locales.c,
10395           icall.c : removed InternalToUpper_Comp() and
10396           InternalToLower_Comp().
10397
10398 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
10399
10400         * char-conversions.h : The tables were incorrectly generated. Should
10401           be generated against invariant culture.
10402
10403 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
10404
10405         * object.c (mono_runtime_invoke_array): Fix return value when 
10406         passing pre-created valuetype objects to ctors.
10407
10408         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
10409         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
10410         Fixes #74338.
10411
10412 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
10413
10414         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
10415         only used with --security and hides the wrong corlib version error.
10416
10417 2005-03-30  Joshua Tauberer  <tauberer@for.net>
10418
10419         * class.c: Changed mono_class_name_from_token so that types
10420         outside of a namespace don't have an initial period.  Improved
10421         the g_warning message used in _mono_class_get when loading
10422         fails.
10423         * assembly.c: In mono_assembly_load_reference, when an assembly
10424         can't be found, "No such file or directory" is misleading and
10425         unhelpful because a few paths were checked for the presence of
10426         the assembly.  When that happens (ENOENT), display a nicer
10427         message indicating the directories that were searched.  In all
10428         cases, the warning is made easier to read for non-hackers.
10429
10430 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
10431
10432         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
10433         project/solution.
10434         * appdomain.h|domain.c: Removed inline from functions.
10435         * appdomain.c: Reduced warnings when compiling on windows.
10436         * icall.c: Fixed output_debug declaration to gunichar2*.
10437         * mono-config.c: Reduced warnings when compiling on windows.
10438         * rand.c: Added missing "windows.h". Added missing return value.
10439         * rawbuffer.c: Added missing winsock2.h for windows.
10440         * sysmath.h: Added mono-compiler.h header to allow/ease 
10441         compilation with non-GCC compilers.
10442         * threads.c: Fixed declarations to compile with VS.NET C compiler.
10443         Removed cast warnings.
10444
10445         Adapted from the work of J Lothian (for VC6).
10446
10447 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
10448
10449         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
10450         from default_path.
10451
10452 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
10453
10454         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
10455         the 2.0 profile.
10456
10457 2005-03-27  Raja R Harinath  <harinath@gmail.com>
10458
10459         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
10460         has to be in $(exec_prefix).  $(prefix) is for arch-independent
10461         stuff, and it would probably use $(prefix)/share rather than
10462         $(prefix)/lib.
10463
10464 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10465
10466         * console-io.c: added 2 includes that might be missing.
10467
10468 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
10469
10470         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
10471         profile.
10472
10473         * reflection.c (create_custom_attr): Allocate the params array using
10474         alloca so it gets GC tracking.
10475
10476 2005-03-23  Chris Toshok  <toshok@ximian.com>
10477
10478         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
10479         out some spew.
10480
10481 2005-03-24  Raja R Harinath  <rharinath@novell.com>
10482
10483         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
10484         changes to pick up any changes in prefix, etc.
10485
10486 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
10487
10488         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
10489         
10490         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
10491         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
10492
10493 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
10494
10495         * class-internals.h object-internals.h class.c reflection.c: Extend the
10496         mono_lookup_dynamic_token () function to return the class of the
10497         token as well. 
10498
10499         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
10500         well. Fixes #73848.
10501
10502 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
10503
10504         * security-manager.c: Skip inheritance checks for intra-corlib
10505         class inheritance and method overrides. This skips a lot of checks
10506         and (anyway) permissions cannot work until corlib is loaded.
10507
10508 2005-03-23  Martin Baulig  <martin@ximian.com>
10509
10510         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
10511         MONO_TYPE_GENERICINST.  
10512
10513 2005-03-23  Martin Baulig  <martin@ximian.com>
10514
10515         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
10516
10517 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
10518
10519         * class.c: added locking comments to some functions.
10520         Cache the interface offsets arrays (saves about 20 KB
10521         of runtime memory in a typical app).
10522         Reduce the time overhead in mono_class_setup_supertypes ().
10523
10524 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
10525
10526         * icall.c: speedup and fix leaks in GetMethodsByName and
10527         GetPropertiesByName.
10528
10529 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
10530
10531         * reflection.c: some locking fixes.
10532
10533 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
10534
10535         * metadata.c: added missing break in case statement.
10536
10537 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
10538
10539         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
10540         typedbyref return values. Fixes #73941.
10541
10542 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
10543
10544         * security-manager.c|h: Added demandunmanaged method and 
10545         suppressunmanagedcodesecurity class to MonoSecurityManager.
10546         Renamed aptc class to allowpartiallytrustedcallers.
10547
10548 2005-03-17  Martin Baulig  <martin@ximian.com>
10549
10550         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
10551
10552 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10553
10554         * file-io.c: disabled file async. IO using aio_*. It uses the
10555         threadpool now. Workaround for bug #73718.
10556
10557 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
10558
10559         * assembly.h, mono-config.c: added code to deal with bundled configs
10560         for bundled assemblies.
10561
10562 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
10563
10564         * *.c, private.h: cleanup, removing old private.h header file.
10565
10566 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
10567
10568         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
10569         and throw_on_unmappable_char attributes.
10570
10571 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
10572
10573         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
10574         _ProcessName_internal.
10575
10576 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
10577
10578         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
10579         #73631.
10580
10581         * icall.c threads.c threads-types.h: Remove slothash icalls as they
10582         are no longer used.
10583
10584 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
10585
10586         * object.c (compute_class_bitmap): Add support for generics. Fixes
10587         #73527.
10588
10589 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
10590
10591         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
10592
10593 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10594
10595         * filewatcher.c: commented out the code for windows watcher, as we don't
10596         use it (we use the managed implementation instead).
10597
10598 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
10599
10600         * object-internals.h (MonoThread): Remove 'unused1' field.
10601
10602         * appdomain.c: Bump corlib version.
10603
10604         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
10605
10606         * reflection.c (mono_reflection_create_runtime_class): Remove the
10607         AssemblyBuilder.Save optimization since it causes too many problems.
10608
10609 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
10610
10611         * exception.c|h: Added mono_get_exception_reflection_type_load to
10612         create a ReflectionTypeLoadException object.
10613         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
10614         to return NULL is a InheritanceDemand fails during reflection. Updated
10615         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
10616         ReflectionTypeLoadException if an InheritanceDemand fails during 
10617         reflection. Added icall mapping for GetLinkDemandSecurity.
10618         * security-manager.c|h: Added ves_icall_System_Security_
10619         SecurityManager_GetLinkDemandSecurity internal call to return the
10620         class and methods permissions set for a LinkDemand. Removed unused
10621         fields in MonoSecurityManager.
10622
10623 2005-03-10  Martin Baulig  <martin@ximian.com>
10624
10625         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
10626         it's a generic instance.
10627
10628 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
10629
10630         * reflection.c (mono_get_object_from_blob): Applied patch from
10631         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
10632
10633         * class.c (mono_class_is_assignable_from): Another try at fixing 
10634         #73469 without breaking anything.
10635
10636 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
10637
10638         * class.c: (mono_class_is_assignable_from): Revert the last changes
10639         since they don't work with generics.
10640         
10641         * class.c (mono_class_is_assignable_from): Fix build bustage.
10642
10643         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
10644         the managed IsAssignableFrom method. Fixes #73469.
10645
10646         * reflection.c (mono_reflection_call_is_assignable_from): New helper
10647         function.
10648
10649 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
10650
10651         * object.c (mono_load_remote_field_new): Fix returning uninitialized
10652         memory when the remoting callback does not sets the out arguments.
10653         Fixes #73007.
10654
10655         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
10656         by mistake.
10657
10658         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
10659
10660         * object-internals.h (MonoStackFrame): Sync with managed object layout.
10661
10662         * appdomain.c: Bump corlib version.
10663
10664 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
10665
10666         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
10667         function.
10668
10669         * threads.c (mono_thread_attach): Detect threads which are not started
10670         by the GC pthread wrappers.
10671
10672 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
10673
10674         * icall.c: Added new icall for RNG.
10675         * rand.c|h: Added new icall to open the RNG. This allows to share a 
10676         single handle on Linux to access /dev/urandom and fix #73183.
10677
10678 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
10679
10680         * object.c: setting the new vtable in a transparent proxy object must
10681         not change the GC descriptor.
10682
10683 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
10684
10685         * object.c: fixed compilation without GCJ support.
10686         * reflection.c: for runtime-created types ensure klass->has_references
10687         is correct (bug #73215).
10688
10689 2005-03-02  Martin Baulig  <martin@ximian.com>
10690
10691         * class.c (mono_class_is_assignable_from): Make this work if
10692         `oklass' is a generic instance; fixes #72831.
10693
10694 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
10695
10696         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
10697         with hasthis set.
10698         
10699         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
10700
10701         * marshal.c: Reorganize native->managed marshalling code to also use
10702         the emit_marshal_... functions.
10703
10704 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
10705
10706         * object.c: typed allocs have issues with bitmap sizes > 30,
10707         so check for max_set >= 30.
10708
10709 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
10710
10711         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
10712         managed code. Fixes #73012.
10713
10714         * metadata.h (MonoMarshalSpec): Add elem_mult field.
10715
10716         * metadata.c reflection.c: Load/Emit elem_mult as well.
10717         
10718         * metadata.h (MonoMarshalSpec): Add comment.
10719
10720         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
10721
10722         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
10723         num_elem to -1 if not given.
10724
10725         * object-internals.h (MonoReflectionMarshal): Add has_size field.
10726
10727         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
10728         given values.
10729
10730 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
10731
10732         * null-gc.c (mono_gc_free_fixed): Was not compilable.
10733
10734 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
10735
10736         * reflection.c (encode_marshal_blob): Encode param_num field as well.
10737
10738         * object-internals.h (MonoReflectionMarshal): Add param_num field.
10739
10740 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
10741
10742         * object.c: generalized the reference bitmap creation
10743         and added hooks for the new GC.
10744         * class-internals.c: removed the gc_bitmap field from MonoClass.
10745
10746 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
10747
10748         * domain.c: help the compiler to produce better code
10749         in mono_jit_info_table_find ().
10750
10751 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
10752
10753         * object.c: make all allocations look typed.
10754
10755 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
10756
10757         * socket-io.c: load Mono.Posix if it's not loaded already
10758         (fixes bug#73033).
10759
10760 2005-02-24  Martin Baulig  <martin@ximian.com>
10761
10762         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
10763         * reflection.c (dup_type): Likewise.
10764
10765 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
10766
10767         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
10768         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
10769
10770 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
10771
10772         * domain.c, threads.c, object-internals.h: make the critical thread
10773         local vars use the fast access mode (even when we're compiled in
10774         a lib). Provide accessors to be used by the jit during codegen.
10775
10776 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10777
10778         * appdomain.c: Changed hook functios behavior to include
10779         support for the reflection only assemblies. Some icalls were changed
10780         to support the mentioned assemblies too. Signatures of static methods
10781         try_assembly_resolve and real_load now have an additional parameter:
10782         refonly.
10783
10784         * assembly.c: General changes to mono_assembly_ methods to support
10785         reflection only api. Functions mono_assembly_open, mono_assembly_load,
10786         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
10787         suffix, to support an additional gbool parameter to specify whether
10788         the assembli is reflection only or not. Created some new hook functions 
10789         to add support for reflection only assemblies. Signatures of static 
10790         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
10791         have now an additional parameter: refonly.
10792
10793         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
10794         indicating whether the assembly is reflection only or not.
10795
10796         * exception.c: Add mono_get_exception_invalid_operation.
10797
10798         * icall.c: Throw an InvalidOperationException when trying to invoke
10799         a property/method/event, or trying to set/get the value of a field.
10800         Also add an icall to retrieve the ref_only flag to the
10801         MonoReflectionAssembly.
10802
10803 2005-02-23  Chris Toshok  <toshok@ximian.com>
10804
10805         Part of fix for #72827.
10806         * mono-debug.c (mono_debug_add_method): add lexical block data to
10807         the info we write.  Kind of a hack at the moment - we copy the
10808         lexical block info from the MonoDebugMethodInfo to the
10809         MonoDebugMethodJitInfo here, before writing it.
10810         (mono_debug_read_method): read the lexical block info.
10811
10812         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
10813
10814         * debug-mono-symfile.h: add lexical block support.
10815
10816         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
10817         support.
10818
10819 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
10820
10821         * loader.c (mono_lookup_pinvoke_call): Fix warning.
10822
10823         * object.c (mono_runtime_free_method): Call mono_free_method () and
10824         put the TODOs there.
10825
10826         * loader.c (mono_free_method): Free up most memory allocated for 
10827         dynamic methods.
10828
10829 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
10830
10831         * reflection.c: properly flag a Type argument to a
10832         named custom attr value (bug #72248).
10833
10834 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
10835
10836         * reflection.c: reduce code duplication in named custom
10837         attribute encoding.
10838
10839 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
10840
10841         * reflection.c: properly encode custom attrs of type object
10842         (bug #72649).
10843
10844 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
10845
10846         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
10847
10848 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
10849
10850         * socket-io.c: load System.dll if it's not loaded already
10851         (bug #72850 and #70477).
10852
10853 2005-02-21  Martin Baulig  <martin@ximian.com>
10854
10855         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
10856         generic instances.
10857
10858 2005-02-21  Martin Baulig  <martin@ximian.com>
10859
10860         * reflection.c (mono_image_build_metadata): We also need to
10861         "fixup" the MethodImpl table after we computed the final method
10862         indices.  Call fixup_methodimpl() to do that.
10863         (fixup_methodimpl): New private method.
10864
10865 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
10866
10867         * assembly.c: special case mscorlib.dll (bug#72536),
10868         patch from Carlos Alberto Cortez.
10869
10870 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
10871
10872         * threads-types.h threads.c: Fix build bustage.
10873
10874         * threads.c: Use a union for long<->double conversions.
10875
10876         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
10877         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
10878
10879         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
10880         containing the checkpoint call with NOT_TAKEN.
10881         
10882         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
10883         checkpoint before pushing the arguments, so they won't have to be
10884         spilled to stack.
10885
10886 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
10887
10888         * domain.c, assembly.c, domain-internals.h: make some data
10889         const and relocation-free.
10890
10891 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
10892
10893         * object.c, appdomain.c, class-internals.h: introduce the
10894         MonoClassRuntimeInfo structure to hold the info needed to
10895         use a class at runtime. Made mono_class_vtable() lock-free
10896         for all the appdomains.
10897
10898 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
10899
10900         * metadata-internals.h, image.c: introduce a per-image mempool to
10901         be used for memory that has the same lifetime as the image.
10902
10903 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
10904
10905         * domain.c: In mono_init_internal(), instead of selecting the first
10906         runtime version supported by an executable, get a list of all
10907         supported versions and select the one for which an mscorlib exists
10908         (since even if the runtime supports a given version, it doesn't mean
10909         that the framework for that version is installed).
10910         Modified get_runtimes_from_exe to support this behavior.
10911         In supported_runtimes, added information about additional system
10912         assembly versions.
10913         
10914         * assembly.c: Added support for more than one system assembly version
10915         per runtime version. Updated the assembly list.
10916         In mono_assembly_remap_version, removed the initial version check,
10917         since we don't know to which version we need to compare until we
10918         get the version set on which the assembly is based.
10919         Moved the code for loading corlib into the new method
10920         mono_assembly_load_corlib(), so it can be used by the initialization
10921         code.
10922         
10923         * domain-internals.h: Updated data structures and added declaration
10924         for mono_assembly_load_corlib.
10925
10926 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
10927
10928         * reflection.c (resolve_object): Fix the creation of the signature in 
10929         the SignatureHelper case.
10930
10931         * assembly.c (mono_assembly_remap_version): Fix binary search.
10932         
10933 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
10934  
10935         * class.c: Added inheritance check when a method is overloaded (from a
10936         virtual method or when implementing an interface) and when a class is
10937         inherited. Added functions to set a failure for a class and to 
10938         retreive the exception from a failure.
10939         * class-internals.h: Added fields to MonoClass to keep the exception
10940         information status for inheritance (or other exceptions) to be thrown
10941         later (i.e. not at load time).
10942         * object.c: Throw the inheritance SecurityException when a type is to 
10943         be created with either class or method inheritance violations.
10944         * reflection.c|h: Fix when getting declsec from a class. Removed 
10945         unrequired code for class. Improved sanity in parameter naming.
10946         * security-manager.c|h: Added functions to check for class and method
10947         inheritance.
10948
10949 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
10950
10951         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
10952         and has_finalize in dynamic types as well.
10953
10954 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
10955
10956         * culture-info-table.h : fixed currency format for en-GB (and so on).
10957
10958 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
10959
10960         * gc.c: ensure the GC handles never have 0 as a value.
10961
10962 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
10963
10964         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
10965         a pointer to a struct to unmanaged code. Fixes #72625.
10966
10967 2005-02-16  Martin Baulig  <martin@ximian.com>
10968
10969         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
10970
10971 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
10972
10973         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
10974
10975 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
10976
10977         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
10978
10979         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
10980         UnmanagedFunctionPointerAttribute, use it for determining calling convention
10981         etc. Fixes #71471.
10982
10983         * reflection.c (mono_custom_attrs_get_attr): New helper function.
10984
10985         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
10986
10987 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
10988
10989         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
10990         changes to make the current context a field in MonoThread.
10991
10992 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
10993
10994         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
10995         the last change.
10996         
10997         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
10998         extracted from mono_marshal_get_native_wrapper.
10999
11000         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
11001         to create wrappers around native functions.
11002
11003         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
11004         delegates for arbitrary function pointers. Fixes #71472.
11005
11006 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
11007
11008         * threads.c: cleaned up the code a little.
11009
11010 2005-02-15  Martin Baulig  <martin@ximian.com>
11011
11012         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
11013         the data table.
11014
11015         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
11016         allocate larger chunks if needed.
11017
11018 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
11019
11020         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
11021         in by mistake.
11022
11023 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
11024
11025         * domain.c: keep the domains in an array and ensure the domain ids
11026         are kept small, so they can be used as indexes to domain-specific data
11027         with a small memory overhead.
11028
11029 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
11030
11031         * icall.c: Handle byref types in Type icalls. Fixes #72544.
11032
11033 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
11034
11035         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
11036
11037 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
11038
11039         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
11040
11041         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
11042         values.
11043
11044         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
11045         
11046 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
11047
11048         * domain-internals.h: add the hashtable here.
11049
11050         * class-internals.h: Remove `info' from MonoMethod
11051
11052         * domain.c: Add a new hashtable, jit_trampoline_hash
11053
11054 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
11055
11056         * object.c: don't set the value of static fields
11057         (fixes bug#72494).
11058
11059 2005-02-11  Martin Baulig  <martin@ximian.com>
11060
11061         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
11062         (mono_debug_add_method): Silently ignore the method if it's too big.
11063         (mono_debug_add_type): Likewise.
11064
11065 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
11066
11067         * threads.c, appdomain.c: remove #ifdefs from the code.
11068
11069 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
11070
11071         * metadata-internals.h: Added flags to MonoAssembly to cache the most
11072         common security informations. This allows us to stay in unmanaged code
11073         when doing LinkDemand and it's special cases (except for the first 
11074         time for initialization). The flags a very much used with --security.
11075         * reflection.c|h: Added code to get declarative security attributes 
11076         for LinkDemand and InheritanceDemand. This required to refactor the
11077         existing code for Demand.
11078         * security-manager.c|h: Added new method fields for the special cases
11079         of LinkDemand.
11080
11081 2005-02-10  Martin Baulig  <martin@ximian.com>
11082
11083         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
11084         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
11085
11086 2005-02-10  Martin Baulig  <martin@ximian.com>
11087
11088         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
11089         debugging code; this is almost a complete rewrite.
11090
11091         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
11092
11093 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
11094
11095         * domain.c, object.h: expose mono_string_equal () and 
11096         mono_string_hash ().
11097         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
11098         it's implemented in managed code.
11099
11100 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11101
11102         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
11103         lo leak objects between appdomains.
11104
11105 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11106
11107         * assembly.c: old compilers compilation fix from 
11108         robertj@gmx.net (Robert Jordan).
11109
11110 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
11111
11112         * class-internals.h: Little reminder for the future.
11113
11114         * debug-helpers.c: Fix up wrapper_type_names
11115
11116 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11117
11118         * image.c, metadata-internals.h: when loading an image from a file,
11119         mmap all of it and use the same codepaths as when using a
11120         in-memory image: the code is simpler and we use less memory
11121         (both writable and readonly).
11122
11123 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
11124
11125         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
11126         API to alloc runtime data structures that need to be tracked by the
11127         GC and contain pointers.
11128         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
11129         make the code more readable and eventually use a different GC.
11130
11131 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
11132
11133         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
11134         for out arguments.
11135         
11136 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
11137
11138         * object.c: In release_type_locks(), don't release the cctor lock
11139         if it has already been released. This fixes a crash in the
11140         thread5 test.
11141
11142 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
11143
11144         * gc.c, marshal.c, icall.c: register a delegate for finalization
11145         only when the native function pointer has been allocated for it.
11146
11147 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
11148
11149         * object.c: cleaned up some code, allocate objects that are
11150         pointer free with the atomic malloc variant. Allocate memory
11151         for static data from the mempool if it's pointer-free.
11152         Allocate the bounds array at the end of the array data, when needed.
11153         * object-internals.h, object.h: move a private function in a private
11154         header.
11155         * class.c: handle missing case in tracking references in fields.
11156
11157 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
11158
11159         * class.c, class-internals.h: keep track if a type has
11160         reference fields in either the instance or static fields.
11161
11162 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
11163
11164         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
11165         and renamed to MonoRuntimeInfo. Added fields to store the expected
11166         framework assembly version. Changed mono_get_framework_version and
11167         mono_get_runtime_version for a single mono_get_runtime_info method.
11168         
11169         * assembly.c: Added method to remap system assembly versions to the
11170         current executing runtime version. Removed old mapping code.
11171         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
11172         
11173         * icall.c, reflection.c: Track api changes.
11174
11175 2005-02-06  Miguel de Icaza  <miguel@novell.com>
11176
11177         * loader.c (method_from_memberref): Improve error reporting,
11178         produce the class name instead of the typeref/typedef index. 
11179
11180 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
11181
11182         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
11183
11184 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11185
11186         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
11187         stdcall and charset name mangling.  Reorganize the code and add
11188         some tracing stuff.
11189
11190 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
11191
11192         * monodiet.c: More iters!
11193
11194         * marshal.c: Iter usage.
11195
11196         * icall.c: Iter usage.
11197
11198         * object.c: Use iters.
11199
11200         * debug-helpers.c: More iters
11201
11202 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11203
11204         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
11205         under win32.
11206
11207 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
11208
11209         * mono-debug-debugger.c: use iters
11210
11211         * class.c, class-internals.h: mono_class_setup_events is static
11212         now
11213
11214         * All callers: use iters
11215
11216 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11217
11218         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
11219         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
11220
11221 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
11222
11223         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
11224
11225         * marshal.h: Add prototypes for ldfld/stfld_remote.
11226
11227         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
11228         this is called during startup.
11229         
11230 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
11231
11232         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
11233         MonoThreadsSync struct private in monitor.c. Changed the way
11234         MonoThreadsSync is allocated so it's faster and there is no
11235         need to keep track of it with a finalizer and it uses less memory.
11236         This also finally allows us to allocate mono objects as ptrfree when
11237         there are no reference fields.
11238
11239 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
11240
11241         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
11242         disappearing link to the GC interface and use them to simplify
11243         the gchandles code.
11244
11245 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
11246
11247         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
11248         stfld_remote which call mono_load/store_field_new. This allows methods
11249         calling ldfld/stfld wrappers to be AOTed.
11250
11251         * console-io.c: Include sys/filio.h under solaris.
11252         
11253         * console-io.c: Include curses.h if needed correctly.
11254
11255 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
11256         
11257         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
11258         method->klass as well.
11259
11260         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
11261
11262         * class.c (mono_class_init): Switch on lazy initialization of 
11263         methods.
11264
11265         * class.c (mono_class_get_finalizer): Handle the case when the 
11266         finalizer is inherited.
11267
11268 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11269
11270         * console-io.c: <curses.h> is needed by term.h on solaris.
11271
11272 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
11273
11274         * icall.c, class-internals.h, monodiet.c, class.c: Remove
11275         mono_class_setup_properties where possible. Remove this ftn from
11276         the header file, and make it static.
11277
11278 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
11279
11280         * loader.c: Add missing setup_... call.
11281
11282         * class.c: Add missing setup_... calls.
11283
11284         * class.c (mono_class_init): Switch on lazy initialization of 
11285         the generic vtable.
11286         
11287         * class.c (mono_class_init): Fix generics broken by the recent changes.
11288
11289         * monodiet.c (handle_type): Add missing setup_... calls.
11290
11291         * class.c: Back out garbage in previous patch.
11292         
11293         * class.c: Add missing setup_... calls.
11294
11295         * class.c (mono_class_get_method_from_name_flags): Avoid calling
11296         mono_class_setup_methods () if possible.
11297
11298         * class-internals.h (MonoClass): Add 'has_cctor' flag.
11299
11300         * class-internals.h (MonoCachedClassInfo): New structure.
11301
11302         * class.c: Initialize properties and events fields of MonoClass lazily.
11303
11304         * class.c: Add infrastructure for lazily initializing the methods and
11305         vtable fields of MonoClass. Not yet used.
11306
11307         * class.c (mono_class_get_finalizer): New helper function.
11308
11309         * class.c: Add infrastructure for loading some class related data from
11310         an AOT file.
11311
11312         * object.c: Add infrastructure for initializing the vtable from data
11313         in the AOT file.
11314
11315         * gc.c (run_finalize): Use mono_class_get_finalizer ().
11316
11317         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
11318         appropriate initialization function before accessing parts of the
11319         MonoClass structure.
11320
11321         * marshal.c: Fix warnings.
11322         
11323         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
11324
11325         * mono-debug-debugger.c (get_exception_message): Use 
11326         mono_class_get_method_from_name_flags ().
11327
11328 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
11329
11330         * reflection.c, appdomain.c: Replace a few manual searches that
11331         Zoltan missed. (Paolo approved this part of my initial patch).
11332
11333 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
11334
11335         * profiler.c: disable recording statistical events at report time.
11336
11337 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11338
11339         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
11340         to byteswap arrays of enum values, too (bug #72080).
11341
11342 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
11343
11344         * appdomain.c (set_domain_search_path): Allow this to be called if
11345         domain->setup is not yet set.
11346
11347         * loader.c (mono_method_get_index): New helper function.
11348
11349         * loader.c reflection.c: Use mono_method_get_index ().
11350
11351         * class.c (mono_class_get_method_from_name_flags): New helper method.
11352
11353         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
11354         this.
11355
11356         * class.c (mono_class_get_cctor): New helper method.
11357
11358         * string-icalls.c object.c class.c marshal.c reflection.c: Use
11359         mono_class_get_method () to look up methods.
11360
11361 2005-02-01  Miguel de Icaza  <miguel@novell.com>
11362
11363         * console-io.c: Fix the build, this should work on Windows.
11364
11365 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
11366
11367         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
11368         be set to null to keep things valid
11369
11370 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11371
11372         * icall.c: added Console 2.0 icalls.
11373         * Makefile.am: added console-io.[ch]
11374         * console-io.[ch]: internal calls for Console 2.0 API.
11375
11376 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11377
11378         * class.c: make sure we consider all the interfaces
11379         when calculating max_interface_id (bug found by
11380         Jeroen Frijters running ikvm).
11381
11382 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
11383
11384         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
11385         valuetype fields to null.
11386
11387         * object.c (set_value): Ditto. Fixes #71669.    
11388
11389 2005-01-31  Martin Baulig  <martin@ximian.com>
11390
11391         * metadata.c (mono_metadata_has_generic_params): New public
11392         function; checks whether something is a generic method.
11393
11394 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
11395
11396         * appdomain.c: fix infinite recursion when adding assemblies.
11397
11398 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
11399
11400         * object.c: Fix small typo to return all items for Environment.
11401         GetCommandLineArgs.
11402
11403 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
11404
11405         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
11406         reflection.c: more domain and assembly-unload related fixes
11407         and memory leaks plugs.
11408
11409 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
11410
11411         * 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.
11412
11413 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
11414
11415         * loader.c (mono_method_signature): Make this method lazy
11416         (mono_get_method_from_token): Don't computate the signature here.
11417
11418         Doing this saves quite a bit of memory. I got 90 kb on starting up
11419         monodoc. It should also save some disk reads on startup.
11420
11421         * *: MonoMethod->signature might be NULL now. You *MUST* use
11422         mono_method_signature.
11423
11424 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
11425
11426         * object.c (mono_runtime_get_main_args): Return an array from the
11427         current domain here. Fixes #71938.
11428
11429 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
11430
11431         * monitor.c: formatting changes to comply with the
11432         mono coding style and remove #ifdefs from the code.
11433
11434 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
11435
11436         * metadata.c, private.h: remove some unneeded data
11437         and use a more compact representation for table schemas.
11438
11439 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
11440
11441         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
11442         to get a better distribution in hash tables.
11443         * *.c: use mono_aligned_addr_hash() where appropriate.
11444         * assembly.c: make var static.
11445
11446 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
11447
11448         * domain-internals.h: Put MonoJitInfo on a diet.
11449
11450         * domain.c: Fix a warning.
11451
11452 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11453
11454         * gc.c: rework the gc handles code to reuse handles
11455         when freed.
11456
11457 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
11458
11459         * domain.c: fixed long standing bug in mono_string_equal() which
11460         was brought to light with the ldstr changes.
11461
11462 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
11463
11464         * reflection.c: Remove warning by adding missing include for marshal.h
11465
11466 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11467
11468         * domain.c, object.c: change the ldstr_table to hold
11469         MonoString* as keys: makes the runtime isinterned lookup
11470         faster and simplifies memory management.
11471
11472 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
11473  
11474         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
11475         possible to add imperative security checks before calling the icall.
11476         * reflection.c: Return security attributes on the original MonoMethod
11477         (and not the wrapped one). This fix permissions on icalls.
11478
11479 2005-01-25  Dick Porter  <dick@ximian.com>
11480
11481         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
11482         the check for mktime() support actually test the mktime() return
11483         value.  "Fixes" bug 71682, though the output is still different to
11484         MS.
11485
11486 2005-01-25  Martin Baulig  <martin@ximian.com>
11487
11488         * class.c (mono_class_is_assignable_from): Make this work for
11489         generic instances.
11490
11491 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
11492
11493         * marshal.c (mono_string_utf8_to_builder)
11494         (mono_string_builder_to_utf16): We might not have ownership of the
11495         string. In thise case, we need to create a new buffer.
11496
11497         * object-internals.h (mono_stringbuilder_capacity): sb->str might
11498         be null, in which case, use the default capacity.
11499
11500 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11501
11502         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
11503         GC events to the profiler.
11504
11505 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
11506
11507         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
11508         if you don't want the GC to run.
11509
11510 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
11511
11512         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
11513         start providing a GC API and keeping different implementations in
11514         their own file.
11515         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
11516
11517 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
11518
11519         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
11520         mmap rather than allocating a huge buffer.
11521         (mono_debug_close_mono_symbol_file): Free the buffer allocated
11522         above.
11523
11524 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
11525
11526         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
11527         and CheckExecutionRights.
11528         * reflection.c|h: Keep the index of the declarative security to be 
11529         used, instead of the pointer, when AOT compiler is used. Also add 
11530         class initialization when requesting demands.
11531         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
11532         CheckExecutionRights. Both properties are now FALSE by default, and
11533         unmodifiable, unless the --security option is used.
11534
11535 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
11536
11537         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
11538         reflection.c: properly refcount images and assemblies, many leaks fixed.
11539
11540 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11541
11542         * threadpool.c: increase the timeout for threads in the thread pool to
11543         10s.  Fixes bug #67159.
11544
11545 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
11546
11547         * class-internals.h: Sun's compiler insists on explicit
11548         signed on bit fields to handle then correctly.
11549
11550 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
11551
11552         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
11553         Make the size of the array fit only the number of invalid path
11554         chars that we have.
11555
11556         * class.c (_mono_class_get): Improve the error reporting when a
11557         class referenced is not found, to assist debugging. 
11558
11559 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
11560
11561         * threads.c: fix off-by-one error.
11562         * domain.c: free data allocated in the domain.
11563
11564 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
11565
11566         * reflection.c (mono_method_body_get_object): Fill out exception info
11567         as well.
11568
11569         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
11570         structure.
11571         
11572 2005-01-19  Martin Baulig  <martin@ximian.com>
11573
11574         * loader.c (mono_get_method_constrained): Make this work again.
11575
11576 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
11577
11578         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
11579         guint16 to match the managed side.
11580
11581         * reflection.c (mono_reflection_body_get_object): Fill out local
11582         variables array.
11583
11584         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
11585         as well.
11586
11587         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
11588         'local_var_sig_token'.
11589
11590 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
11591
11592         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
11593         System.Drawing.
11594
11595         * reflection.c (mono_method_body_get_object): Handle abstract and
11596         runtime methods.
11597
11598 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
11599
11600         * marshal.c, loader.c, class-internals.h, reflection.c:
11601         store the emthod data for a wrapper in an array instead of a list.
11602
11603 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
11604
11605         * marshal.c: change the code to allocate memory more
11606         conservatively for method wrappers.
11607
11608 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
11609
11610         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
11611         fields from MonoClass to the marshal info structure where they belong.
11612
11613 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11614
11615         * class.c, object.c, class-internals.h, marshal.c: rearrange
11616         some fields and tweak some types to lower memory usage.
11617
11618 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
11619
11620         * threads.c (signal_thread_state_change): Handle the case when the
11621         target thread is the current thread.
11622
11623         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
11624
11625         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
11626         emit_ptr_to_object_conv. 
11627
11628         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
11629         marshalling. Fixes #71352.
11630
11631 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
11632
11633         * metadata.h, blob.h: move table enum to blob.h so it can be included
11634         in any header.
11635         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
11636         cut the size of MonoImage/MonoDynamicImage.
11637
11638 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
11639
11640         * profiler.c (mono_profiler_install_simple): Fix default arguments.
11641
11642 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
11643
11644         * reflection.c, reflection.h, icall.c: add a function to check
11645         if an attribute type is defined for a metadata object.
11646
11647 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
11648
11649         * object-internals.h: Added some needed fields from StringBuilder class.
11650         * marshal.c: Set the maxCapacity when creating a StringBuilder.
11651
11652 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
11653
11654         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
11655         threads before shutting down the runtime.
11656
11657         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
11658
11659 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
11660
11661         * object-internal.h, threads.c: implement stacksize and 
11662         parameterized thread start functionality (requires
11663         matching corlib). Marked broken code for later removal.
11664
11665 2005-01-12  Martin Baulig  <martin@ximian.com>
11666
11667         * class-internals.h (MonoGenericClass): Moved the `initialized'
11668         flag to MonoDynamicGenericClass, removed `init_pending'.
11669         (MonoGenericInst): Added `is_reference' flag.
11670
11671 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
11672
11673         * reflection.c (mono_image_create_pefile): Only set the pe_offset
11674         inside the MSDOS header. Fixes #71201.
11675
11676         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
11677         gc thread.
11678         (mono_domain_finalize): Ditto.
11679
11680 2005-01-12  Martin Baulig  <martin@ximian.com>
11681
11682         * class.c (mono_get_shared_generic_class): Use the cache for
11683         non-dynamic generic classes.
11684
11685         * class-internals.h (mono_class_create_generic_2): Removed
11686         function prototype, this function is now static inside class.c.
11687
11688         * class.c (mono_class_create_generic_2): Made this static, only
11689         call it from mono_class_init() and mono_class_setup_parent().
11690         (collect_implemented_interfaces_aux): Call mono_class_init() on
11691         the interfaces we collect.
11692         (mono_class_setup_vtable): Call mono_class_init (class->parent).
11693
11694 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
11695
11696         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
11697         it a real thread handle.
11698
11699         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
11700         MonoJitExceptionInfo, since each catch clause needs its own variable.
11701         
11702 2005-01-11  Dick Porter  <dick@ximian.com>
11703
11704         * image.c (mono_pe_file_open): New variant on mono_image_open()
11705         that does not set up the CLI metadata; used for FileVersionInfo so
11706         it can get the data for windows binaries too.
11707         
11708         * process.c (process_read_string_block): Don't read off the end of
11709         the StringTable block.
11710
11711         These both fix bug 70766.
11712
11713 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
11714
11715         * gc.c: set some fields to NULL at GC cleanup time.
11716         * threads.c: if we quit the main thread, call exit ().
11717
11718 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
11719
11720         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
11721
11722 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
11723
11724         * threads.h, threads.c, object.c: added accessor and settor for
11725         main_thread. Handle it specially when exiting from it: wait
11726         for other foreground threads to exit.
11727
11728 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
11729
11730         * process.c, verify.c: remove some bloat.
11731
11732 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
11733
11734         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
11735         the calling convention to cdecl under win32.
11736
11737 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
11738
11739         * object.c (mono_object_get_size): New function to get the size of
11740         an object instance.
11741
11742         * profiler.c (simple_allocation): Use above.
11743
11744 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
11745
11746         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
11747         ves_icall_System_AppDomain_getRootDomain (as it's not required to
11748         get an appdomain by it's id and we can't assume the root's id is 0).
11749         * domain-internals.h: Change the function prototype to match.
11750         * icall.c: Change the icall table for AppDomain.
11751
11752 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
11753
11754         * locales.c (string_invariant_compare_char): Only compute
11755         GUnicodeTypes in the case where we need them.  Test for ordinality
11756         first and return if so.
11757
11758         From the commit:
11759
11760                 /*
11761                  * FIXME: here we must use the information from c1type and c2type
11762                  * to find out the proper collation, even on the InvariantCulture, the
11763                  * sorting is not done by computing the unicode values, but their
11764                  * actual sort order.
11765                  */
11766
11767 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
11768
11769         * loader.c: for P/Invoke methods, allow the "Internal" shared
11770         library name to refer to the calling process symbol namespace.
11771
11772 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
11773
11774         * Makefile.am: Add the security manager to the build.
11775         * security-manager.c|h: New. Initialization of the security manager.
11776
11777 2005-01-07  Dick Porter  <dick@ximian.com>
11778
11779         * threads.c: 
11780         * monitor.c: Update thread state during Monitor and WaitHandle
11781         waits.  Fixes bug 71031.
11782
11783 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
11784
11785         * reflection.c (property_encode_signature): Correctly handle when the
11786         property has no methods.
11787
11788 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
11789
11790         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
11791         
11792         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
11793         fields from mb, not rmb. Fixes #71017.
11794
11795         * marshal.c (emit_ptr_to_str_conv): Add support for 
11796         ByValTStr -> string conversion. Fixes #71015.
11797
11798         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
11799
11800         * mempool.c (mono_mempool_contains_addr): New helper function.
11801
11802 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
11803
11804         * metadata.c (mono_metadata_compute_size): Fix size calculation of
11805         HasSematics encoded fields.
11806         
11807         * metadata.c (mono_type_to_unmanaged): Improve error message for 
11808         invalid string marshalling.
11809
11810         * metadata.c: Fix warnings.
11811         
11812 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
11813
11814         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
11815         profiler support.
11816
11817 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
11818
11819         * domain.c object.c domain-internals.h: Revert part of r38077 since the
11820         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
11821         tests.
11822
11823 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
11824
11825         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
11826         so methods containing these can be AOTed.
11827
11828 2005-01-03  Martin Baulig  <martin@ximian.com>
11829
11830         * loader.c (find_method): Removed the hack for generic instances.
11831         (method_from_memberref): If our parent is a generic instance, pass
11832         its generic type definition to find_method() and then inflate the
11833         method.
11834         (mono_get_method_constrained): Pass the generic type definition to
11835         find_method() and inflate the method later.
11836
11837         * class-internals.h (MonoStats): Added `generic_class_count'.
11838
11839         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
11840         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
11841
11842         * reflection.c (mono_custom_attrs_from_params): Don't ignore
11843         generic type definitions.
11844
11845 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
11846
11847         * loader.c icall.c: Fix warnings.
11848
11849 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
11850
11851         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
11852         blittable types. Fixes #70864.
11853
11854 2004-12-29  Martin Baulig  <martin@ximian.com>
11855
11856         * icall.c
11857         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
11858
11859         * reflection.c (mono_method_get_object): Create a
11860         "System.Reflection.MonoGenericMethod" for inflated methods; don't
11861         call mono_get_inflated_method().
11862
11863         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
11864
11865 2004-12-27  Martin Baulig  <martin@ximian.com>
11866
11867         * class-internals.h (MonoMethod): Added `is_inflated' flag.
11868         (MonoMethodInflated): Added `inflated' field.
11869
11870         * class.c (mono_class_inflate_generic_method): Don't really
11871         inflate the method here; just set the `is_inflated' flag in the
11872         MonoMethod.
11873         (mono_class_get_inflated_method): Actually inflate the method here
11874         if it's not already inflated; we use the MonoMethodInflated's new
11875         `inflated' field as a cache.
11876
11877 2004-12-26  Martin Baulig  <martin@ximian.com>
11878
11879         * class.c
11880         (inflate_generic_class): Moved some code out of inflate_generic_type().
11881         (mono_class_inflate_generic_method): If we're already inflated,
11882         inflate the context and use the declaring method; ie. make sure
11883         the declaring method of an inflated method is always the generic
11884         method definition.
11885         (mono_class_create_from_typedef): Create
11886         `class->generic_container->context->gclass'.
11887
11888 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
11889
11890         * metadata-internals.h, marshal.c, reflection.c: More
11891         MonoGHashTable->GHashTable.
11892
11893         * domain-internals.h, class.c: Change MonoGHashTable's into
11894         GHashTables for some cases where no gc stuff is used
11895
11896         All users: update apis
11897
11898 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
11899
11900         * metadata.c (builtin_types): Make this `const'. Makes this get
11901         put into the shareable section.
11902         (mono_metadata_init): Casts to make gcc happy.
11903
11904 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
11905
11906         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
11907
11908 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
11909
11910         * icall.c: Added an internal call to retrieve the position and length
11911         of assembly-level declarative security attributes (RequestMinimum, 
11912         RequestOptional and RequestRefuse). This is used by the Assembly class
11913         to re-create the corresponding permission sets.
11914
11915 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
11916
11917         * marshal.c: fix the stelemref wrapper to be type correct
11918         (and faster).
11919
11920 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
11921
11922         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
11923         to do key & 0x7fffffff. Hashtable already does this. It just
11924         results in longer code.
11925
11926 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
11927
11928         * appdomain.c: Bump corlib version.
11929         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
11930         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
11931         * reflection.c|h: Add functions to get declarative security infos
11932         (blob position and length) for assemblies, classes and methods.
11933
11934 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
11935
11936         * reflection.c: sort the constant table (bug #70693).
11937
11938 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
11939
11940         * object-internals.h, threads.c, domain.c: add accessors for
11941         the MonoThread and MonoDomain tls keys.
11942
11943 2004-12-18  Martin Baulig  <martin@ximian.com>
11944
11945         * class.c (inflate_generic_type): If we're inflating a generic
11946         instance, set `ngclass->context->container = context->container';
11947         ie. the container we inflated into.
11948
11949         * metadata.c (mono_metadata_parse_generic_param): Reflect above
11950         inflate_generic_type() changes.
11951
11952 2004-12-17  Martin Baulig  <martin@ximian.com>
11953
11954         * class-internals.h
11955         (MonoGenericClass): Replaced `MonoType *generic_type' with
11956         `MonoClass *generic_class'.  Removed `dynamic_info'; if
11957         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
11958         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
11959
11960 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
11961
11962         * exception.c (mono_exception_from_token): New helper function.
11963
11964 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
11965
11966         * assembly.c (mono_assembly_load_with_partial_name): Call 
11967         mono_assembly_loaded before invoking the preload hooks. Fixes
11968         #70564.
11969
11970         * object-internals.h (MonoThread): Change culture_info and 
11971         ui_culture_info into an array.
11972
11973         * threads.c: Cache culture info objects from more than one appdomain.
11974
11975         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
11976         current UI culture.
11977
11978 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
11979
11980         * threads.h threads.c appdomain.c: Clear the culture_info field of
11981         all threads during unloading if they point to an object in the dying
11982         appdomain.
11983
11984 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
11985
11986         * culture-info.h (TextInfoEntry): New struct
11987         * object-internals.h: sync with managed
11988         * locales.c: fill the `text_info_data' field
11989         * culture-info-tables.h: update
11990
11991 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
11992
11993         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
11994         collector.
11995
11996 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
11997
11998         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
11999         (ves_icall_ModuleBuilder_getMethodToken): Ditto
12000
12001 2004-12-12  Martin Baulig  <martin@ximian.com>
12002
12003         * mono-debug-debugger.c (write_type): If we're an enum and the
12004         builtin types have already been initialized, call mono_class_init().
12005
12006 2004-12-11  Martin Baulig  <martin@ximian.com>
12007
12008         * metadata.c (mono_metadata_load_generic_params): Added
12009         `MonoGenericContainer *parent_container' argument; automatically
12010         compute `container->is_method'; pass the correct owner to
12011         get_constraints().      
12012
12013         * reflection.c (compare_genericparam): Sort the GenericParam table
12014         according to increasing owners. 
12015
12016 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
12017
12018         * profiler.c: allow disabling the default profiler.
12019
12020 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
12021
12022         * decimal.c, icall.c: allow disabling System.Decimal support.
12023
12024 2004-12-09  Marek Safar <marek.safar@seznam.cz>
12025
12026         * reflection.c: Add support for null attribute arguments.
12027
12028 2004-12-09  Martin Baulig  <martin@ximian.com>
12029
12030         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
12031         names to get rid of compiler warnings.
12032
12033 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
12034
12035         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
12036         mono_marshal_load_type_info (). Fixes #69625.
12037         (mono_marshal_get_ptr_to_struct): Likewise.
12038
12039 2004-12-08  Martin Baulig  <martin@ximian.com>
12040
12041         * mono-debug.h: Bumped version number to 47.
12042
12043         * mono-debug-debugger.c
12044         (mono_debugger_event_handler, mono_debugger_event): Take two
12045         guint64 arguments insteed of a gpointer and a guint32.  
12046
12047 2004-12-08  Martin Baulig  <martin@ximian.com>
12048
12049         * debug-mono-symfile.h
12050         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
12051         `address' to `native_offset'.
12052
12053 2004-12-08  Martin Baulig  <martin@ximian.com>
12054
12055         * class.c (mono_class_create_from_typespec): Only inflate if we
12056         either have `context->gclass' or `context->gmethod'.
12057
12058 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
12059
12060         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
12061
12062         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
12063
12064         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
12065
12066         * reflection.c (mono_assembly_get_object): Remove the workaround put
12067         in for the release.
12068         
12069         * appdomain.c: Use the corlib_internal field from MonoAssembly.
12070
12071         * appdomain.c: Bump corlib version.
12072
12073         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
12074         be visible in other appdomains.
12075
12076 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
12077
12078         * threads.c: Interlocked inc and dec for longs were messed up,
12079         use a KISS based impl for this. Fixes 70234
12080
12081 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
12082
12083         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
12084
12085 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12086
12087         * icall.c: fix to follow policy not to allow struct
12088         arguments in icalls.
12089
12090 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12091
12092         * process.c: make the patch that handles spaces in file paths work
12093         on mono/windows too.
12094
12095 2004-12-06  Martin Baulig  <martin@ximian.com>
12096
12097         * class.c (mono_class_create_generic): Call
12098         mono_class_setup_supertypes() if we're dynamic.
12099         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
12100
12101 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
12102
12103         * object-internals.h: Add new fields to MonoThread.
12104
12105         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12106
12107         * icall.c threads-types.h threads.c: Add new icalls.
12108
12109         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
12110
12111         * object-internals.h (MonoReflectionAssembly): Sync object layout with
12112         managed side.
12113
12114         * appdomain.c: Bump corlib version.
12115
12116         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
12117         internal assemblies. Fixes #69181.
12118
12119 2004-12-05  Martin Baulig  <martin@ximian.com>
12120
12121         * class.c (mono_class_inflate_generic_signature): Make this a
12122         no-op if `context' is NULL or we don't have any type parameters;
12123         also copy `sentinelpos'.        
12124
12125 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
12126
12127         * image.c: Add unbox_wrapper_cache.
12128
12129         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
12130
12131         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
12132         function generator.
12133         
12134         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
12135         Fixes #70173.
12136
12137         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
12138         
12139 2004-12-04  Martin Baulig  <martin@ximian.com>
12140
12141         * loader.c (mono_method_get_signature_full): New public function;
12142         like mono_method_get_signature(), but with an additional
12143         `MonoGenericContext *' argument.
12144
12145         * class.c (mono_class_inflate_generic_signature): Formerly known
12146         as inflate_generic_signature(); make this public.
12147
12148 2004-12-04  Martin Baulig  <martin@ximian.com>
12149
12150         * metadata.c
12151         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
12152         instead of a `MonoGenericContainer *'.  
12153         (mono_metadata_parse_array_full): Likewise.
12154         (mono_metadata_parse_signature_full): Likewise.
12155         (mono_metadata_parse_method_signature_full): Likewise.
12156         (mono_metadata_parse_generic_inst): Likewise.
12157         (mono_metadata_parse_generic_param): Likewise.
12158         (mono_metadata_parse_mh_full): Likewise.
12159         (mono_type_create_from_typespec_full): Likewise.
12160
12161 2004-12-03  Martin Baulig  <martin@ximian.com>
12162
12163         * class-internals.h (MonoGenericContainer): Replaced the
12164         `MonoGenericContext * pointer with a `MonoGenericContext'
12165         structure and made it the first element.
12166
12167 2004-12-03  Martin Baulig  <martin@ximian.com>
12168
12169         * class.c
12170         (inflate_generic_type): Set the `context->container' when creating
12171         a new MonoGenericContext.
12172         (mono_class_inflate_generic_method): Likewise.
12173         (mono_class_create_from_typespec): Just use `context->container'
12174         to get the container.
12175
12176         * loader.c (method_from_methodspec): Set `context->parent' from
12177         `context->container' - and if that's a method container, use its
12178         parent.  Also set the `context->container' when creating a new
12179         MonoGenericContext.
12180         (mono_get_method_from_token): Use just `context->container' to get
12181         the container.
12182
12183         * metadata.c (do_mono_metadata_parse_generic_class): Also set
12184         `gclass->context->container'.
12185
12186         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
12187         the `context->container' when creating a new MonoGenericContext.
12188
12189 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
12190
12191         * reflection.c (compare_genericparam): Sort params with identical
12192         owner by their number. Fixes gen-111 on sparc.
12193
12194 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
12195
12196         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
12197         around the domain changes.
12198
12199         * appdomain.c (mono_domain_unload): Handle the case when the thread
12200         calling Unload is itself being aborted during unloading. Fixes #70022.
12201
12202         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
12203
12204         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
12205         checkpoint_func as an icall so it gets a wrapper.
12206         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
12207         in the cross-appdomain wrappers too.
12208
12209         * threads.c (mono_thread_has_appdomain_ref): Make this public.
12210
12211         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
12212
12213         * reflection.c: Fix some memory leaks.
12214         
12215 2004-12-02  Martin Baulig  <martin@ximian.com>
12216
12217         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
12218
12219         * metadata.c (generic_class_cache): New static hashtable.
12220         (mono_metadata_lookup_generic_class): New public method.
12221
12222 2004-12-02  Martin Baulig  <martin@ximian.com>
12223
12224         * class.c (mono_class_create_from_typedef): Call
12225         mono_class_setup_parent() and mono_class_create_mono_type() before
12226         parsing the interfaces.
12227
12228 2004-12-02  Martin Baulig  <martin@ximian.com>
12229
12230         * metadata.c (generic_inst_cache): New static hashtable.
12231         (mono_metadata_lookup_generic_inst): New public function.
12232         (mono_metadata_inflate_generic_inst): New public function.
12233         (mono_metadata_parse_generic_inst): New public function.
12234         (do_mono_metadata_parse_generic_class): Use the new
12235         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
12236         since this'll also use the cache.
12237
12238         * reflection.c (mono_reflection_bind_generic_method_parameters):
12239         Use mono_metadata_lookup_generic_inst() to use the new cache.
12240
12241         * class.c (inflate_mono_type): Use
12242         mono_metadata_inflate_generic_inst() to inflate a generic
12243         instance; this'll also use the new cache.
12244
12245         * loader.c (method_from_methodspec): Use
12246         mono_metadata_parse_generic_inst() and
12247         mono_metadata_inflate_generic_inst() rather than parsing it
12248         manually, so we can use the new cache.
12249
12250 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
12251
12252         * threads.c (wait_for_tids): Do not incorrectly free threads when 
12253         the wait times out.
12254
12255 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
12256
12257         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
12258         iter->args based on whether parameters are passed in registers (i.e.
12259         MONO_ARCH_REGPARMS is defined)
12260
12261 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
12262
12263         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
12264         the exception message. Fixes #70070.
12265         (method_from_methodspec): Fix warnings.
12266
12267 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12268
12269         * process.c: (complete_path) return the path quoted
12270
12271 2004-12-01  Martin Baulig  <martin@ximian.com>
12272
12273         * class-internals.h (MonoGenericInst): New structure.
12274         (MonoGenericClass): Replaced `type_argc', `type_argv' and
12275         `is_open' with `MonoGenericInst *inst'.
12276         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
12277         `is_open' with `MonoGenericInst *inst'.
12278
12279 2004-11-30  Martin Baulig  <martin@ximian.com>
12280
12281         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
12282
12283         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
12284         to `generic_class_cache'.
12285
12286         * metadata.c
12287         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
12288         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
12289         (mono_generic_inst_is_valuetype): Renamed to
12290         mono_generic_class_is_valuetype().
12291
12292         * class-internals.h
12293         (MonoGenericInst): Renamed to MonoGenericClass.
12294         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
12295         (MonoClass): Renamed `generic_inst' to `generic_class'.
12296         (MonoGenericContext): Renamed `ginst' to `gclass'.
12297
12298         * object-internals.h
12299         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
12300
12301         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
12302         mono_reflection_generic_class_initialize().
12303
12304         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
12305         now known as "System.Reflection.MonoGenericClass".
12306         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
12307
12308 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
12309
12310         * class-internals.h: Added a flag field to MonoClass to cache the
12311         declarative security attributes actions associated with the class.
12312         * domain-internals.h: Added booleans to MonoJitInfo to cache the
12313         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
12314         applicable to the JITted method.
12315         * reflection.c|h: Added functions to extract (as flags) which security
12316         actions are available (declaratively) for a method, class or assembly.
12317         * metadata.c|h: Added functions to search the declarative security
12318         table in the metadata.
12319         
12320 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
12321
12322         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
12323         EXPORTEDTYPES are already in the class name cache, so there is no
12324         need to add extra code here to look at them. Just removes a bit of
12325         cruft.
12326
12327         (ves_icall_System_Environment_get_TickCount): No need for #if
12328         WINDOWS. We already have the code in io-layer.
12329
12330 2004-11-28  Martin Baulig  <martin@ximian.com>
12331
12332         * loader.c
12333         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
12334         Fixes gen-112.cs.
12335
12336 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
12337
12338         * assembly.c (do_mono_assembly_open): Instead of having a
12339         conditional WITH_BUNDLE, incorporate support for bundles here, by
12340         having a global `bundles' variable holding a pointer to the actual
12341         bundles. 
12342
12343         (mono_register_bundled_assemblies): New API call used by the
12344         bundle code. 
12345
12346         See mkbundle.1 for details.
12347         
12348 2004-11-27  Martin Baulig  <martin@ximian.com>
12349
12350         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
12351         the vtable for generic methods.
12352
12353 2004-11-26  Martin Baulig  <martin@ximian.com>
12354
12355         * metadata.c
12356         (mono_metadata_generic_method_hash): New public function.
12357         (mono_metadata_generic_method_equal): Likewise.
12358
12359         * class-internals.h
12360         (MonoGenericContainer): Added `GHashTable *method_hash'.
12361
12362         * reflection.c (ReflectionMethodBuilder): Added
12363         `MonoGenericContainer *generic_container'.
12364         (reflection_methodbuilder_to_mono_method): Don't create a new
12365         MonoGenericContainer each time we're called.
12366         (mono_reflection_bind_generic_method_parameters): Use
12367         `container->method_hash' to cache the results so we don't create a
12368         different method if we're called several times with the same
12369         arguments.
12370
12371         * loader.c (method_from_methodspec): Use the new
12372         `container->method_hash' here, too.
12373
12374 2004-11-26  Martin Baulig  <martin@ximian.com>
12375
12376         * class.c (inflate_generic_signature): Correctly compute
12377         `res->has_type_parameters'.
12378         (mono_class_vtable): Use the `has_type_parameters' flag to
12379         determine whether we're a generic method.
12380
12381         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
12382
12383 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
12384
12385         * object.c (mono_runtime_run_main): Fix a small memory leak.
12386
12387 2004-11-25  Martin Baulig  <martin@ximian.com>
12388
12389         * class.c (set_generic_param_owner): Fixed the loop.
12390
12391 2004-11-25  Martin Baulig  <martin@ximian.com>
12392
12393         * object.c (mono_class_vtable): Don't create any JIT wrappers for
12394         generic methods.
12395
12396 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
12397
12398         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
12399         names. Fixes #69787.
12400
12401 2004-11-24  Martin Baulig  <martin@ximian.com>
12402
12403         * class.c (mono_class_create_generic_2): If we don't have a
12404         `ginst->parent', inflate `gklass->parent' to get our parent.
12405
12406 2004-11-24  Martin Baulig  <martin@ximian.com>
12407
12408         * reflection.c (compare_genericparam): Correctly sort the
12409         GenericParam table; fixes #69779.
12410
12411 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
12412
12413         * reflection.c: When writing a PE file, don't create a huge
12414         buffer in memory. Just write the arrays we have to the file.
12415         This reduces memory usage.
12416
12417         * metadata-internals.h: MonoDynamicStream pefile is no longer used
12418         globally.
12419
12420 2004-11-17  Martin Baulig  <martin@ximian.com>
12421
12422         * class.c (mono_class_init): Don't setup `class->parent' for
12423         dynamic instances; moved this to mono_class_generic_2().
12424         (mono_class_create_generic): Also set `klass->inited' for dynamic
12425         generic instances.
12426         (mono_class_create_generic_2): Don't do anything for dynamic
12427         generic instances.  Set `klass->parent' here and also call
12428         mono_class_setup_parent() here. 
12429
12430         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
12431         `MonoType *parent' argument; set `ginst->parent' before calling
12432         mono_class_create_generic_2(), so we set the correct parent.
12433
12434 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
12435
12436         * reflection.c: allow getting attributes from ModuleBuilder
12437         (used by ikvm).
12438
12439 2004-11-17  Martin Baulig  <martin@ximian.com>
12440
12441         * class.c (mono_class_create_from_typedef): If a type parameter is
12442         inherited from an outer class, set its owner to that class.
12443
12444 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
12445
12446         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
12447           for (int*) written size. This fixes bug #69592.
12448
12449 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
12450
12451         * icall.c: Added IsAuthenticodePresnet internal call.
12452         * image.c|h: New function that check a MonoImage for an Authenticode
12453         signature in the certificate PE data directory.
12454         * security.c|h: New internal call to ask the runtime if an 
12455         Authenticode signature seems referenced in the PE header.
12456
12457 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
12458
12459         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
12460
12461         * reflection.c (mono_image_create_pefile): Free the assembly streams
12462         after writing out the assembly file.
12463
12464         * object.c (mono_runtime_run_main): Fix small memory leak.
12465
12466         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
12467         property access modifiers. Fixes #69389.
12468
12469 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
12470
12471         * domain.c, object.c, object-internals.h, domain-internals.h,
12472         object.h, marshal.c: keep dynamic code info per domain.
12473
12474 2004-11-15  Martin Baulig  <martin@ximian.com>
12475
12476         * class.c (mono_type_get_name_recurse): Put type arguments in
12477         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
12478         see bug #68387.
12479
12480 2004-11-15  Martin Baulig  <martin@ximian.com>
12481
12482         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
12483         (mono_class_setup_vtable): When computing `the_cname' for a
12484         generic instance, don't include the namespace since we'd otherwise
12485         add it twice.
12486
12487 2004-11-15  Martin Baulig  <martin@ximian.com>
12488
12489         * class.c (mono_class_create_generic): Changed return type to void.
12490         (mono_class_create_generic_2): New public function; setup
12491         `class->method', `class->field' and `class->interfaces' here
12492         instead of in mono_class_init().
12493
12494         * class.h (mono_class_create_generic): Moved to class-internals.h.
12495
12496 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
12497
12498         * reflection.c (mono_image_create_pefile): take a file HANDLE.
12499         rather than writing to memory, write to this file. Right now,
12500         we are just writting into a buffer, and copying that. However
12501         we can avoid the buffer later.
12502
12503         (mono_dynamic_stream_reset): new function
12504
12505         * icall.c, object-internals.h: update for the above.
12506
12507 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
12508
12509         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
12510         have been using gc'd memory. First it is slower, unlikely
12511         the comment in the source code said, secondly, it increases
12512         our footprint to do it in the gc.
12513
12514         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
12515         the method so that it does not have to copy to managed code.
12516
12517 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
12518
12519         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
12520
12521 2004-11-12  Martin Baulig  <martin@localhost>
12522
12523         * reflection.c (mono_image_create_token): Allow generic method
12524         definitions here, since they may appear in an `.override'; see
12525         gen-98/gen-99 for an example.
12526
12527 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
12528
12529         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
12530         #69365.
12531
12532         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
12533         descriptive.
12534
12535 2004-11-11  Martin Baulig  <martin@ximian.com>
12536
12537         * class.c (mono_class_setup_vtable): In an explicit interface
12538         implementation, the method name now includes the arity.
12539
12540 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
12541
12542         * object.c (mono_array_full_copy): Fix warning.
12543
12544 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
12545
12546         * appdomain.c: Removed look_for_method_by_name(). Use the new method
12547         mono_class_get_method_from_name() instead.
12548         
12549         * class-internals.h: Added two new types of wrappers. 
12550         Added MonoRemotingTarget enum. Added new trampoline function type, which
12551         takes an additional MonoRemotingTarget value as parameter, so it is
12552         possible to request a trampoline for a specific target.
12553         
12554         * class.c: Added new mono_class_get_method_from_name() method.
12555         
12556         * class.h: In MonoRemoteClass, we can have now to vtables, one for
12557         general remoting sinks and one specific for cross domain calls.
12558         
12559         * debug-helpers.c: Added new wrapper names.
12560         
12561         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
12562         of a remote class.
12563         
12564         * image.c: Porperly delete value objects form the remoting invoke hashtable.
12565         
12566         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
12567         with several other methods (mono_marshal_get_xappdomain_dispatch,
12568         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
12569         and others) can generate a fast remoting wrapper for cross domain calls.
12570         More information can be found in docs/remoting.
12571         Other changes: Removed mono_find_method_by_name, and used
12572         mono_class_get_method_from_name instead.
12573         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
12574         is stored in the remoting invoke hashtable.
12575         
12576         * marshal.h: published the new method for getting the xdomain wrapper,
12577         and also added a method for getting the adequate wrapper for a given
12578         method and target.
12579         
12580         * object-internals.h, object.c: Added a couple of methods for capying and
12581         cloning arrays.
12582         Modified mono_install_remoting_trampoline, which takes the new remoting
12583         trampoline that has a remoting target as parameter.
12584         mono_class_proxy_vtable now also takes a remoting target as parameter, and
12585         will return the most suitable vtable for the target.
12586         Added mono_remote_class_vtable, which returns the vtable of a remote class
12587         (which can be the normal remoting vtable or the xdomain vtable).
12588         
12589         * threads.c: the xdomain invoke and dispatch wrappers must also be
12590         protected against interruptions.
12591
12592 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12593
12594         * icall.c: use memmove in BlockCopyInternal when the source and
12595         destination arrays are the same.
12596
12597 2004-11-09  Martin Baulig  <martin@ximian.com>
12598
12599         * class-internals.h (MonoGenericContainer): Removed `method' and
12600         `signature', replaced them with `is_method' and `is_signature'
12601         flags.  Added `context'.
12602
12603         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
12604         instead of a `MonoGenericContainer *'.
12605
12606         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
12607         for dynamic type parameters.
12608         (mono_metadata_load_generic_params): Setup `container->context'.
12609
12610         * reflection.c (mono_reflection_setup_generic_class): Setup
12611         `tb->generic_container->context'.
12612         (do_mono_reflection_bind_generic_parameters): Use
12613         mono_class_inflate_generic_type() to correctly inflate types,
12614         rather than using our own hack just for MONO_TYPE_VAR.
12615
12616 2004-11-09  Martin Baulig  <martin@ximian.com>
12617
12618         * class.c (mono_class_inflate_generic_method): Small fix; don't
12619         crash here.
12620
12621         * icall.c
12622         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
12623         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
12624         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
12625         (ves_icall_Type_BindGenericParameters): Likewise.
12626         (ves_icall_Type_get_IsGenericInstance): Likewise.
12627         (ves_icall_Type_GetGenericParameterPosition): Likewise.
12628         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
12629         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
12630         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
12631
12632 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
12633
12634         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
12635         assembly versions and public key tokens. Fixes #69113.
12636
12637 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
12638
12639         * metadata.c: fix bug introduced with the type cache changes
12640         on 2004-11-06.
12641
12642 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
12643
12644         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
12645         the MonoClass pointer instead of the token in exception clauses.
12646         * reflection.c: updates for the above and make the code not depend
12647         on the structure of MonoExceptionClause.
12648
12649 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
12650
12651         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12652         Add support for dynamic assemblies. Fixes #69114.
12653
12654         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
12655
12656 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
12657
12658         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
12659         since most only those methods use it. the code member of
12660         MonoMethodPInvoke was dead, so that can be removed too. Also,
12661         remove inline_count (again, not used), and move slot so that it
12662         can share bits with some other flags. This saves 8 bytes in the
12663         structure and gives us about 50 kb back for mcs helloworld.cs
12664
12665         * *.[ch]: Do naming changes for the above.
12666
12667         * loader.c (mono_method_get_header): Lazily init the header
12668         on first access.
12669         (mono_get_method_from_token): don't init the header here
12670         (mono_free_method): the header may never be allocated
12671
12672         Overall, this saves 150 kb of unmanaged allocations
12673         for mcs helloworld.cs. That accounts for 10% of the unmanaged
12674         memory at runtime.
12675         
12676         * loader.c, loader.h (mono_method_get_header): new accessor.
12677
12678         * *.[ch]: use the above method. Prepares us to lazily load
12679         the header.
12680
12681         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
12682         three warnings, which are actual bugs (see 69206).
12683
12684         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
12685         unused. Saves a cool 4 bytes / method.
12686
12687 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
12688
12689         * metadata.c (builtin_types): Add types for System.Object here.
12690         (mono_metadata_parse_type_full): Cache MonoType*'s that are
12691         for a class or valuetype from klass->this_arg or klass->byval_arg.
12692
12693         On mcs for a hello world, this gets us down from 21836 MonoType's
12694         to 14560.
12695
12696         (mono_metadata_free_type): Account for the above change.
12697
12698 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
12699
12700         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
12701         exception instead of asserting if name is null.
12702         (ves_icall_System_AppDomain_GetData): Ditto.
12703
12704 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
12705
12706         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
12707         EnumBuilder.
12708
12709         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
12710         Return NULL when the domain does not have entry_assembly set.
12711
12712         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
12713         Add a 'resource_modules' argument.
12714         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
12715
12716         * reflection.c (mono_reflection_create_runtime_class): Move setting
12717         of wastypebuilder here, so mono_get_type_object () returns a MonoType
12718         for enums too.
12719
12720         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
12721         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
12722         Throw an ArgumentNullException if 'ptr' is null.
12723
12724         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
12725         assemblies here. Fixes #69020.
12726
12727 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
12728
12729         * reflection.c (build_compressed_metadata): Fix the previous patch for
12730         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
12731         the stack.
12732
12733 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
12734
12735         * assembly.c (mono_assembly_names_equal): Allow a match if one of
12736         the cultures is false. Fixes #69090.
12737
12738         * reflection.c (build_compressed_metadata): Fix invalid memory read 
12739         detected by valgrind.
12740         
12741         * reflection.c (mono_reflection_get_type): Avoid triggering a 
12742         TypeResolve multiple times for the same type. Fixes #65577.
12743
12744 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
12745
12746         * marshal.c: Avoid using ldftn to call managed functions. It is
12747         much slower than just a call.
12748
12749         * reflection.c (mono_module_get_object): free the basename we
12750         allocate here from glib.
12751         
12752         * reflection.c (ensure_runtime_vtable): make sure to free
12753         overrides.  Also, we were allocating an array of MonoMethod not an
12754         array of MonoMethod*.
12755
12756         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
12757
12758         * image.c (mono_image_close): free image->guid here.
12759
12760 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
12761
12762         * reflection.c: Fix some spec conformance issues with the PE file
12763         structures so mcs compiled apps run on the Net 2.0 beta.
12764
12765 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
12766
12767         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
12768         Implement this. Fixes #67264.
12769
12770         * debug-helpers.h debug-helpers.c marshal.c: Move 
12771         mono_find_method_by_name to debug-helpers.c.
12772
12773 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
12774
12775         * object.c (mono_release_type_locks): type_initialization_hash is
12776         a GHashTable.
12777
12778         * reflection.c object.c object-internals.h: Fix warnings.
12779
12780         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
12781         without accessors. Fixes #61561.
12782
12783         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
12784         application base from the root domain if not set. Fixes #65641.
12785         (mono_runtime_init): Fix warning.
12786
12787 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12788
12789         * appdomain.c: call mono_thread_pool_init.
12790         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
12791         of worker threads based on the number of CPUs and the environment
12792         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
12793         for non-windows (windows) systems.
12794
12795 2004-10-27  Chris Toshok  <toshok@ximian.com>
12796
12797         * mono-debug-debugger.c (write_class): don't call mono_class_init
12798         here, as even with the check for (!klass->init_pending), we get
12799         into a situation where we're hitting cycles in class
12800         initialization.  Fixes #68816.
12801
12802 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
12803
12804         * image.c: Avoid overwriting values in the loaded_images_hash when an
12805         assembly is loaded multiple times. Fixes #61152.
12806
12807         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
12808         so multiple satellite assemblies for the same name can be loaded.
12809         Fixes #68259.
12810
12811         * mono_domain_assembly_preload: Actually return the loaded assembly, 
12812         not NULL.
12813
12814         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
12815         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
12816
12817         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
12818         pending finalizers are not invoked after the appdomain has been 
12819         unloaded. Fixes #67862.
12820
12821 2004-10-22  Martin Baulig  <martin@ximian.com>
12822
12823         * mono-debug-debugger.c
12824         (mono_debugger_runtime_invoke): Don't box valuetypes.
12825
12826 2004-10-22  Chris Toshok  <toshok@ximian.com>
12827
12828         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
12829         don't hide private methods.
12830
12831 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
12832
12833         * icall.c: Allows the runtime to "share" (when known) the public key
12834         token of an assembly. This avoid the need to recalculate the token 
12835         (from the public key) in managed code.
12836
12837 2004-10-21  Chris Toshok  <toshok@ximian.com>
12838
12839         * debug-helpers.c (append_class_name): argh, revert last patch.
12840         
12841 2004-10-21  Chris Toshok  <toshok@ximian.com>
12842
12843         * debug-helpers.c (append_class_name): use '+' as the delimiter,
12844         not '/', so that it matches what the debugger uses to look up
12845         methods.
12846
12847 2004-10-21  Martin Baulig  <martin@ximian.com>
12848
12849         * mono-debug-debugger.c (mono_debugger_throw_exception): New
12850         public method; this is called each time an exception is thrown and
12851         allows the debugger to use exception catch points.
12852
12853 2004-10-21  Martin Baulig  <martin@ximian.com>
12854
12855         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
12856         the stack pointer and the exception object in some struct and pass
12857         that to the debugger.
12858
12859 2004-10-21  Chris Toshok  <toshok@ximian.com>
12860
12861         * mono-debug-debugger.c (do_write_class): add instance/static
12862         event support.  We don't expose "raise" or "other" yet.
12863         (event_is_static): new method.
12864
12865 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
12866
12867         * mono-debug-debugger.c
12868         (mono_debugger_handle_exception): Remove
12869         bogus return value for fussy compilers.
12870
12871 2004-10-20  Martin Baulig  <martin@ximian.com>
12872
12873         * mono-debug-debugger.c
12874         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
12875         (mono_debugger_handled_exception): Likewise.
12876
12877 2004-10-20  Martin Baulig  <martin@ximian.com>
12878
12879         * mono-debug-debugger.h (MonoDebuggerEvent): Added
12880         MONO_DEBUGGER_EVENT_EXCEPTION.
12881
12882         * mono-debug-debugger.c (mono_debugger_handle_exception): New
12883         public function to send the debugger a notification for an
12884         exception and inform it about a catch/finally clause.
12885
12886 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
12887
12888         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
12889         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
12890         fix 2.95 build. 
12891
12892         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
12893
12894 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
12895
12896         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
12897         marshalled as [In,Out]. Fixes #58325.
12898
12899 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
12900
12901         * reflection.c (mono_method_body_get_object): Implement some fields.
12902
12903 2004-10-12  Martin Baulig  <martin@ximian.com>
12904
12905         * reflection.c (mono_reflection_bind_generic_parameters): Small
12906         fix, correctly retrieve our parent from a generic instance.
12907
12908 2004-10-12  Martin Baulig  <martin@ximian.com>
12909
12910         * metadata.c (mono_metadata_generic_param_equal): We always have
12911         an owner.
12912
12913         * class.c
12914         (mono_class_from_generic_parameter): We need to have an owner.
12915         (my_mono_class_from_generic_parameter): Likewise.
12916
12917         * reflection.c (mono_reflection_setup_generic_class): Renamed to
12918         mono_reflection_create_generic_class() and added a new
12919         mono_reflection_setup_generic_class().  
12920         (mono_reflection_initialize_generic_param): If we're a nested
12921         generic type and inherited from the containing class, set our
12922         owner to the outer class.
12923
12924 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
12925
12926         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
12927
12928         * reflection.c (mono_method_body_get_object): New function to create
12929         a MethodBody object.
12930
12931         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
12932
12933 2004-10-11  Martin Baulig  <martin@ximian.com>
12934
12935         * metadata.c (_mono_metadata_type_equal): Renamed to
12936         do_mono_metadata_type_equal() and made static.
12937
12938 2004-10-11  Martin Baulig  <martin@ximian.com>
12939
12940         * appdomain.c: Bump corlib version number to 28.
12941
12942 2004-10-10  Martin Baulig  <martin@ximian.com>
12943
12944         * class-internals.h
12945         (MonoGenericInst): Added `MonoGenericContainer *container'.
12946         (MonoGenericMethod): Likewise.
12947         (MonoGenericContext): Likewise.
12948         (MonoGenericParam): Added `MonoGenericContainer *owner'.
12949
12950         * metadata.c
12951         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
12952         (do_mono_metadata_parse_generic_inst): Likewise.
12953         (mono_metadata_parse_type_full): New public method.  This is the actual
12954         mono_metadata_parse_type() implementation - with an additional
12955         `MonoGenericContainer *' argument.
12956         (mono_metadata_parse_array_full): Likewise.
12957         (mono_metadata_parse_signature_full): Likewise.
12958         (mono_metadata_parse_method_signature_full): Likewise.
12959         (mono_metadata_parse_mh_full): Likewise.
12960         (mono_type_create_from_typespec): Likewise.
12961         (mono_metadata_interfaces_from_typedef_full): New public method;
12962         this is similar to the other _full() methods, but we take a
12963         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
12964         (mono_metadata_parse_generic_param): Take an additional
12965         `MonoGenericContainer *' argument and lookup the MonoGenericParam
12966         from that container.
12967         (mono_metadata_generic_param_equal): New static method to compare
12968         two type parameters.
12969         (_mono_metadata_type_equal): New static method; takes an
12970         additional `gboolean signature_only' argument - if true, we don't
12971         compare the owners of generic parameters.
12972         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
12973         with a TRUE argument - do a signature-only comparision.
12974
12975         * loader.c: Use the new _full() methods and pass the
12976         MonoGenericContainer to them.
12977
12978         * object-internals.h (MonoReflectionTypeBuilder): Added
12979         `MonoGenericContainer *generic_container' field.
12980         (MonoReflectionMethodBuilder): Likewise.
12981
12982 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
12983
12984         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
12985         case initial images of dynamic assemblies.
12986
12987         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
12988
12989         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
12990
12991         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
12992         length of event->other array.
12993         (typebuilder_setup_events): Ditto.
12994
12995         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
12996         'assembly_by_name' and add an 'assemblies' list.
12997
12998         * assembly.h assembly.c: Add a new search hook for determining whenever
12999         an assembly is already loaded. Use this instead of searching in the
13000         loaded_assemblies list.
13001
13002         * domain.c appdomain.c: Implement the new search hook so loaded 
13003         assemblies are now scoped by appdomain. Fixes #67727.
13004
13005 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
13006
13007         * threads.c (mono_thread_attach): Initialize synch_lock field so
13008         mono_thread_detach works again.
13009
13010         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
13011         'lib' too. Fixes #63130.
13012
13013 2004-10-06  Jackson Harper  <jackson@ximian.com>
13014
13015         * culture-info-tables.h: regenerated.
13016
13017 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
13018
13019         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
13020         implemented by other interfaces in the result. Fixes #65764.
13021         
13022         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13023         Handle unloadable modules without crashing.
13024
13025         * image.c (load_modules): Revert the previous patch since modules must
13026         have a fixed index inside the array.
13027         
13028         * image.c (load_modules): Don't include native modules in the modules
13029         array.
13030
13031 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
13032
13033         * reflection.h: Add param_defaults field.
13034
13035         * reflection.c: Add support for parameter defaults in dynamic methods.
13036         Fixes #64595.
13037
13038         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
13039         an empty string when a type has no namespace. Fixes #64230.
13040
13041 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
13042
13043         * tabledefs.h: Added "internal" security actions to support non-CAS
13044         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
13045         Note: they do not seems to be used anymore in 2.0 (new metadata format)
13046
13047 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
13048
13049         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
13050         constructor of abstract class. Fixes #61689.
13051
13052 2004-10-04  Martin Baulig  <martin@ximian.com>
13053
13054         * class-internals.h (MonoGenericContainer): New type.
13055         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
13056         `MonoGenericContainer *generic_container'.
13057         (MonoClass): Replaced `gen_params' and `num_gen_params' with
13058         `MonoGenericContainer *generic_container'.
13059
13060         * metadata.c (mono_metadata_load_generic_params): Return a
13061         `MonoGenericContainer *' instead of a `MonoGenericParam *';
13062         removed the `num' argument.
13063
13064 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
13065
13066         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
13067         for dynamic images.
13068
13069         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
13070         machine fields.
13071
13072         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
13073
13074         * reflection.c: Save pe_kind and machine values into the generated
13075         image file.
13076
13077         * appdomain.c: Bump corlib version number.
13078
13079         * object-internals.h: Reorganize layout of LocalBuilder.
13080
13081         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
13082         New helper function.
13083
13084         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
13085         created MonoType for dynamic types. Fixes #66180.
13086
13087 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
13088
13089         * threadpool.c: the ares hashtable needs a critical section around it.
13090         this prevents some nasty segfaults
13091
13092 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
13093
13094         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
13095         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
13096         bug 67324).
13097         
13098 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
13099
13100         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
13101         
13102 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
13103
13104         * image.c: Always canonicalize image file names, to avoid loading
13105         the same assembly twice when referenced using a relative path.
13106
13107 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
13108
13109         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
13110
13111         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
13112
13113         * marshal.c: Fix warnings.
13114
13115 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
13116
13117         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
13118         attempting to marshal the delegate_trampoline as the method_addr.
13119         This patch has a static hashtable of marshalled delegates so that 
13120         we can map delegate_trampoline addresses back to delegates.  This
13121         allows a delegate passed to managed code to be passed back into native
13122         code.  Fixes #67039
13123
13124 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
13125
13126         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
13127
13128         * reflection.c (method_encode_code): Align method headers properly.
13129         Fixes #66025.
13130
13131 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
13132
13133         * marshal.c: In the runtime invoke wrapper, reset the abort
13134         exception if it is cached. This avoids the automatic rethrowal of 
13135         the exception after the catch of the wrapper. Also check for pending
13136         interruptions before calling the managed method. This is done using
13137         the new method emit_thread_force_interrupt_checkpoint, since the
13138         normal checkpoint method is ignored when running the invoke wrapper.
13139         * object.c: If the abort exception is rethrown, set the abort_exc
13140         field of the thread, so it will be rethrown aftere every catch.
13141         * threadpool.c: Only run an interruption checkpoint if what has been
13142         requested is a stop of the thread (aborts will be ignored).
13143         * threads.c: By default, a thread will now never be interrumped while
13144         running the runtime invoke wrapper (this ensures that runtime_invoke
13145         will always return to the caller if an exception pointer is provided).
13146         There is a new special method mono_thread_force_interruption_checkpoint()
13147         to force an interruption checkpoint even if running a protected
13148         wrapper, which is used by the same runtime invoke wrapper to do a check
13149         at a safe point.
13150
13151 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
13152
13153         * object.c, object-internals.h: Implemented mono_release_type_locks,
13154         which releases the cctor locks held by a thread.
13155         * threads.c, threads.h: In thread_cleanup, release cctor locks held
13156         by a thread. Added mono_thread_exit() method to be used to safely stop
13157         a thread.
13158
13159 2004-09-28  Raja R Harinath  <rharinath@novell.com>
13160
13161         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13162         Move null check before dereference.  Avoid indexing beyond the end
13163         of the 'modules' array.
13164
13165 2004-09-28  Raja R Harinath  <rharinath@novell.com>
13166
13167         * metadata-internals.h (MonoImage): Add module_count field.
13168         * image.c (load_modules): Set image->module_count.
13169         (mono_image_load_file_for_image): Use image->module_count.
13170         * reflection.c (mono_image_load_module): Append to image->modules array 
13171         of dynamic assembly.
13172         (mono_module_get_object): Fix loop to actually increment index.
13173         Use image->module_count.
13174         * assembly.c (mono_assembly_load_references): Use image->module_count.
13175         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
13176         Likewise.
13177
13178 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
13179
13180         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
13181         Avoid assert on generic types.
13182
13183 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
13184
13185         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
13186
13187         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
13188
13189         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
13190         function to convert a MarshalSpec structure to its managed counterpart.
13191
13192         * reflection.c: Fix warnings.
13193         
13194         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
13195         field.
13196
13197         * icall.c (mono_create_icall_signature): Fix build.
13198
13199 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
13200
13201         * icall.c: Add MakePointType icall.
13202
13203         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
13204         warnings.
13205
13206 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13207
13208         * threadpool.c: reuse allocated slots in the queue.
13209
13210 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
13211
13212         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
13213
13214         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
13215
13216         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
13217         previous change.
13218
13219         * tabledefs.h: Add constants for pinvoke attributes BestFit and
13220         ThrowOnUnmappableChar.
13221
13222         * icall.c (ves_icall_Type_GetPacking): New icall.
13223
13224 2004-09-24  Martin Baulig  <martin@ximian.com>
13225
13226         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
13227
13228 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13229
13230         * appdomain.c:
13231         (mono_domain_set): allow setting a domain that is being unloaded.
13232         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
13233         being unloaded.
13234
13235 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
13236
13237         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
13238         the GetCustomAttributes icall.
13239
13240 2004-09-23  Martin Baulig  <martin@ximian.com>
13241
13242         * object-internals.h (MonoReflectionGenericParam): Replaced
13243         'has_ctor_constraint', `has_reference_type' and `has_value_type'
13244         with `guint32 attrs'.
13245
13246 2004-09-23  Martin Baulig  <martin@ximian.com>
13247
13248         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
13249
13250 2004-09-23  Martin Baulig  <martin@ximian.com>
13251
13252         * object-internals.h (GenericParameterAttributes): New enum.
13253
13254 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
13255
13256         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
13257         
13258         * class.c (init_events): Fill out event->other field.
13259
13260         * class.c: Fix warnings.
13261
13262         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
13263
13264 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
13265
13266         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
13267         walk which doesn't supply the IL offset.
13268
13269 2004-09-22  Martin Baulig  <martin@ximian.com>
13270
13271         * reflection.c (mono_reflection_setup_internal_class): If we're
13272         System.ValueType, System.Object or System.Enum, set
13273         `klass->instance_size' and create the vtable.
13274         (mono_reflection_create_internal_class): If we're an enum type,
13275         get the base class from our current corlib.
13276
13277 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
13278
13279         * reflection.h (MonoResolveTokenError): New type.
13280
13281         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
13282         icall.
13283
13284         * icall.c: Add an 'error' argument to the ResolveToken icalls.
13285
13286 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
13287
13288         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
13289         Support also calling constructors, but only for already allocated objects.
13290
13291 2004-09-17  Geoff Norton <gnorton@customerdna.com>
13292
13293         * reflection.c (type_get_qualified_name): If the klass is null
13294         return the typename to avoid a NullRefEx.
13295         (encode_cattr_value): Get the qualified name of the boxed type,
13296         not the underlying enumtype.  Fixes #62984.
13297
13298 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
13299
13300         * marshal.c: Fix problems with previous checkin.
13301
13302 2004-09-21    <vargaz@freemail.hu>
13303
13304         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
13305         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
13306
13307         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
13308
13309 2004-09-21  Geoff Norton <gnorton@customerdna.com>
13310
13311         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
13312         should only return a type for pointers, arrays, and passbyref types.
13313         Fixes bug #63841.
13314
13315 2004-09-21  Martin Baulig  <martin@ximian.com>
13316
13317         * domain.c (mono_debugger_check_runtime_version): New public
13318         function.
13319
13320         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
13321
13322 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
13323
13324         * reflection.c: Added missing sort to the declarative security 
13325         attributes table. MS implementation stops seeing the attributes if the
13326         token number regress in the table (as shown by ildasm and permview).
13327
13328 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
13329
13330         * object-internals.h (MonoReflectionModule): Add 'token' field.
13331         
13332         * reflection.c (mono_reflection_get_token): Add support for Module
13333         and Assembly.
13334         (mono_module_get_object): Set 'token' field.
13335         (mono_module_file_get_object): Set 'token' field.
13336
13337         * icall.c: Add new Assembly and Module icalls.
13338
13339         * appdomain.c: Bump corlib version.
13340
13341 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
13342
13343         * loader.h loader.c class.h class.c: Add helper functions for obtaining
13344         tokens of metadata objects.
13345
13346         * reflection.h reflection.c (mono_reflection_get_token): New function
13347         to obtain the token of a metadata object.
13348
13349         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
13350
13351 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
13352
13353         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
13354         
13355         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
13356
13357 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
13358
13359         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
13360         * object-internals.h: Added 3 MonoArray* members to MonoReflection
13361         AssemblyBuilder to access the permissions set in the class lib.
13362         * reflection.c: Added security attributes encoding step in 
13363         mono_image_build_metadata.
13364         * tabledefs.h: Added new security actions defined in 2.0:
13365         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
13366
13367 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
13368
13369         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
13370         macro parameter.
13371
13372 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
13373  
13374         * locales.c: nullify the ICU_collator member of CompareInfo when it is
13375           finalized. There where random SIGSEVs at program termination, when
13376           an object being finalized was trying to do a string comparison and
13377           the current culture was already finalized.
13378  
13379 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13380
13381         * threads.c: call thread_cleanup before finishing the thread if we get
13382         there.
13383
13384 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
13385
13386         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
13387         assemblies from the parent. Fixes #65665.
13388
13389 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
13390
13391         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
13392         modifiers.
13393
13394 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
13395
13396         * reflection.h: add prototype for mono_get_dbnull_object
13397         * reflection.c: add prototypes for get_default_param_value_blobs 
13398         and mono_get_object_from_blob for fussier compilers
13399
13400 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
13401  
13402         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
13403         false deadlock checks in class initialization.
13404  
13405 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
13406
13407         * image.c (mono_image_addref): Fix comment.
13408
13409         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
13410         possible.
13411
13412 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
13413
13414         * reflection.c (mono_param_get_objects): Modified to return
13415         ParameterInfo.DefaultValue object.
13416
13417         (get_default_param_value_blobs):
13418         (mono_get_object_from_blob):
13419         (mono_get_dbnull_object): New helper routines. 
13420
13421         * object.c (mono_get_constant_value_from_blob): New helper routine
13422         carved out from get_default_field_value ()
13423
13424         * object-internals.h (mono_get_constant_value_from_blob): Added
13425         function declaration.
13426
13427 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
13428
13429         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
13430         referenced assemblies. Fixes #62135.
13431
13432         * exception.h exception.c (mono_get_exception_file_not_found2): New
13433         helper function.
13434
13435 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
13436
13437         * class.h class.c: Add mono_type_get_underlying_type ().
13438
13439 2004-09-09  Geoff Norton <gnorton@customerndna.com>
13440
13441         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
13442         Fix GetTypes() to support dynamically created assemblies.
13443
13444 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
13445
13446         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
13447         
13448         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
13449         previous patch.
13450
13451         * reflection.h reflection.c loader.c: Allow dynamic construction of
13452         pinvoke methods. Fixes #65571.
13453         
13454         * reflection.c (mono_reflection_get_type): Revert previous change since
13455         it causes regressions.
13456
13457 2004-09-08  Martin Baulig  <martin@ximian.com>
13458
13459         * class.c (class_compute_field_layout): Don't call
13460         mono_class_layout_fields() for open generic instances.
13461
13462 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
13463         * threads.c appdomain.c: fix typo in GC macro
13464
13465 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13466
13467         * threads.c: don't call mono_thread_detach() in start_wrapper(),
13468         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
13469
13470 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
13471
13472         * image.c (mono_image_close): Applied patch from 
13473         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
13474         assembly is loaded multiple times from data.
13475         
13476         * image.c (mono_image_open): Fix warning.
13477
13478 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
13479
13480         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
13481         once. Fixes #58334.
13482         
13483         * reflection.c (mono_reflection_create_runtime_class): Initialize
13484         klass->nested_classes. Fixes #61224.
13485
13486 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
13487
13488         * threads.c: sched_yield() on exit, to allow threads to quit.
13489
13490 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
13491
13492         * object.c (mono_unhandled_exception): Remove leftover debug code.
13493
13494 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
13495
13496         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
13497
13498 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
13499
13500         * marshal.c (emit_marshal_array): Really null terminate string arrays.
13501         
13502         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
13503
13504 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
13505
13506         * marshal.c (emit_marshal_array): Null terminate string arrays.
13507         
13508         * marshal.c (raise_auto_layout_exception): Fix warning.
13509
13510         * reflection.c (mono_param_get_objects): Initialize the default value
13511         with DBNull.Value, not null. Fixes #62123.
13512
13513 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
13514
13515         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
13516         throw an exception with a cute explanation.
13517
13518 2004-09-06  Dick Porter  <dick@ximian.com>
13519
13520         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
13521         Close the new process's thread handle, as we don't use it.  The
13522         handle stays around forever otherwise.
13523
13524 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
13525
13526         * object.c (arith_overflow): Fix warning.
13527
13528         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
13529         calling conventions in method refs. Fixes #65352.
13530
13531         * reflection.c: Fix warnings.
13532
13533 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
13534
13535         * icall.c: Add a new icall for Array.Clear
13536
13537 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
13538
13539         * object.c: When allocating an array, we have to throw
13540         an overflow exception if any of the lengths are < 0.
13541
13542 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
13543
13544         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
13545         properly. Also move implementation of string array marshalling to 
13546         managed code. Fixes #42316.
13547
13548 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13549
13550         * assembly.c: provide more information when loading an assembly fails.
13551
13552 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13553
13554         * filewatcher.c: don't expect the development fam package to be
13555         installed.
13556
13557 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
13558
13559         * marshal.c: Make a copy of the signature cookie since it will be
13560         freed by the caller.
13561         
13562         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
13563
13564         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
13565
13566         * metadata.c (mono_metadata_free_marshal_spec): New function to free
13567         marshal specs.
13568
13569         * marshal.c: More refactoring.
13570         
13571         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
13572         smaller functions.
13573
13574 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
13575
13576         * object.c: In mono_message_invoke, fill the output parameter array after
13577           calling the managed method (it was done before the call). This fixes
13578           bug #59299.
13579
13580 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
13581
13582         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
13583         as well.
13584
13585 2004-09-02  Martin Baulig  <martin@ximian.com>
13586
13587         * class.c (mono_class_instance_size): Don't allow generic type
13588         definitions or open generic instances.
13589         (mono_class_array_element_size): If we're a value type, call
13590         mono_class_instance_size() on the original class.
13591
13592         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
13593         handle generic instances.
13594
13595         * mono-debug-debugger.c (write_type): Handle generic instances
13596         like classes.
13597
13598 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
13599
13600         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
13601         the allocation request fails. Fixes #65089.
13602
13603         * object.c (mono_runtime_free_method): Do not call mono_free_method.
13604         
13605         * object.c (mono_runtime_free_method): New function to free a dynamic
13606         method.
13607
13608         * marshal.c (mono_delegate_free_ftnptr): New function to free the
13609         delegate trampoline.
13610
13611         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
13612         with hasthis as dynamic,
13613
13614         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
13615
13616         * domain.c (mono_jit_info_table_remove): New function to remove an
13617         entry from the jit info table.
13618
13619         * class-internals.h (MonoMethod): Add 'dynamic' field.
13620
13621         * loader.c: Fix warnings.
13622
13623 2004-09-01  Martin Baulig  <martin@ximian.com>
13624
13625         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
13626         instead of mono_debugger_lock() because the latter one is a no-op
13627         unless running in the debugger.
13628
13629 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
13630
13631         * class.c (class_compute_field_layout): Classes with auto-layout or
13632         reference fields are not blittable.
13633         
13634 2004-09-01  Dick Porter  <dick@ximian.com>
13635
13636         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
13637         mono_image_get_filename() to get the assembly location.
13638
13639         * icall.c:
13640         * metadata.h: Fix compile warnings
13641
13642 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
13643
13644         * class.c (class_compute_field_layout): System.Object is blittable.
13645
13646         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
13647         as in/out. Fixes #59909.
13648
13649 2004-09-01  Martin Baulig  <martin@ximian.com>
13650
13651         * metadata.h (MONO_TYPE_ISREFERENCE): Call
13652         mono_metadata_generic_inst_is_valuetype() if we're a generic
13653         instance to check whether our underlying type is a reference type.
13654
13655 2004-09-01  Martin Baulig  <martin@ximian.com>
13656
13657         * metadata.c (mono_type_size): If we're a generic instance, call
13658         mono_class_value_size() for value types.
13659
13660 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
13661
13662         * marshal.c: Implement more custom marshalling functionality. Fixes
13663         #64915.
13664
13665 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
13666
13667         * mono-debug.c, debug-mono-symfile.c: add some locking love.
13668
13669 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
13670
13671         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
13672
13673         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
13674
13675         * icall.c: Fix some warnings.
13676
13677         * threads.c (abort_appdomain_thread): Fix unref errors.
13678         (mono_thread_current): Fix THREAD_DEBUG define.
13679
13680 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
13681
13682         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
13683
13684         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
13685
13686 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
13687
13688         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
13689         string arrays.
13690
13691 2004-08-28  Martin Baulig  <martin@ximian.com>
13692
13693         * metadata.c
13694         (mono_metadata_generic_inst_is_valuetype): New public function.
13695
13696         * metadata.h (MONO_TYPE_ISSTRUCT): Call
13697         mono_metadata_generic_inst_is_valuetype() if we're a generic
13698         instance to check whether our underlying type is a valuetype.
13699
13700 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
13701
13702         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
13703         #63768.
13704
13705 2004-08-25  Martin Baulig  <martin@ximian.com>
13706
13707         * loader.c (mono_get_method_from_token): Abstract methods can also
13708         be generic and thus have type parameters.
13709
13710         * metadata-internals.h
13711         (MonoDynamicImage): Added `GPtrArray *gen_params'.
13712
13713         * reflection.c (mono_image_get_generic_param_info): Don't create a
13714         metadata row, just add an entry to the `gen_params' array.
13715         (build_compressed_metadata): Sort the `gen_params' array and then
13716         actually create the metadata.
13717
13718 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13719
13720         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
13721
13722 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
13723
13724         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
13725
13726 2004-08-24  Martin Baulig  <martin@ximian.com>
13727
13728         * class.cs (mono_class_is_subclass_of): Like an interface, a
13729         generic instance also derives from System.Object.
13730
13731 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
13732
13733         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
13734         custom modifiers to be in any order. Fixes #61990.
13735
13736 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
13737
13738         * object.c: Register mono_object_new_fast icall.
13739         
13740         * object.c (mono_class_get_allocation_ftn): Return to calling
13741         mono_object_new_fast, since it seems faster to compute the object 
13742         size in unmanaged code than passing it as a parameter.
13743
13744         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
13745
13746         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
13747         this function with Boehm as the oom handler, so we don't have to check
13748         the result of GC_malloc.
13749
13750         * object.c: Remove checks for oom.
13751
13752         * object.h object.c (mono_class_get_allocation_ftn): New function to
13753         return the icall which can be used to allocate an instance of a given
13754         class. 
13755
13756         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
13757
13758         * class-internals.h: Add 'enabled' field.
13759
13760 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
13761
13762         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
13763
13764 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
13765         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
13766         value 0x0010.
13767
13768 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
13769
13770         * appdomain.c: use the Tls function for appdomain too,
13771         at Zoltan's request. Actually return in mono_context_get
13772
13773         * appdomain.c, profiler.c, threads.c: use __thread
13774
13775 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
13776
13777         * appdomain.c threads.c: Call GC_CreateThread on windows.
13778
13779         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
13780         multiple libraries since this don't work on windows.
13781
13782 2004-08-18  Martin Baulig  <martin@ximian.com>
13783
13784         * class-internals.h
13785         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
13786         MonoMethodHeader.
13787
13788         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
13789         MonoMethodNormal since we also need it for abstract and interface
13790         methods.
13791
13792         * reflection.c
13793         (build_compressed_metadata): Sort the GenericParam table.
13794         (mono_image_create_token): Added `gboolean create_methodspec'
13795         argument; this is false when generating a MethodImpl token.
13796         (reflection_methodbuilder_to_mono_method): Abstract and interface
13797         methods may also have generic parameters.
13798
13799 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
13800
13801         * appdomain.c: thread local alloc
13802
13803 2004-08-17  Martin Baulig  <martin@ximian.com>
13804
13805         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
13806
13807         * icall.c
13808         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
13809         argument.
13810
13811         * class.c (mono_type_get_full_name): New public function.
13812         (mono_type_get_name): Don't include the type arguments.
13813
13814 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
13815
13816         * Makefile.am: Build static versions of libmetadata and libmonoruntime
13817         for inclusion into the mono executable.
13818
13819 2004-08-16  Martin Baulig  <martin@ximian.com>
13820
13821         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
13822         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
13823
13824 2004-08-14  Martin Baulig  <martin@ximian.com>
13825
13826         * class.c (dup_type): Also copy the `byref' field.
13827
13828 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
13829
13830         * reflection.c (create_dynamic_mono_image): Revert the last change 
13831         since it breaks bootstrap.
13832
13833 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
13834
13835         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
13836
13837         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
13838         not free them with g_free.
13839
13840 2004-08-11  Martin Baulig  <martin@ximian.com>
13841
13842         * reflection.c (mono_reflection_setup_internal_class): Also call
13843         mono_class_setup_mono_type() if we already have a `tb->type.type'.
13844
13845 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
13846
13847         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
13848         called during default (first) AppDomain creation. Keep track of
13849         Evidence when loading assemblies.
13850
13851 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
13852
13853         * opcodes.c, opcodes.h: reduce runtime relocations.
13854
13855 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
13856
13857         * culture-info.h, locales.c: fixes and chages to sue the new
13858         optimized format of the locale data.
13859         * culture-info-tables.h: regenerated.
13860
13861 2004-08-06  Geoff Norton <gnorton@customerdna.com>
13862         
13863         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
13864
13865 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
13866
13867         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
13868         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
13869         * domain-internals.h: icall declaration.
13870         * icall.c: icall registration.
13871         * object-internals.h: New fields in MonoAssembly for CAS.
13872
13873 2004-08-05  Duncan Mak  <duncan@ximian.com>
13874
13875         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
13876         CEE_LDELEM_ANY.
13877
13878 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
13879
13880         * reflection.c: fix to deal with object[] arrays in custom ctors
13881         (bug #62550).
13882
13883 2004-08-05  Martin Baulig  <martin@ximian.com>
13884
13885         * class.c (mono_class_array_element_size): Added support for
13886         generic instances and correctly handle "recursive" types.
13887
13888 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
13889
13890         * assembly.c: Fix warnings.
13891
13892 2004-08-04  Martin Baulig  <martin@ximian.com>
13893
13894         * class.c
13895         (mono_type_get_name_recurse): Added `gboolean include_arity'
13896         argument specifying whether or not we should include the generic
13897         arity in the type name.
13898         (_mono_type_get_name): New static function.
13899         (mono_class_setup_vtable): If we're a generic instance, don't
13900         include the generic arity in the names of explicit method
13901         implementations.        
13902
13903 2004-08-03  Martin Baulig  <martin@ximian.com>
13904
13905         * class.c (mono_type_get_name_recurse): Enclose the generic type
13906         arguments in `<', '>'.
13907
13908 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
13909
13910         * gc.c: make GC warning messages use the trace API, they are just
13911         noise to most of the users.
13912
13913 2004-08-03  Martin Baulig  <martin@ximian.com>
13914
13915         * debug-mono-symfile.c (read_string): Correctly read the string.
13916
13917 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
13918
13919         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
13920         
13921         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
13922         icalls.
13923         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
13924
13925 2004-07-30  Martin Baulig  <martin@ximian.com>
13926
13927         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
13928         Reflect latest symbol writer changes.   
13929
13930 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
13931
13932         * object.c: always create an object if null is passed
13933         to Invoke() where a valuetype is expected.
13934
13935 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
13936
13937         * marshal.c (mono_marshal_init): make managed
13938         signatures match native ones better for 64bits.
13939
13940 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13941
13942         * appdomain.c: hack to build correctly the private bin path on windows.
13943         Fixes bug #61991.
13944
13945 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
13946
13947         * assembly.c: Load mscorlib from the correct framework directory
13948           (mono/<version>/mscorlib.dll).
13949         * appdomain.h: Added prototypes for new functions.
13950         * internals.h: Added some prototypes.
13951         * domain.c: When initializing the runtime, get from the executable and
13952           the configuration files the runtime version that the app supports.
13953           Added support methods for reading app.exe.config. Added list of versions
13954           supported by the JIT. Added two new methods: mono_init_from_assembly,
13955           which initializes the runtime and determines the required version from
13956           the provided exe file, and mono_init_version, which initializes
13957           the runtime using the provided version.
13958         * icall.c: Get machine.config from version-specific directory.
13959         * reflection.c: When generating an image, embed the version number
13960           of the current runtime.
13961
13962 2004-07-28  Dick Porter  <dick@ximian.com>
13963
13964         * socket-io.c
13965         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
13966         returned sockaddr size before creating the remote address object.
13967         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
13968         61608.
13969
13970 2004-07-28  Dick Porter  <dick@ximian.com>
13971
13972         * locales.c (string_invariant_compare_char): Fix invariant char
13973         compares between upper and lower cases.  Fixes bug 61458.
13974
13975 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
13976         
13977         * marshal.c: actually cache stelem.ref wrappers.
13978         
13979 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
13980
13981         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
13982         sections and remove the mono_cli_rva_map () function.
13983
13984 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
13985
13986         * debug-mono-symfile.c: fix one more endianess issue, from a patch
13987         by Geoff Norton (<gnorton@customerdna.com>).
13988
13989 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
13990
13991         * class.c: fix class loads for pointer types (typeof(int) !=
13992         typeof(int*)).
13993
13994 2004-07-27  Martin Baulig  <martin@ximian.com>
13995
13996         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
13997         reading the debugging information from an external ".mdb" file.
13998
13999 2004-07-24  Martin Baulig  <martin@ximian.com>
14000
14001         * reflection.c (mono_image_get_type_info): Only write a class
14002         layout entry if we actually have a size or a packing size.
14003
14004 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
14005
14006         * reflection.c (type_get_fully_qualified_name): 
14007         insert cast to get type checking of ?: with non-gcc compilers
14008
14009 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
14010
14011         * rand.c: use g_getenv for both lookups of
14012         MONO_EGD_SOCKET
14013
14014 2004-07-17  Martin Baulig  <martin@ximian.com>
14015
14016         * reflection.c (mono_reflection_bind_generic_method_parameters):
14017         Set `gmethod->reflection_info'.
14018
14019 2004-07-17  Martin Baulig  <martin@ximian.com>
14020
14021         * class.c (mono_class_create_from_typedef): Insert the newly
14022         created class into the hash table before computing the interfaces
14023         since we could be called recursively.
14024
14025 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
14026
14027         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
14028         function to implement stelem.ref in managed code
14029         * class-internals.h, debug-helpers.c: a new wrapper type
14030         for the above.
14031
14032 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
14033
14034         * gc.c: allow GC handles to work even when no GC is compiled in.
14035         Fix part of bug #61134 (GetAddrOfPinnedObject).
14036
14037 2004-07-13  Peter Williams  <peter@newton.cx>
14038  
14039         * process.c (complete_path): Make sure we don't attempt to execute
14040         directories.
14041  
14042 2004-07-12  Geoff Norton <gnorton@customerdna.com>
14043
14044         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
14045           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
14046           and will add/subtract the hour if needed
14047
14048 2004-07-12  Martin Baulig  <martin@ximian.com>
14049
14050         * reflection.c (mono_field_get_object): If we have
14051         `field->generic_info', take the attributes from
14052         `field->generic_info->generic_type'.    
14053
14054 2004-07-12  Martin Baulig  <martin@ximian.com>
14055
14056         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
14057         This function must be called before initializing the runtime.
14058         (mono_debug_init_1): New function; call this after initializing
14059         the runtime, but before loading the assembly.  It tells the
14060         debugger to load corlib and the builtin types.
14061
14062         * mono-debug-debugger.c: Did some larger changes in the debugging
14063         code; support recursive class declarations, make sure we actually
14064         add all classes.
14065
14066 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14067
14068         * debug-helpers.c: undo my previous patch and fixed the real issue in
14069         ../mini/exceptions-x86.c
14070
14071 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14072
14073         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
14074         when no HOME env. variable was set and a NullRef was thrown in a .cctor
14075         called from other .cctors.
14076
14077 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
14078
14079         * loader.c: Removed the mono_loader_wine_init hack now that we are
14080         doing a managed version of Windows.Forms.
14081
14082 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
14083
14084         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
14085         threadpool.c, threads.c: remove static data from rootset.
14086
14087 2004-07-09  Dick Porter  <dick@ximian.com>
14088
14089         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
14090         Don't do any more processing if the matched length was 0.  It was
14091         increasing the size of the string before.  Fixes bug 61167.
14092
14093 2004-07-09  Dick Porter  <dick@ximian.com>
14094
14095         * socket-io.h:
14096         * socket-io.c
14097         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14098         Add support for SO_PEERCRED if its available.
14099
14100 2004-07-09  Peter Bartok <pbartok@novell.com>
14101         * loader.c: winelib.exe.so error message is now only displayed if
14102         MONO_DEBUG is set. To help us avoid questions when people are trying
14103         out the new Managed.Windows.Forms.
14104
14105 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
14106
14107         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
14108         for isinst and castclass wrappers.
14109
14110         * class-internals.h icall.c: Move registration and lookup of JIT icalls
14111         to libmetadata from the JIT, so they could be used by the marshalling
14112         code and the interpreter.
14113
14114         * marshal.c: Register marshalling related JIT icalls here instead of
14115         in mini.c. Use CEE_MONO_ICALL instead of the family of 
14116         CEE_MONO_PROC<x> opcodes to call marshalling functions.
14117
14118         * metadata.h: Remove unneeded marshalling conversions.
14119
14120         * opcodes.c: Update for new opcodes.
14121         
14122 2004-07-08  Martin Baulig  <martin@ximian.com>
14123
14124         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
14125         (mono_debug_get_domain_data): Make this function static.
14126
14127 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
14128
14129         * gc.c, object.h: add nice GC handle API for embedders.
14130
14131 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
14132
14133         * reflection.c: more changes for the new api
14134
14135         * object.c: When we reflect on a field w/ a constant value, it
14136         will not have a memory location, so we must access metadata. Also,
14137         allow easier reading of strings so that we can read them from
14138         the constant data.
14139
14140         * class.c (mono_class_layout_fields): no need for literal fields here.
14141
14142         * class-internals.h: api changes for const fields
14143
14144         * icall.c (ves_icall_get_enum_info): use new apis for const fields
14145
14146 2004-07-06  Martin Baulig  <martin@ximian.com>
14147
14148         * mono-debug.h: Increment version number to 44.
14149
14150         * mono-debug.c (mono_debug_add_wrapper): The second argument is
14151         now a gpointer, rewrote this whole method.
14152
14153         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
14154         function.  Add information about the wrapper in a new "misc table".
14155
14156         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
14157         for the new misc table.
14158
14159 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
14160
14161         * metadata-internals.h image.c: Add a cache for helper signatures.
14162
14163         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
14164
14165 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
14166
14167         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
14168         delegates from a delegate. Fixes #61033.
14169         
14170         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
14171         marshalling of stringbuilder arrays. Fixes #59900.
14172
14173 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
14174
14175         * icall.c: Add EnumBuilder:setup_enum_type icall.
14176
14177 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
14178
14179         * icall.c: Added a new icall for the property version of
14180         OffsetOfStringData.
14181
14182 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
14183
14184         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
14185         it has a constant size across platforms.
14186
14187         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
14188         stack trace.
14189
14190 2004-06-29  Martin Baulig  <martin@ximian.com>
14191
14192         * mono-debug.c (mono_debug_add_method): Protect the whole function
14193         in mono_debugger_lock(), not just parts of it.
14194
14195 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
14196
14197         * reflection.c: make sure padding bytes in heaps are zeroed.
14198
14199 2004-06-24  David Waite  <mass@akuma.org>
14200
14201         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
14202         image.c, loader.c, locales.c, marshal.c, metadata.c,
14203         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
14204         string-icalls.c, threads.c: change to C90-style comments from C99 /
14205         C++ -style
14206
14207 2004-06-24  Dick Porter  <dick@ximian.com>
14208
14209         * threads.c
14210         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
14211         return createdNew.  Fixes bug 60412.
14212
14213         * threads-types.h: 
14214         * icall.c: Add createdNew parameter to CreateMutex icall
14215
14216 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
14217
14218         * reflection.c, object-internals.h: save default value in params.
14219
14220 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14221
14222         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
14223         no need to build a new path combining that with the application base.
14224         Fixes bug #60442.
14225
14226 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
14227
14228         * reflection.c: fixed minor standard compliance issues.
14229
14230 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
14231
14232         * reflection.c: fixed issue with encoding some custom attributes
14233         (arrays in properties and fields, bug #60411).
14234
14235 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14236
14237         * reflection.c: fix start address when copying the public key token.
14238
14239 2004-06-23  Martin Baulig  <martin@ximian.com>
14240
14241         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
14242         the `exc' object in a static object to put it into the GC's root set.
14243
14244 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
14245
14246         * reflection.c: make mono_reflection_setup_internal_class ()
14247         callable a second time to setup a new parent class.
14248
14249 2004-06-23  Dick Porter  <dick@ximian.com>
14250
14251         * threads.c: Check for WAIT_IO_COMPLETION return values.
14252
14253 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
14254
14255         * appdomain.c: Removed the g_free on the public key token. Now copy 
14256         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
14257         * assembly.c: Added public key token string value when loading 
14258         assemblies. Fix bug #60439.
14259         * icall.c: Added missing informations (like public key) in 
14260         GetReferencedAssemblies. Fix #60519.
14261         * image.h: Changed definition for public key token from const char*
14262         public_tok_value to guchar public_key_token [17];
14263         * reflection.c: Updated for changes to public key token.
14264
14265 2004-06-22  Lluis Sanchez Gual
14266
14267         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
14268         for the field in base classes.
14269
14270 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
14271
14272         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
14273         mark headers as not supported, they are installed only for use by the
14274         debugger.
14275
14276 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
14277
14278         * *.c, *.h: avoid namespace pollution in public headers.
14279
14280 2004-06-21  Martin Baulig  <martin@ximian.com>
14281
14282         * exception.c (mono_get_exception_security): It's in
14283         "System.Security", not in "System".
14284
14285         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
14286         the exception classes.
14287
14288 2004-06-21  Martin Baulig  <martin@ximian.com>
14289
14290         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
14291         Protect the exception object from being finalized.
14292
14293 2004-06-21  Martin Baulig  <martin@ximian.com>
14294
14295         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
14296         public function.
14297
14298 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
14299
14300         * reflection.c: Load the assembly in mono_reflection_type_from_name,
14301         if it was not loaded before. Fix parts of #60439.
14302
14303 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
14304
14305         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
14306         code that was broken since Ben's change: wrappers are now
14307         dependent on the method signature only again.
14308
14309 2004-06-21  Martin Baulig  <martin@ximian.com>
14310
14311         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
14312         added interface support.
14313
14314 2004-06-21  Martin Baulig  <martin@ximian.com>
14315
14316         * class.c (mono_vtable_get_static_field_data): New public method.
14317
14318 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
14319
14320         * filewatcher.c : Windows build fix to be compliant with API changes.
14321
14322 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
14323
14324         * class.h, class.c: more accessors.
14325         * metadata.h, metadata.c: prepare for hiding MonoType and
14326         MonoMethodSignature: people should use the accessors from now on
14327         outside of the tree.
14328
14329 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
14330
14331         * *.c, *.h: more API cleanups.
14332
14333 2004-06-18  Jackson Harper  <jackson@ximian.com>
14334
14335         * assembly.c: Trace loading assemblies.
14336         * loader.c: Trace loading native libraries.
14337         * mono-config.c: Trace loading config files.
14338         
14339 2004-06-18  Dick Porter  <dick@ximian.com>
14340
14341         * locales.c: Tell ICU the lengths of strings, it can cope with
14342         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
14343
14344 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
14345
14346         * image.c: swapped name/filename;
14347
14348 2004-06-18  Martin Baulig  <martin@ximian.com>
14349
14350         * mono-debug-debugger.c (write_class): Write the parent class at
14351         the end of the header.
14352
14353 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
14354
14355         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
14356
14357 2004-06-17  Raja R Harinath  <rharinath@novell.com>
14358
14359         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
14360         (bundle_obj): New conditional define.
14361         (BUILT_SOURCES): Remove.
14362         ($(bundle_srcs)): Make parallel-make safe.
14363         (libmonoruntime_la_LIBADD): Make unconditional.
14364         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
14365         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
14366
14367 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
14368
14369         * culture-info-tables.h: It was inconsistent with the latest
14370           supp info files.
14371
14372 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
14373
14374         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
14375         be loaded.
14376
14377         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
14378         with gcc 2.95.
14379
14380 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
14381
14382         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
14383         cleaned up public header threads.h.
14384
14385 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
14386
14387         * Makefile.am, *.c, *.h: more API cleanups.
14388
14389 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
14390
14391         * Makefile.am: removed monosn from compilation.
14392         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
14393         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
14394         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
14395         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
14396         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
14397         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
14398
14399 2004-06-15  Jackson Harper  <jackson@ximian.com>
14400
14401         * assembly.c: Make locales lower case when searching the GAC for
14402         assemblies. gacutil will always make locales lowercase when
14403         installing so this effectively makes them case insensitive.
14404         
14405 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
14406
14407         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
14408         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
14409           parameter which allows to choose whether the wait can be interrupted or 
14410           not. Also added the method mono_monitor_enter(), which locks the monitor
14411           using an infinite wait and without allowing interruption.
14412           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
14413           interrupted.
14414         * object.h: Added new fields in MonoThread. suspend_event holds the event
14415           used to susped/resume the thread. synch_lock is the lock object to use for
14416           modifying the thread state.
14417         * threads.c: Use the new synch_lock object for locking, instead of "this",
14418           which can generate deadlocks.
14419           Moved thread state change in Thread.Sleep and Thread.Join from managed
14420           to unmanaged code. This avoids a deadlock when the thread was suspended
14421           just after acquiring the thread lock.
14422           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
14423           Implemented Thread.Suspend using an event instead of ThreadSuspend,
14424           which is not fully implemented in the io-layer.
14425         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
14426
14427 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
14428
14429         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
14430         threads-types.h: more API cleanups.
14431
14432 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
14433
14434         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
14435         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
14436         threadpool.c, threads.c: first pass at the exported API cleanup.
14437
14438 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
14439
14440         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
14441
14442 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14443
14444         * icall.c: added internalGetHome.
14445
14446 2004-06-14  Dick Porter  <dick@ximian.com>
14447
14448         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
14449         possible to return successfully when '.' or '..' were the only
14450         entries in a directory, but were skipped.  The MonoIOStat was not
14451         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
14452         Fixes bug 59574.
14453
14454 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
14455
14456         * reflection.c: make binaries run on .Net 1.1 by default.
14457
14458 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
14459
14460         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
14461
14462 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
14463
14464         * marshal.c: keep track of struct size with explicit layout
14465         (bug #59979).
14466
14467 2004-06-12  Martin Baulig  <martin@ximian.com>
14468
14469         * mono-debug-debugger.c: Comment out a debugging g_message().
14470
14471 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
14472
14473         * reflection.c, reflection.h: do not free custom attrs that are cached.
14474         * icall.c: use braces to make code clearer.
14475
14476 2004-06-11  Martin Baulig  <martin@ximian.com>
14477
14478         * class.h (MonoInflatedField): New type.
14479         (MonoClassField): Replaced `MonoType *generic_type' with
14480         `MonoInflatedField *generic_info'.
14481
14482         * icall.c
14483         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
14484
14485 2004-06-11  Martin Baulig  <martin@ximian.com>
14486
14487         * reflection.c (mono_image_create_method_token): Correctly encode
14488         varargs methods.
14489
14490 2004-06-11  Martin Baulig  <martin@ximian.com>
14491
14492         * metadata.c (mono_metadata_parse_method_signature): When parsing
14493         a MethodDef which has VarArgs, also set sentinelpos if we don't
14494         have any parameters.
14495
14496 2004-06-11  Martin Baulig  <martin@ximian.com>
14497
14498         * verify.c (mono_method_verify): In CEE_CALL, use
14499         mono_method_get_signature() to get the method's signature, unless
14500         we're a PInvoke method.
14501
14502 2004-06-10  Jackson Harper  <jackson@ximian.com>
14503
14504         * assembly.c: Use <path>/lib/mono/gac for the extra paths
14505         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
14506         logical name as the supplied path is just a prefix to the gac not
14507         the direct path to it.
14508         
14509 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
14510
14511         * reflection.c: make the token for a created method match
14512         the token of the MethodBuilder it was created from
14513         (IKVM requires this behaviour now).
14514
14515 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
14516
14517         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
14518         reflection.c, socket-io.c: leak fixes.
14519
14520 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
14521
14522         * icall.c: handle sentinel pos in vararg methods in position different
14523         from 0.
14524
14525 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14526
14527         * culture-info-tables.h: freshly generated.
14528
14529 2004-06-09  Martin Baulig  <martin@ximian.com>
14530
14531         * loader.c (mono_get_method_constrained): Call `mono_class_init
14532         (constrained_class)'.   
14533
14534 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
14535
14536         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
14537         any methods. Fixes #59629.
14538
14539 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14540
14541         * culture-info-tables.h: reflecting locale-builder updates.
14542
14543 2004-06-08  Dick Porter  <dick@ximian.com>
14544
14545         * object.h:
14546         * locales.c: Fixed compile warnings, including a real bug in
14547         CompareInfo_internal_compare.
14548         
14549 2004-06-08  Dick Porter  <dick@ximian.com>
14550
14551         * locales.c
14552         (ves_icall_System_Globalization_CompareInfo_internal_index):
14553         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
14554         Double-check the resuls of usearches, because ICU currently
14555         ignores most of the collator settings here.  Fixes bug 59720.
14556         
14557 2004-06-08  Dick Porter  <dick@ximian.com>
14558
14559         * locales.c
14560         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
14561         Fix memory leak and segfault-causing typo.  No idea how this one
14562         lasted so long without being noticed.
14563
14564 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
14565
14566         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
14567         any methods. Fixes #59629.
14568
14569 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14570
14571         * assembly.c:
14572         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
14573         own the critical section before). Removed dead code (that's done
14574         in the preload hook).
14575
14576         (mono_assembly_load_with_partial_name): call the preload hook.
14577
14578 2004-06-08  Martin Baulig  <martin@ximian.com>
14579
14580         * metadata.c (mono_metadata_signature_alloc): Default
14581         `sentinelpos' to -1.
14582
14583         * reflection.c (mono_image_get_array_token): Likewise.
14584
14585 2004-06-08  Martin Baulig  <martin@ximian.com>
14586
14587         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
14588
14589         * metadata.c (mono_metadata_parse_method_signature): When parsing
14590         a MethodDef which has VarArgs, set sentinelpos.
14591
14592         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
14593         `gint16' since we're using -1 for non-varargs methods.
14594
14595         * reflection.c
14596         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
14597         (method_encode_signature): Added varargs support.
14598         (method_builder_encode_signature): Likewise.
14599         (mono_image_get_varargs_method_token): New static method.
14600         (mono_image_create_method_token): New public method; this is
14601         called via an icall instead of mono_image_create_token() when
14602         calling a varargs method.       
14603
14604 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
14605
14606         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
14607
14608 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14609
14610         * culture-info-tables.h : Reflecting the latest locale-builder that
14611           fixed empty array representation ({} to {0}).
14612
14613 2004-06-07  Jackson Harper  <jackson@ximian.com>
14614
14615         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
14616         looking up extra gac paths. This allows MONO_GAC_PATH to act
14617         exactly like a prefix.
14618         
14619 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
14620
14621         * reflection.c (mono_reflection_type_from_name): Make a copy of the
14622         type name before modifying it. Fixes #59405.
14623
14624 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14625
14626         * culture-info.h: added fields for "all datetime patterns".
14627         * locales.c: (  ves_icall_System_Globalization_CultureInfo
14628           _construct_datetime_format ()): fill xxx_patterns fields.
14629         * object.h: added fields for "all datetime patterns" to
14630           MonoDateTimeFormatInfo.
14631         * culture-info-tables.h: reflecting locale-builder updates.
14632
14633 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
14634
14635         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
14636         the event has no add and remove methods. Fixes #59629.
14637
14638 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
14639
14640         * object.c: Fixed possible integer overflow when allocating large
14641         strings.
14642
14643 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
14644
14645         * culture-info-tables.h: reflecting locale-builder updates.
14646
14647 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
14648
14649         * culture-info-tables.h: reflecting locale-builder updates.
14650
14651 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
14652
14653         * culture-info-tables.h: reflecting locale-builder updates.
14654
14655 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
14656
14657         * threads.c: Made Thread.Sleep abortable.
14658
14659 2004-06-02  Martin Baulig  <martin@ximian.com>
14660
14661         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
14662
14663         * debug-mono-symfile.h: Bumped symbol file version number to 37.
14664
14665 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
14666
14667         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
14668
14669 2004-05-30  Jackson Harper  <jackson@ximian.com>
14670
14671         * reflection.c: Do not hardcode assembly versions or public key
14672         tokens anymore. All of this except the corlib section was dead
14673         code anyways.
14674         
14675 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
14676
14677         * object.c (mono_runtime_invoke_array): Automatically create boxed
14678         objects for byref valuetypes if needed. Fixes #59300.
14679         
14680         * object.c (mono_method_return_message_restore): Handle 
14681         MONO_TYPE_OBJECT as well.
14682
14683 2004-05-28  Jackson Harper  <jackson@ximian.com>
14684
14685         * reflection.c: The modified type encoding was causing build
14686         problems. Reverted for now.
14687         
14688 2004-05-28  Jackson Harper  <jackson@ximian.com>
14689
14690         * reflection.c/h: Take an assembly ref so that we dont create
14691         fully qualified names when encoding types in the same assembly as
14692         the custom attribute being emitted.
14693         * appdomain.c: Increment version number.
14694         
14695 2004-05-26  Duncan Mak  <duncan@ximian.com>
14696
14697         * icall.c
14698         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
14699         Set the full version number (major, minor, build, revision).
14700
14701 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
14702
14703         * marshal.c (emit_struct_conv): increment src/dst after blit
14704         (mono_marshal_get_managed_wrapper,
14705         mono_marshal_get_native_wrapper): make sure we have marshalling
14706         info before marshalling params (info computation affects
14707         blittable)
14708
14709         * class.c (class_compute_field_layout): correctly deal with
14710         blittable
14711         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
14712         value types (as per what windows dows by default)
14713         (mono_class_setup_mono_type): System.ValueType is blittable
14714         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
14715         blittable
14716
14717         * marshal.c (mono_marshal_load_type_info): flag types  as
14718         non-blittable if the native layout doesn't match the managed
14719         layout
14720
14721 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14722
14723         * appdomain.c: don't add stuff in the private search path that is
14724         above the application base. If application base is not set, there's
14725         no private search path.
14726
14727 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
14728
14729         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
14730         byref struct arguments in native->managed marshalling.
14731
14732 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
14733
14734         * marshal.c (mono_marshal_get_runtime_invoke): correctly
14735         cache methods using signature (special case for methods
14736         that are value type or string class)
14737         
14738         * image.c (mono_image_close): clean up allocated GSList's
14739         in runtime_invoke_cache.
14740
14741 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14742
14743         * mono-config.c: set the correct path for mono_cfg_dir on windows when
14744         there's no MONO_CFG_DIR environment variable defined.
14745
14746 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14747
14748         * threads.c: windows version must be >= 0x0500 to include OpenThread.
14749
14750 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
14751
14752         * threadpool.c: Really wait for 500ms after the async call, even if the wait
14753           is interrumped.
14754         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
14755           before waiting for it, and call CloseHandle after the wait to unref it.
14756           This will make sure that handles are not disposed too early.
14757
14758 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14759
14760         * appdomain.c:
14761         * appdomain.h:
14762         * icall.c: removed
14763         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
14764         needed now.
14765
14766         * object.c: se the application_base only for the domain that runs
14767         Main. Fixes bug #59216,
14768
14769 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14770
14771         * appdomain.c:
14772         * object.c: only the domain in which Main is run have
14773         SetupInformation.ConfigurationFile set, so moved a few lines from
14774         appdomain.c to object.c.
14775
14776 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14777
14778         * appdomain.c: we tried to load [name].(dll|exe), but according
14779         to bug #57710, we must also try [culture]/[name].(dll|exe) and
14780         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
14781         There's a test case attached to bug #58922.
14782
14783 2004-05-27  Dick Porter  <dick@ximian.com>
14784
14785         * icall.c:
14786         * file-io.c: Implemented icalls for locking and unlocking regions
14787         in a file.
14788         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
14789         FALSE on error (fixes both compiler warning and real bug.)
14790
14791 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
14792
14793         * culture-info-tables.h: reflecting locale-builder updates.
14794
14795           (Added missing ChangeLog entry for 05/26)
14796
14797 2004-05-27  Jackson Harper  <jackson@ximian.com>
14798
14799         * locales.c: Fix some cut and paste errors.
14800         
14801 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14802
14803         * mono-config.c: set the correct path for config. directory on windows.
14804
14805 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14806
14807         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
14808           on win32.
14809
14810 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
14811
14812         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
14813         from pinvoke functions.
14814         
14815         * marshal.c (mono_ftnptr_to_delegate): Implement this.
14816
14817 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14818
14819         * culture-info-tables.h: reflecting locale-builder updates.
14820
14821 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
14822
14823         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
14824         #59086.
14825
14826 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
14827
14828         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
14829         * icall.c: Modified icalls for RNG.
14830         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
14831         Windows (CryptoAPI).
14832
14833 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
14834
14835         * locales.c: Fix build.
14836
14837 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14838
14839         * culture-info-tables.h: reflecting locale-builder updates.
14840
14841 2004-05-25  Jackson Harper  <jackson@ximian.com>
14842
14843         * locales.c: When creating the current culture use the $LANGs
14844         specific culture. So DateTimeFormat and NumberFormat entries are created.
14845         
14846 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
14847
14848         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
14849         a char array as parameter.
14850
14851 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
14852
14853         * image.c: In mono_image_open(), always use an absolute path name to
14854           look for already loaded images.
14855
14856 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
14857
14858         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
14859         missing in the windows build (like older cygwin include files).
14860
14861 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
14862
14863         * icall.c: Fixed check for possible integer overflow in Buffer_
14864         BlockCopy icall. Replaced comments style // by /* */.
14865
14866 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
14867
14868         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
14869         
14870         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
14871         check after MONO_VTADDR. Fixes pinvoke2.exe.
14872
14873         * marshal.h marshal.c metadata.h: Add beginnings of support for
14874         ftnptr -> delegate marshalling.
14875
14876 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
14877
14878         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
14879         * threads.c: Fix warnings.
14880
14881 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
14882
14883         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
14884         * icall.c: Registered icalls for Suspend and Resume.
14885         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
14886           Thread.Abort.
14887         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
14888         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
14889         * process.c: Use WaitForSingleObjectEx.
14890         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
14891           checkpoints.
14892         * threads.c, threads.h: Make use of new Ex wait methods. Improved
14893           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
14894           for Suspend and Resume. Added new mono_thread_stop, used for stoping
14895           background threads. Added basic support for Abort in Windows.
14896           Start new threads using a managed delegate invoke wrapper. This wrapper
14897           has an interruption checkpoint that is needed since an interruption
14898           can be requested before the thread leaves the unmanaged code that starts 
14899           the thread.
14900         * marshal.c: Added interruption checkpoint after every native call, and
14901           also before managed calls for wrappers called from unmanaged code to
14902           go into managed code.
14903         * object.h: Added new field in MonoThread to keep track of interruption
14904           requests.
14905
14906 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
14907
14908         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
14909         calls.
14910
14911 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14912
14913         * appdomain.c:
14914         * assembly.c:
14915         * gc.c:
14916         * locales.c:
14917         * mono-config.c:
14918         * rand.c: getenv -> g_getenv (windows!)
14919
14920         * process.c: complete_path is also used on non-windows platforms.
14921
14922 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14923
14924         * icall.c: new signature for Process_Start.
14925
14926         * process.[ch]: new signature for Process_Start. If we're on windows
14927         and UseShellExecute is false, we have to search for the program by
14928         ourselves if we don't get a full path.
14929
14930 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
14931
14932         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
14933         marshalling and call CleanUpNativeData if needed. Fixes #58646.
14934
14935 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14936
14937         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
14938         Fixes bug #58373.
14939
14940 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14941
14942         * process.c: use double quotes to quote program name and arguments on
14943         windows. Fixes bug #58575.
14944
14945 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14946
14947         * file-io.c: don't return "." and ".." when using windows Find*File.
14948
14949 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
14950
14951         * marshal.c: Don't pass wrappers to message init because method 
14952         addressed used to lookup metadata. part of remoting[2|3] fix.
14953
14954 2004-05-15  Jackson Harper  <jackson@ximian.com>
14955
14956         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
14957         path is essentially the same as MONO_PATH except that it points to
14958         GACs instead of lib directories.
14959         * loader.h: The user gac is gone so we dont need function to
14960         enable/disable it.
14961         * mono-config.c: user gac option is now gone.
14962         
14963 2004-05-15  Jackson Harper  <jackson@ximian.com>
14964
14965         * culture-info.h: Make defines more consistent, add calendar data
14966         to the culture info table.
14967         * culture-info-tables.h: Add basic calendar data. Basically
14968         everyone gets default gregorian until all the data is
14969         updated.
14970         * locales.c: Use the new consistent defines. Set calendar data for
14971         culture info objects.
14972         * object.h: add a field for calendar data to CultureInfo
14973         
14974 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
14975
14976         * image.c: image->runtime_invoke_cache is keyed on signatures now.
14977         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
14978         a signature.
14979         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
14980         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
14981         an extra param that is the pointer of the method to invoke. The IL for
14982         the invoke method is no longer specific to the method, but to the
14983         signature of the method. Thus, we can share the same code for multiple
14984         methods. This reduces the number of methods that have to be compiled.
14985
14986 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
14987
14988         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
14989
14990         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14991
14992         * icall.c: Optimize Buffer.BlockCopy.
14993
14994 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14995
14996         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
14997         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
14998         quote). Changed them to "MMMM yyyy".
14999
15000 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
15001
15002         * rand.c
15003         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
15004
15005 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
15006
15007         * reflection.h: Updated after changes to managed structures.
15008
15009         * appdomain.c: Bump corlib version.
15010
15011 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15012
15013         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
15014         windows.
15015
15016 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15017
15018         * Makefile.am: link to ../os/libmonoos.la on windows.
15019
15020         * assembly.c:
15021                 -If MONO_DEBUG, warn about non-existing directories in
15022                 MONO_PATH.
15023                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
15024                 compile time variable.
15025                 -Removed init_default_path and call mono_set_rootdir from
15026                 libmonoos.a instead (windows only).
15027
15028         * assembly.h: declare mono_assembly_getrootdir().
15029
15030         * domain.c:
15031         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
15032
15033         * loader.c: s/getenv/g_getenv/
15034
15035 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
15036
15037         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
15038
15039         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
15040
15041         * metadata.h: Add new marshalling conversions.
15042
15043         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
15044         function.
15045
15046         * reflection.c (mono_reflection_get_type): Lookup the type in all
15047         modules of a multi-module assembly. Fixes #58291.
15048
15049 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
15050
15051         * threads.c: Before aborting a background, set the StopRequested
15052         state.  This avoids throwing the Abort exception.
15053         In mono_thread_manage, don't continue with the shutdown until all
15054         aborted threads have actually stopped.
15055
15056 2004-05-10  Jackson Harper  <jackson@ximian.com>
15057
15058         * locales.c: Remove the modifier from culture names.
15059         
15060 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15061
15062         * Makefile.am: monosn is not installed any more. It has been deprecated
15063         in favor of sn.
15064
15065 2004-05-07  Jackson Harper  <jackson@ximian.com>
15066
15067         * locales.c
15068         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
15069         Fix array construction, add bailout if the length is 0.
15070
15071 2004-05-07  Dick Porter  <dick@ximian.com>
15072
15073         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
15074         machine doesn't have a DNS entry.  Patch by Urs Muff
15075         (umuff@quark.com), fixes bug 57928.
15076
15077 2004-05-06  Jackson Harper  <jackson@ximian.com>
15078
15079         * reflection.c: Handle null PublicTokens properly. alloc mem for
15080         assembly names culture so we dont crash when freeing it.
15081         
15082 2004-05-06  Jackson Harper  <jackson@ximian.com>
15083
15084         * assembly.c: Check the usergac when loading with partial names.
15085         
15086 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
15087
15088         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
15089         does nothing for now (not required for Linux/Windows) but the class
15090         library can call it (and a newer or modified runtime could need it).
15091         * icall.c: Registred icall.
15092
15093 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15094
15095         * loader.c: prints a message on module loading error we set MONO_DEBUG
15096         environment variable.
15097
15098 2004-05-05  Jackson Harper  <jackson@ximian.com>
15099
15100         * appdomain.c: Handle PublicKeyToken=null properly.
15101         
15102 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
15103
15104         * environment.c|h: Added icall ves_icall_System_Environment_
15105         GetOSVersionString to get the current OS version as a string.
15106         * icall.c: Registred icall.
15107
15108 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
15109
15110         * object.c: in mono_object_get_virtual_method(), take into account that
15111         non-virtual methods don't have a slot in the vtable. Check needed when
15112         the object is a proxy.
15113
15114 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
15115
15116         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
15117         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
15118
15119         * object.c (mono_class_compute_gc_descriptor): Fix warning.
15120
15121         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
15122         passed when a valuetype is expected.
15123
15124         * object.c (mono_unhandled_exception): Only set the exit code if the
15125         exception happens in the main thread. Fixes thread5.exe.
15126
15127         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
15128         invalid names. Fixes #58047.
15129
15130 2004-05-03  Jackson Harper  <jackson@ximian.com>
15131
15132         * assembly.c: This line was committed accidently and is unneeded.
15133         
15134 2004-05-03  Jackson Harper  <jackson@ximian.com>
15135
15136         * icall.c: Add new icall for Assembly::LoadWithPartialName
15137         * assembly.c/.h: new function that probes the GAC to load partial
15138         assembly names by Paolo Molaro.
15139         
15140 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15141
15142         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
15143         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
15144         (type_get_fully_qualified_name): Added PublicKeyToken when building a
15145         full type name.
15146
15147 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15148
15149         * appdomain.c: fixed check for 'neutral' culture and removed warning.
15150         * reflection.c: fix bug when parsing a full type name and Version is not
15151         the last thing in the string.
15152
15153 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
15154
15155         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
15156         crashes when it is freed.
15157
15158 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15159
15160         * assembly.c: print the compat warning to stderr.
15161
15162 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
15163
15164         * assembly.c (mono_assembly_load_references): Add a compatibility
15165         hack to run old applications that might be still referencing the
15166         3300-based assemblies, only do this for System.xxx.
15167
15168 2004-05-01  Jackson Harper  <jackson@ximian.com>
15169
15170         * appdomain.c: If the culture is neutral we set it to "".
15171         
15172 2004-04-29  Jackson Harper  <jackson@ximian.com>
15173
15174         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
15175
15176 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
15177  
15178         * string-icalls.c: added low overhead function for copying chars
15179         * icall.c: added needed icall for the above function
15180  
15181 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15182
15183         * icall.c: fix return value of get_global_assembly_cache.  Implemented
15184         Environment.GetLogicalDrives.
15185
15186 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
15187
15188         * rand.c: try and talk to egd or prngd
15189         for random bytes if opening devices fail.
15190
15191 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
15192
15193         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
15194         alignment for the type using the native alignment of its members 
15195         instead of using klass->min_align.
15196
15197         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
15198
15199 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15200
15201         * file-io.c:
15202         * socket-io.c: added check for sys/aio.h.
15203
15204 2004-04-28  Dick Porter  <dick@ximian.com>
15205
15206         * threads.c: Don't abort a thread thats already aborting, when
15207         terminating everything.
15208
15209 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15210
15211         * icall.c: added 2 new async calls for Socket.
15212
15213         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
15214         IO on *nix systems.
15215
15216         * threadpool.c: removed unused variable.
15217
15218 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
15219
15220         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
15221
15222 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
15223
15224         * locales.c: put back string_invariant_tolower () and
15225         string_invariant_toupper ().
15226
15227 2004-04-26 David Waite <mass@akuma.org>
15228
15229         * file-io.h:
15230         * socket-io.h:
15231         * threads.h:
15232         * unicode.h: remove comma from end of enumeration declarations
15233
15234 2004-04-26 David Waite <mass@akuma.org>
15235
15236         * debug-mono-symfile.h:
15237         * decimal.c:
15238         * mono_debug.h:
15239         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
15240
15241
15242 2004-04-26  Jackson Harper  <jackson@ximian.com>
15243
15244         * appdomain.c: Increment version number.
15245         
15246 2004-04-26  Jackson Harper  <jackson@ximian.com>
15247
15248         * appdomain.c: Set assembly references public token value when
15249         PublicKeyToken is specified, not the hash_value. Free public token
15250         values when free assembly name data. Previously the public key
15251         token was hex decoded, however we are using hex encoded public key
15252         tokens, so this is not neccasary.
15253         * assembly.c: Lookup assemblies in the gac if their public token
15254         value is set. Add function to allow enabling user gac
15255         lookups. Specify whether or not the assembly was loaded from the
15256         GAC. Compare full assembly names when checking the cache for
15257         assemblies (Temporarily disabled see comment in code). Remove
15258         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
15259         specifies trace-loader they get extra info to stdout on the
15260         loading of assemblies.
15261         * image.h: Add a field for an assembly references public token
15262         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
15263         whether an assembly has been loaded from the GAC.
15264         * image.c: Remove a corlib -> mscorlib name mapping.
15265         * loader.h: Add function to enable/disable the user gac.
15266         * mono-config.c: Check if the usergac is enabled in the config
15267         file.
15268         * icall.c: New icall to determine whether or not an assembly has
15269         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
15270         * tabldefs.h: Add constant for assemblyref flag that specifies a
15271         full public key is used instead of a public token.
15272         * reflection.c: Remove mscorlib -> corlib mappings. Set
15273         PublicTokenValue instead of hash value. This value is a hex
15274         string so it does not need to be expanded.
15275
15276 2004-04-26  Martin Baulig  <martin@ximian.com>
15277
15278         * mono-debug-debugger.c (mono_debugger_initialize): Set
15279         `mono_debugger_initialized' before calling mono_debug_lock().
15280
15281 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
15282
15283         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
15284           InternalToUpper/InternalToLower.
15285         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
15286           removed invariant culture shortcut.  This is now done in managed code.
15287         * locales.c: (string_invariant_toupper/tolower) removed.
15288
15289 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15290
15291         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
15292         Added Poll internal call.
15293
15294         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
15295         call for Poll. Select was too heavy for polling a single socket.
15296
15297         * threadpool.[ch]: added mono_threadpool_cleanup.
15298         * threads.c: use it. Don't use Thread_Abort on windows.
15299
15300 2004-04-23  Martin Baulig  <martin@ximian.com>
15301
15302         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
15303
15304 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
15305
15306         * icall.c: Registred new icalls for key pair protection and added an
15307         icall for Environment.GetFolderPath on Windows.
15308         * security.c|h: Added new icalls for key pair protection.
15309
15310 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15311
15312         * socket-io.c: don't display the non-supported family warning for known
15313         families. Now this is not displayed on windows when checking support
15314         for IPv4/IPv6.
15315
15316 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15317
15318         * class.c: don't display the layout warning for static fields.
15319
15320 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
15321
15322         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
15323         * locales.c, locales.h: Added new icalls for culture-specific
15324         Char.ToLower and Char.ToUpper.
15325
15326 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15327
15328         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
15329         by David Waite.
15330
15331 2004-04-20  Martin Baulig  <martin@ximian.com>
15332
15333         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
15334         of the type name before passing it to mono_reflection_type_from_name().
15335
15336 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
15337
15338         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
15339         encodings here. Fixes #56965.
15340
15341 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
15342
15343         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
15344         fix test on strstr result not that I can see anything that
15345         relies on the result.
15346
15347 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
15348
15349         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
15350         Fixes #57081.
15351
15352         * marshal.c (mono_marshal_get_string_encoding): New helper function.
15353
15354         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
15355         function to determine which marshalling to use for strings. Fixes
15356         #56965.
15357
15358         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
15359
15360         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
15361
15362 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
15363
15364         * icall.c: #include mono-config.h
15365
15366 2004-04-15  Jackson Harper  <jackson@ximian.com>
15367
15368         * culture-info-tables.h: Fix date formats for en-US culture.
15369         
15370 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
15371
15372         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
15373         ThreadPool.SetMinThreads.
15374         * threadpool.c: Implemented ThreadPool.GetMinThreads and
15375         ThreadPool.SetMinThreads.
15376
15377 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
15378
15379         * mono-config.c: also load the .config file in the directory
15380         where the assembly was found.
15381
15382 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
15383
15384         * assembly.c: load per-assembly config files.
15385         * icall.c: decrapified code to get the config dir and moved to
15386         mono-config.c.
15387         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
15388         per-assembly config files. When doing a dll map lookup give precedence
15389         to the per-assembly data.
15390
15391 2004-04-14  Martin Baulig  <martin@ximian.com>
15392
15393         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
15394         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
15395         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
15396
15397         * mono-debugger-debugger.c: While the debugger is locked, remember
15398         whether the symbol tables have changes and send one single
15399         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
15400
15401 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
15402
15403         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
15404
15405         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
15406         function.
15407
15408         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
15409         account when marshalling string arrays. Fixes #56965.
15410
15411 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
15412
15413         * icall.c: Add new icalls mapping for security.
15414         * security.c|h: Add internal calls for WindowsIdentity,
15415         WindowsImpersonationContext and WindowsPrincipal.
15416
15417 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
15418
15419         * class.c: Added comment to ensure the System.MonoDummy class
15420         is removed when no longer necessary
15421
15422 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
15423
15424         * appdomain.c: Pass arguments to the bootstraping exceptions to
15425         minimize JITed methods at boot
15426
15427         * metadata.c (mono_exception_from_name_two_strings): Allow for the
15428         second string to be null.
15429
15430         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
15431         Change the protocol to minimize the JIT methods at startup.  Now
15432         it Returns the internal codepage, if the value of "int_code_page"
15433         is 1 at entry, and we can not compute a suitable code page
15434         number, returns the code page as a string.
15435
15436 2004-04-13  Jackson Harper  <jackson@ximian.com>
15437
15438         * culture-info-tables.h: Fix number of decimal digits for all
15439         english locales.
15440
15441 2004-04-13  Jackson Harper  <jackson@ximian.com>
15442
15443         * icall.c: Clairfy out of sync error message. It is not always
15444         your corlib that is out of sync.
15445
15446 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
15447
15448         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
15449         properties when only the set accessor is overriden. Fixes #55874.
15450
15451 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
15452
15453         * assembly.c (mono_assembly_load_references): Make this thread safe.
15454         Fixes #56327.
15455
15456 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
15457
15458         * monosn.c: Add missing initialization calls.
15459
15460 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
15461
15462         * locales.c:
15463         ves_icall_System_Globalization_CultureInfo_construct_number_format
15464         Fix g_assert so it compiles on fussier compilers re int/ptr
15465         mismatch
15466
15467 2004-04-08  Dick Porter  <dick@ximian.com>
15468
15469         * socket-io.h:
15470         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
15471         53992.  Also rearrange the code so that the internal calls return
15472         an error value and exceptions are thrown from managed code.
15473
15474         * icall.c: Add type info to the socket icalls.
15475
15476 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15477
15478         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
15479         owes me a beer.
15480
15481 2004-04-07  Martin Baulig  <martin@ximian.com>
15482
15483         * class.c (mono_class_from_generic_parameter): Don't default
15484         `klass->parent' to `mono_defaults.object_type'.
15485
15486 2004-04-07  Martin Baulig  <martin@ximian.com>
15487
15488         * reflection.c (mono_reflection_initialize_generic_parameter): Set
15489         `param->pklass->reflection_info'.       
15490
15491 2004-04-07  Jackson Harper  <jackson@ximian.com>
15492
15493         * culture-info-tables.h: Fix date separator symbol.
15494         
15495 2004-04-07  Martin Baulig  <martin@ximian.com>
15496
15497         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
15498         from System.Type to System.MonoType.
15499
15500 2004-04-07  Martin Baulig  <martin@ximian.com>
15501
15502         * reflection.h
15503         (MonoReflectionGenericParam): Added `has_reference_type' and
15504         `has_value_type' fields.
15505
15506         * reflection.c (mono_image_get_generic_param_info): Encode the
15507         correct flags if we have the `class' or `struct' constraint.
15508
15509 2004-04-07  Martin Baulig  <martin@ximian.com>
15510
15511         * reflection.h
15512         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
15513
15514 2004-04-07  Jackson Harper  <jackson@ximian.com>
15515
15516         * appdomain.c: Revert extra patches, just wanted to bump the
15517         version number.
15518         
15519 2004-04-07  Jackson Harper  <jackson@ximian.com>
15520
15521         * Makefile.am: Add culture-info private headers.
15522         * icall.c: Add new icalls for contructing locales.
15523         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
15524         * locales.h: Declare new culture info construction methods.
15525         * object.h: Add new fields used to avoid the CultureMap to
15526         MonoCultureInfo.
15527         * culture-info.h: Definition of structs used in the culture info
15528         tables.
15529         * culture-info-tables.h: Autogenerated tables that contain culture
15530         info data. This file was generated with the locale-builder tool.
15531         * appdomain.c: Incement corlib version number.
15532         
15533 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
15534
15535         * appdomain.c: (mono_runtime_init) move mono_thread_init
15536         to before mono_object_new calls so critical sections
15537         are initialized before use.
15538
15539 2004-04-07  Martin Baulig  <martin@ximian.com>
15540
15541         * icall.c
15542         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
15543         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
15544         (ves_icall_MonoGenericParam_initialize): Removed.
15545         (monogenericparam_icalls): Removed.
15546         (generictypeparambuilder_icalls): Added new table for
15547         System.Reflection.Emit.GenericTypeParameterBuilder.
15548
15549         * reflection.c
15550         (mono_reflection_define_generic_parameter): Removed.
15551         (mono_reflection_initialize_generic_parameter): This is now called
15552         from GenericTypeParameterBuilder's .ctor.
15553
15554 2004-04-06  Martin Baulig  <martin@ximian.com>
15555
15556         * class.c (mono_class_init): Don't inflate nested classes in a
15557         generic instance.
15558         (mono_type_get_name_recurse): Include the generic arguments for
15559         generic instances and generic type declarations.
15560         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
15561         (_mono_class_get_instantiation_name): Removed.
15562         (mono_class_create_generic): Always use `gklass->name' as our name.
15563
15564         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
15565
15566         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
15567         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
15568         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
15569         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
15570         closed generic methods here.
15571
15572         * reflection.c
15573         (mono_reflection_generic_inst_get_nested_types): Removed.
15574         (inflate_mono_method): Copy the generic parameters from the
15575         MonoMethodHeader into out MonoGenericMethod.
15576
15577 2004-04-06  Martin Baulig  <martin@ximian.com>
15578
15579         * row-indexes.h
15580         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
15581
15582         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
15583
15584         * reflection.c (build_compressed_metadata): If we have any entries
15585         in the GenericParam, MethodSpec or GenericParamConstraint tables,
15586         set the header version to 1.1.
15587
15588 2004-04-06  Martin Baulig  <martin@ximian.com>
15589
15590         * class.c (mono_class_init): If we're a generic instance,
15591         initialize our nested classes, too.
15592         (_mono_class_get_instantiation_name): Deal with the new `!%d'
15593         suffix. 
15594
15595 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15596
15597         * process.c: quote the argument passed to the shell on windows.
15598
15599 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
15600
15601         * threads.c (mono_alloc_special_static_data): Allow this to be
15602         called during startup.
15603
15604 2004-04-02  Martin Baulig  <martin@ximian.com>
15605
15606         * icall.c
15607         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
15608
15609 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
15610
15611         * icall.c: Fix build.
15612
15613 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
15614
15615         * Makefile.am: Added security.c|h.
15616         * icall.c: Added icall for get_UserName;
15617         * security.c: New file for security related icalls. Added function
15618         get_UserName for System.Environment (fix #56144).
15619         * security.h: New. Header file for security.c
15620
15621 2004-04-02  Dick Porter  <dick@ximian.com>
15622
15623         * icall.c: Deleted the icalls that were obsoleted some time ago
15624         by the ICU string code, and which were mixed into the icall
15625         rearranging.  Fixes bug 55969.
15626
15627         * string-icalls.h: 
15628         * string-icalls.c: Deleted the code that those icalls reference.
15629
15630 2004-04-01  Martin Baulig  <martin@ximian.com>
15631
15632         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
15633
15634         * class.c (mono_class_from_generic_parameter): Don't set 
15635         TYPE_ATTRIBUTE_INTERFACE.
15636         (my_mono_class_from_generic_parameter): Likewise.
15637
15638 2004-04-01  Martin Baulig  <martin@ximian.com>
15639
15640         * loader.c (find_method): Added an optional `MonoClass *ic'
15641         argument to search in a specific interface.
15642         (mono_get_method_constrained): New public function.
15643
15644 2004-04-01  Martin Baulig  <martin@ximian.com>
15645
15646         * reflection.c (mono_image_get_generic_field_token): Use the
15647         `handleref' cache here.
15648
15649 2004-04-01  Martin Baulig  <martin@ximian.com>
15650
15651         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
15652
15653         * reflection.c (create_generic_typespec): Use the `typespec' hash
15654         here, not the `typeref' one.    
15655
15656 2004-04-01  Martin Baulig  <martin@ximian.com>
15657
15658         * class.c (mono_class_inflate_generic_type): Moved the
15659         functionality into a new static inflate_generic_type() which
15660         returns NULL if it didn't do anything.  Only increment the
15661         `mono_stats.inflated_type_count' if we actually inflated
15662         something.
15663         (mono_class_get_full): Check the classes type to see whether we
15664         need to inflate it; also inflate MONO_TYPE_(M)VAR.
15665
15666 2004-04-01  Jackson Harper  <jackson@ximian.com>
15667
15668         * reflection.c: Set culture for assembly references.
15669         
15670 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
15671
15672         * reflection.[ch], icall.[ch], Fix support for pinning variables.
15673
15674 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15675
15676         * assembly.c:
15677         (do_mono_assembly_open): the critical section also covers
15678         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
15679
15680 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15681
15682         * threads.c:
15683         (mono_manage_threads): abort the background threads when finishing.
15684         Fixes bug #47232.
15685
15686 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15687
15688         * gc.c: only close the done_event handle if there was no timeout.
15689         C-ified comments.
15690
15691 2004-03-30  Martin Baulig  <martin@ximian.com>
15692
15693         * icall.c (icall_entries): It's called "System.Activator", not
15694         "System.Activation".    
15695
15696 2004-03-30  Martin Baulig  <martin@ximian.com>
15697
15698         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
15699         (mono_class_create_from_typespec): Likewise.
15700
15701 2004-03-30  Martin Baulig  <martin@ximian.com>
15702
15703         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
15704         `has_ctor_constraint' and `initialized'.
15705
15706 2004-03-30  Martin Baulig  <martin@ximian.com>
15707
15708         * reflection.c (encode_new_constraint): New static function to add
15709         the constructor constraint attribute to a type parameter.
15710         (encode_constraints): Call encode_new_constraint() if necessary.
15711
15712         * reflection.h
15713         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
15714
15715         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
15716         
15717 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
15718
15719         * reflection.c, icall.c: add support for pinning variables. 
15720
15721 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
15722
15723         * marshal.c (mono_marshal_get_managed_wrapper):
15724         init bool local with zero rather than null.
15725
15726 2004-03-29  Martin Baulig  <martin@ximian.com>
15727
15728         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
15729         the "official" behavior here.
15730         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
15731
15732 2004-03-29  Martin Baulig  <martin@ximian.com>
15733
15734         * icall.c: Reflect latest API changes.
15735
15736 2004-03-29  Martin Baulig  <martin@ximian.com>
15737
15738         * loader.c (mono_get_method_from_token): Also call
15739         mono_metadata_load_generic_params () for abstract and interface
15740         methods; replace the type arguments in the method signature with
15741         the ones which are loaded from the metadata.
15742
15743 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
15744
15745         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
15746         of the lock is not the current thread. MS.NET don't do it, in spite of
15747         what the documentation says. See bug #56157.
15748
15749 2004-03-28  Martin Baulig  <martin@ximian.com>
15750
15751         * class.c (mono_class_init): Don't call init_properties() and
15752         init_events() for generic instances; set `prop->parent' when
15753         inflating properties.
15754
15755         * reflection.c (mono_generic_inst_get_object): Call
15756         `mono_class_init (ginst->klass)'.
15757         (mono_type_get_object): Only create a MonoGenericInst if your
15758         generic type is a TypeBuilder.
15759         (do_mono_reflection_bind_generic_parameters): Only set
15760         `ginst->is_dynamic' if our generic type is a TypeBuilder.
15761
15762 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
15763
15764         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
15765         Fixes #56091.
15766
15767 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15768
15769         * icall.c: added Kill_internal icall.
15770         * process.[ch]: added Kill_internal icall.
15771
15772 2004-03-25  Martin Baulig  <martin@ximian.com>
15773
15774         * class.h (MonoStats): Added `generic_instance_count',
15775         `inflated_method_count', `inflated_type_count' and
15776         `generics_metadata_size'.       
15777
15778 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15779
15780         * reflection.c: no warnings now.
15781
15782 2004-03-25  Martin Baulig  <martin@ximian.com>
15783
15784         * class.c (mono_class_get_full): New public function; does a
15785         mono_class_get(), but also takes a `MonoGenericContext *'.
15786
15787         * loader.c (mono_field_from_memberref): Renamed to
15788         `field_from_memberref', made static and added `MonoGenericContext *'
15789         argument.
15790         (mono_field_from_token): Added `MonoGenericInst *' argument.
15791         (method_from_memberef): Likewise.
15792         (mono_get_method_from_token): Likewise.
15793         (mono_get_method_full): New public function; does a
15794         mono_get_method(), but also takes a `MonoGenericContext *'.
15795
15796         * verify.c (mono_method_verify): Get the method's generic context
15797         and pass it to mono_field_from_token(), mono_get_method_full() and
15798         mono_class_get_full().
15799
15800 2004-03-25  Martin Baulig  <martin@ximian.com>
15801
15802         * class.c (mono_class_inflate_generic_type): Take a
15803         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
15804         `MonoGenericMethod *'.
15805
15806 2004-03-25  Martin Baulig  <martin@ximian.com>
15807
15808         * loader.h (MonoMethodInflated): Store the MonoGenericContext
15809         instead of the MonoGenericMethod here.
15810
15811 2004-03-25  Martin Baulig  <martin@ximian.com>
15812
15813         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
15814         each time we create a new MonoGenericInst, we also create a new
15815         context which points back to us.
15816
15817         * class.c (inflate_method): Use `ginst->context' instead of
15818         creating a new context.
15819
15820         * loader.c (method_from_memberref): Use
15821         `klass->generic_inst->context' instead of creating a new context.
15822
15823 2004-03-25  Martin Baulig  <martin@ximian.com>
15824
15825         * class.h (MonoGenericContext): New struct.
15826         (MonoGenericMethod): Removed `generic_inst'.
15827
15828         * class.c (mono_class_inflate_generic_method): Take a
15829         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
15830
15831 2004-03-25  Martin Baulig  <martin@ximian.com>
15832
15833         * loader.h (MonoMethodInflated): New typedef.
15834
15835         * metadata.h (MonoMethodSignature): Removed `gen_method', make
15836         `generic_param_count' consume just 30 bits, added `is_inflated'
15837         and `has_type_parameters' flags (one bit each).
15838
15839         * class.c (mono_class_inflate_generic_method): Create a
15840         MonoMethodInflated instead of a MonoMethodNormal and set
15841         `is_inflated' in the method signature.
15842
15843         * class.h (MonoGenericMethod): Removed `generic_method'.
15844
15845 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
15846
15847         * image.c: Make sure the name of a MonoImage is always an absolute path.
15848           This fixes bug #54415.
15849
15850 2004-03-24  Martin Baulig  <martin@ximian.com>
15851
15852         * class.c (mono_class_setup_vtable): If we're a generic instance,
15853         use our generic type's vtable size.
15854
15855 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
15856
15857         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
15858         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
15859         problems.
15860
15861 2004-03-23  Martin Baulig  <martin@ximian.com>
15862
15863         * class.h (MonoDynamicGenericInst): Added `int count_events' and
15864         `MonoEvent *events'.
15865
15866         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
15867         (typebuilder_icalls): Added "get_event_info"; calls
15868         mono_reflection_event_builder_get_event_info(). 
15869
15870         * reflection.c (mono_reflection_generic_inst_initialize): Added
15871         `MonoArray *events'.
15872         (mono_reflection_event_builder_get_event_info): New function.
15873
15874 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
15875
15876         * object.h: add mono_type_initialization_init
15877
15878         * object.c (mono_runtime_class_init): 
15879         implement class constructor synchronization rules
15880         to cope with threading issues.  
15881         add mono_type_initialization_init
15882
15883         * appdomain.c (mono_runtime_init): call 
15884         mono_type_initialization_init
15885
15886         * class.h: removing initializing field from MonoVTable
15887
15888 2004-03-23  Martin Baulig  <martin@ximian.com>
15889
15890         * class.c (my_mono_class_from_generic_parameter): Use
15891         `param->name' if it's not NULL. 
15892
15893 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
15894
15895         * class.c: do not insert non-virtual methods in the vtable.
15896         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
15897         that means the method is non-virtual. This never would have
15898         happened before.
15899
15900 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
15901
15902         * profiler.c: Added lock for accessing coverage_hash.
15903
15904 2004-03-22  Martin Baulig  <martin@ximian.com>
15905
15906         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
15907         `method->method->signature->generic_param_count != 0' to make it
15908         work for interface methods.
15909
15910 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15911
15912         * process.c: quote the string passed to the shell using g_shell_quote.
15913
15914 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15915
15916         * threads.c:
15917         (mono_threads_manage): don't remove the finalizer thread and self
15918         from the threads hash table so that mono_thread_manage can be called
15919         more than once.
15920
15921 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15922
15923         * process.c: quote the arguments when UseShellExecute is true. Fixes
15924         bug #55790.
15925
15926 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15927
15928         * threads.c: set mono_thread_detach as a cleanup routine for every
15929         thread. This way it's always executed upon thread termination, either
15930         aborted or finished normally. No more xsp hangs!
15931
15932 2004-03-17  Martin Baulig  <martin@ximian.com>
15933
15934         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
15935         `int count_nested' and a `MonoType **nested'.
15936
15937         * reflection.c (mono_reflection_bind_generic_parameters): Moved
15938         most of the functionality into a new static
15939         do_mono_reflection_bind_generic_parameters() and don't take a
15940         `MonoType *nested_in' argument any more.  Don't compute nested
15941         types here.
15942         (mono_reflection_generic_inst_get_nested_types): New public method
15943         to get nested types.
15944
15945         * class.c (mono_class_create_generic): Set `klass->nested_in' if
15946         we're a nested class.
15947
15948         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
15949         mono_reflection_generic_inst_get_nested_types() to compute the
15950         nested types.
15951
15952 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
15953
15954         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
15955         descriptive error message under windows.
15956         
15957 2004-03-17  Martin Baulig  <martin@ximian.com>
15958
15959         * class.c (dup_type): Added `const MonoType *original' argument;
15960         copy the attrs from the original type.
15961
15962 2004-03-17  Martin Baulig  <martin@ximian.com>
15963
15964         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
15965         `m->generic_inst_cache' here.
15966
15967 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
15968
15969         * exception.h exception.c: Add stack_overflow_exception.
15970
15971 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15972
15973         * threadpool.c:
15974         (overlapped_callback): call SetEvent *after* invoking the callback.
15975         No need to call CloseHandle.
15976
15977 2004-03-16  Martin Baulig  <martin@ximian.com>
15978
15979         * reflection.c (mono_image_get_fieldref_token): Take a
15980         `MonoReflectionField *' instead of a `MonoClassField *' and a
15981         `MonoClass *'; store the `MonoReflectionField *' in the hash.
15982
15983 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15984
15985         * appdomain.c: don't add the culture to the filename we're looking for
15986         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
15987
15988 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15989
15990         * locales.c: don't ignore symbols when doing case insensitive compares.
15991         Thanks Dick! Fixes bug #54046.
15992
15993         * threads.c: surround 'threads' usage with enter/leave in
15994         mono_thread_manage.
15995
15996 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
15997
15998         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
15999         implicitly marshalled as [Out]. Fixes #55450.
16000
16001         (mono_marshal_get_runtime_invoke): Zero out the result if there is
16002         an exception.
16003
16004 2004-03-16  Martin Baulig  <martin@ximian.com>
16005
16006         * class.c (mono_class_from_generic_parameter): Use the actual
16007         parameter name. 
16008
16009 2004-03-16  Martin Baulig  <martin@ximian.com>
16010
16011         * reflection.c (type_get_signature_size): New static function.
16012         Compues the size of the type in a method signature.
16013         (method_get_signature_size): New static function; calls
16014         type_get_signature_size() to compute the actual size of the
16015         method's signature.
16016         (method_encode_signature): Use method_get_signature_size() to get
16017         the signature's size rather than using `nparams * 10'.
16018
16019 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16020
16021         * file-io.h: define here WapiOverlapped on windows. I don't want the
16022         regular OVERLAPPED one.
16023
16024         * file-io.c:
16025         * threadpool.c: somehow, BindIoCompletionCallback is not found.
16026         Disabling AIO on windows.
16027
16028 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16029
16030         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
16031         bug #55385.
16032
16033 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16034
16035         * appdomain.c: upgraded corlib version.
16036
16037         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
16038         and BeginWrite. Allow opening files for asynchrnous operations.
16039
16040         * file-io.h: new struct that maps FileStreamAsyncResult.
16041         * icall.c: added new icalls.
16042         * process.[ch]: support setting child process environment variables
16043         and use the SHELL or COMSPEC when UseShellExecute is true.
16044
16045         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
16046         callback for async. IO is here and also BindHandle.
16047
16048         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
16049         from here.
16050
16051 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
16052
16053         * reflection.c (create_custom_attr): Allow len == 0.
16054
16055         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
16056         computation on big-endian machines.
16057
16058 2004-03-13  Martin Baulig  <martin@ximian.com>
16059
16060         * class.h (MonoGenericInst): Added `int count_ifaces'.
16061
16062         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
16063         `ginst->count_ifaces' instead `klass->interface_count' since we
16064         may get called before the vtable is created.
16065
16066         * loader.c (mono_method_get_param_names): If we're a generic
16067         instance, return and don't initialize the class.
16068
16069         * reflection.c (mono_reflection_setup_generic_class): Don't call
16070         ensure_runtime_vtable().
16071         (mono_reflection_bind_generic_parameters): Set
16072         `ginst->count_ifaces'.
16073
16074 2004-03-11  Jackson Harper <jackson@ximian.com>
16075
16076         * icall.c:
16077         * unicode.c:
16078         * unicode.h: Remove unused System.Char icalls.
16079         
16080 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
16081
16082         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
16083         code when we P/Invoke the first library in Windows.Forms, instead
16084         of when we first open the assembly.
16085
16086         * assembly.c: Drop the lookup from here.
16087
16088 2004-03-10  Martin Baulig  <martin@ximian.com>
16089
16090         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
16091         class for properties, fields and events.  Finally fixes #54945.
16092
16093 2004-03-10  Martin Baulig  <martin@ximian.com>
16094
16095         * metadata.c (mono_metadata_class_equal): New static function;
16096         checks whether two generic instances or two generic parameters are
16097         equal.
16098         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
16099         compare classes.        
16100
16101 2004-03-10  Martin Baulig  <martin@ximian.com>
16102
16103         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
16104
16105         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
16106         argument and write it into the `reflection_info' field.
16107
16108         * icall.c
16109         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
16110         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
16111
16112 2004-03-09  Jackson Harper  <jackson@ximian.com>
16113
16114         * char-conversions.h: use 8 bits for numeric data its all we need
16115         * icall.c: numeric data is only 8 bits now.
16116
16117 2004-03-09  Martin Baulig  <martin@ximian.com>
16118
16119         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
16120
16121         * class.c (init_properties, init_events): Initialize the new
16122         `parent' field.
16123
16124         * reflection.c (typebuilder_setup_properties): Likewise.
16125         (typebuilder_setup_events): Likewise.
16126
16127         * reflection.h (MonoEventInfo): Replaced `parent with
16128         `declaring_type' and `reflected_type'.
16129
16130         * icall.c (ves_icall_get_property_info): Distinguish between
16131         declaring and reflected type.
16132         (ves_icall_get_event_info): Likewise.
16133
16134 2004-03-09  Martin Baulig  <martin@ximian.com>
16135
16136         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
16137         (ves_icall_Type_GetField): Correctly set field->klass.
16138
16139 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
16140
16141         * loader.h: Fix warning.
16142
16143 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
16144
16145         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
16146         library routine if present.  Notice that it will still continue
16147         executing even if its missing, for those working on the Gtk#
16148         edition of Windows.Forms.
16149
16150         * assembly.c (do_mono_assembly_open): If loading the
16151         System.Windows.Forms call mono_loader_wini_init.
16152
16153 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
16154
16155         * class.h: Added MonoRemoteClass struct.
16156         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
16157         function for MonoStrings.
16158         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
16159         Added internal call for getting the proxy type.
16160         * marshal.c: Get the type of transparent proxies from its remote_class.
16161         Added methods that generate the IL for type checks and casts:
16162         mono_marshal_get_isinst, mono_marshal_get_castclass, 
16163         mono_marshal_get_proxy_cancast.
16164         * marshal.h: Declaration of the previous new methods.
16165         * object.c: Added new moethods for creating and updating MonoRemoteClass
16166         instances: mono_remote_class, mono_upgrade_remote_class, 
16167         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
16168         * verify.c: FIx transparent_proxy_fields layout.
16169         * appdomain.c: Bump corlib version.
16170
16171 2004-03-04  Jackson Harper  <jackson@ximian.com>
16172
16173         * icall.c: Add icall to access char conversion tables.
16174         * char-conversions.h: Character conversion tables.
16175         * Makefile.am: Add char-conversions.h private header file.
16176         
16177 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
16178
16179         * appdomain.c (unload_thread_main): Increase unloading timeout to
16180         10 sec as a temporary workaround for Nant problems.
16181
16182 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
16183
16184         * gc.c: Add checks for GC_enable and GC_disable.
16185
16186         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
16187         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
16188         (bug #54988).
16189         
16190 2004-02-27  Martin Baulig  <martin@ximian.com>
16191
16192         * reflection.c (mono_reflection_bind_generic_parameters): Take a
16193         `MonoReflectionType *' instead of a `MonoType *'.
16194
16195 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
16196
16197         * gc.c (run_finalize): Avoid finalizing the object representing the
16198         finalizer thread.
16199         (finalizer_thread): Fix warning.
16200
16201 2004-02-25  Martin Baulig  <martin@ximian.com>
16202
16203         * class.c (_mono_class_get_instantiation_name): Added `int offset'
16204         argument for nested types.
16205         (mono_class_create_generic): Added support for nested generictypes.
16206
16207         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
16208         `GList *nested'.
16209
16210         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
16211
16212         * reflection.c (method_encode_signature): Increase the minimum
16213         value of `size' from 10 to 11.
16214         (mono_reflection_bind_generic_parameters): Take `int type_argc'
16215         and `MonoType **types' arguments instead of the `MonoArray
16216         *types'; added `MonoType *nested_in'.  Recursively instantiate
16217         nested classes. 
16218
16219 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
16220
16221         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
16222         stack_overflow_ex members which are used by exception handling.
16223
16224         * appdomain.c (mono_runtime_init): Initialize the new members.
16225
16226         * gc.c (mono_gc_enable): New helper function.
16227         * gc.c (mono_gc_disable): New helper function.
16228
16229 2004-02-23  Martin Baulig  <martin@ximian.com>
16230
16231         * icall.c: I must have been really stupid - make it actually work
16232         this time ;-)
16233
16234 2004-02-23  Martin Baulig  <martin@ximian.com>
16235
16236         * loader.c (method_from_memberref): Only inflate the method if
16237         it's in another klass.
16238
16239 2004-02-23  Martin Baulig  <martin@ximian.com>
16240
16241         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
16242         (mono_class_init): If we're a generic instance and an interface,
16243         compute `class->interface_id'; also create `class->interfaces'
16244         here and inflate them.
16245
16246         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
16247         `ginst->is_open'.
16248         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
16249
16250         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
16251
16252 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
16253
16254         * reflection.c (method_encode_code): Improved the error message
16255         generated by the exception.
16256
16257 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16258
16259         * icall.c: Martin did not do what he said in the ChangeLog for
16260         2004-02-18, but put back the changes for properties and events.
16261         Commenting those changes out again and adding comment to bug #54518.
16262         
16263         * process.c: removed warning.
16264
16265 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
16266
16267         * marshal.c (emit_struct_conv): Print an error message instead of
16268         asserting when a type does not have the StructLayout attribute.
16269
16270 2004-02-20  Martin Baulig  <martin@ximian.com>
16271
16272         * reflection.c (mono_type_get_object): Also use the cache for
16273         generic instances.
16274         (mono_reflection_bind_generic_parameters): Always compute
16275         `ginst->ifaces'.        
16276
16277 2004-02-20  Martin Baulig  <martin@ximian.com>
16278
16279         * class.h (MonoGenericMethod): Removed `klass'.
16280
16281         * class.c (mono_class_inflate_generic_method): Added `MonoClass
16282         *klass' argument.
16283
16284 2004-02-20  Martin Baulig  <martin@ximian.com>
16285
16286         * reflection.c (method_encode_methodspec): Actually use the
16287         uninflated signature for the memberref.
16288
16289 2004-02-20  Martin Baulig  <martin@ximian.com>
16290
16291         * class.h (MonoGenericMethod): Removed `declaring'.
16292
16293         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
16294         is NULL, compute it here.
16295
16296 2004-02-20  Martin Baulig  <martin@ximian.com>
16297
16298         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
16299
16300         * metadata.c (mono_metadata_generic_inst_hash): New method.
16301         (mono_metadata_generic_inst_equal): New method.
16302
16303         * reflection.c (mono_reflection_bind_generic_parameters): Use the
16304         `klass->image->generic_inst_cache' cache to avoid creating
16305         duplicate MonoGenericInst's.
16306
16307         * class.c (mono_class_inflate_generic_type): Use the cache.
16308
16309 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
16310
16311         * object.c: fixed gc descriptor calculation for embedded valuetypes.
16312
16313 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16314
16315         * icall.c: added Socket.WSAIoctl icall.
16316
16317         * socket-io.[ch]: implemented
16318         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
16319
16320 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
16321
16322         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
16323
16324 2004-02-18  Urs C Muff  <umuff@quark.com>
16325
16326         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
16327         this work on PPC and other big-endian architectures.
16328
16329         * debug-mono-symfile.h: Prepended the names of all the `guint32'
16330         fields with an underscore to make sure they're only accessed by
16331         the read32() macro.
16332
16333 2004-02-18  Martin Baulig  <martin@ximian.com>
16334
16335         * icall.c: Put the klass->refclass changes back for methods and
16336         fields, but not for properties and events.  We're currently not
16337         distinguishing between DeclaringType and ReflectedType for
16338         properties and events, that's what caused the regressions.
16339
16340 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16341
16342         * object.c:
16343         (mono_async_result_new): the handle can be NULL.
16344
16345         * threadpool.c: Use an event instead of a semaphore, don't initialize
16346         it until needed. This saves quite a few semaphores from being created
16347         when using the threadpool.
16348
16349 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
16350
16351         * object.c (mono_string_is_interned_lookup): Fix interning of long
16352         strings. Fixes #54473.
16353
16354         * domain.c (ldstr_equal): Optimize if the two strings are equal.
16355
16356         * icall.c: Revert the klass->refclass changes since they introduce
16357         regressions (bug #54518).
16358
16359 2004-02-18  Martin Baulig  <martin@ximian.com>
16360
16361         * class.c (mono_class_init): If we're a generic instance and don't
16362         come from a TypeBuilder, inflate our members here.
16363         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
16364         (mono_class_create_generic): New public method.
16365         (mono_class_initialize_generic): Removed.
16366         (get_instantiation_name): Renamed to
16367         _mono_class_get_instantiation_name() and made it public.
16368
16369 2004-02-18  Martin Baulig  <martin@ximian.com>
16370
16371         * class.c (mono_class_inflate_generic_type): Clear the new
16372         instance's `nginst->klass' when inflating a generic instance.
16373         (mono_class_is_subclass_of): Added (basic) support for generic
16374         instances.
16375
16376 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
16377
16378         * appdomain.h, domain.c: use a MonoCodeManager instead of a
16379         MonoMempool to hold compiled native code.
16380
16381 2004-02-17  Martin Baulig  <martin@ximian.com>
16382
16383         * class.h (MonoDynamicGenericInst): Added `count_properties' and
16384         `properties'.
16385
16386         * reflection.c (mono_reflection_generic_inst_initialize): Added
16387         `MonoArray *properties' argument.
16388
16389         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
16390
16391 2004-02-17  Martin Baulig  <martin@ximian.com>
16392
16393         * icall.c (ves_icall_Type_GetFields): Renamed to
16394         ves_icall_Type_GetFields_internal() and added a
16395         `MonoReflectionType *rtype' argument; pass it to
16396         mono_field_get_object() to set the field's "reflected" type.
16397         (ves_icall_Type_GetConstructors): Likewise.
16398         (ves_icall_Type_GetEvents): Likewise.
16399         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
16400         argument; pass it to mono_method_get_object() to set the method's
16401         "reflected" type.       
16402
16403 2004-02-17  Martin Baulig  <martin@ximian.com>
16404
16405         * class.h (MonoDynamicGenericInst): New type.
16406         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
16407
16408         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
16409         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
16410         (ves_icall_MonoGenericInst_GetFields): New interncall.
16411
16412         * class.c (mono_class_from_generic): Don't call
16413         mono_class_initialize_generic() if this is a dynamic instance;
16414         ie. it's being created from a TypeBuilder.
16415         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
16416         `class->byval_arg.type'.
16417
16418         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
16419         to `inflate_method' and made static.
16420         (mono_reflection_inflate_field): Removed.
16421         (mono_reflection_generic_inst_initialize): New public method.
16422
16423         * reflection.h (MonoReflectionGenericInst): Removed `methods',
16424         `ctors' and `fields'; added `initialized'.
16425
16426 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
16427
16428         * debug-helpers.c (mono_method_full_name): Fix output for empty
16429         namespaces.
16430
16431 2004-02-12  Martin Baulig  <martin@ximian.com>
16432
16433         * class.h (MonoClassField): Added `MonoType *generic_type'.
16434
16435         * reflection.c (mono_image_get_fieldref_token): Added support for
16436         instantiated generic types.
16437         (field_encode_inflated_field): Removed.
16438         (mono_image_get_inflated_field_token): Removed.
16439         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
16440
16441         * reflection.h (MonoReflectionInflatedField): Removed.
16442
16443 2004-02-12  Martin Baulig  <martin@ximian.com>
16444
16445         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
16446         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
16447
16448         * reflection.c (mono_image_get_methodspec_token): Take a
16449         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
16450         (mono_image_create_token): Check whether we have a
16451         `method->signature->gen_method' and call
16452         mono_image_get_methodspec_token() if appropriate.
16453         (inflated_method_get_object): Removed.
16454         (mono_reflection_bind_generic_method_parameters): Return a
16455         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
16456         (mono_reflection_inflate_method_or_ctor): Likewise.
16457
16458         * reflection.h (MonoReflectionInflatedMethod): Removed.
16459
16460 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
16461
16462         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
16463         for custom valuetype marshalling.
16464
16465         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
16466
16467 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16468
16469         * icall.c: fixed WSAGetLastError_internal name.
16470
16471 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
16472
16473         * threads.c (mono_thread_attach): Allow this to be called multiple
16474         times for a thread.
16475         
16476         * threads.c (build_wait_tids): Do not wait for ourselves.
16477
16478         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
16479         appdomain list is empty.
16480
16481         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
16482         memory returned by mono_string_builder_to_utf16, since it points into
16483         managed memory. Thanks to Bernie Solomon for noticing this.
16484
16485         * icall.c: Add AppDomainSetup icalls.
16486
16487         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
16488
16489         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
16490         types.
16491
16492         * reflection.c (reflection_methodbuilder_to_mono_method): Save
16493         custom attributes to the method_aux struct. Also fix array indexes etc.
16494
16495         * loader.c (mono_method_get_param_names): Make dynamic case work again.
16496         
16497 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
16498
16499         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
16500         (both static and runtime) and reduce startup time.
16501
16502 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
16503
16504         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
16505         AsAny marshalling conversion instead of crashing.
16506
16507         * marshal.c: Fix warnings.
16508
16509 2004-02-09  Martin Baulig  <martin@ximian.com>
16510
16511         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
16512
16513         * reflection.h (MonoReflectionInflatedMethod): Removed the
16514         `declaring' field, it's now in the unmanaged MonoGenericMethod.
16515
16516         * reflection.c (method_encode_methodspec): Removed the `method'
16517         argument; we get it from `gmethod->declaring'.
16518         (inflated_method_get_object): Removed the `declaring' argument.
16519
16520 2004-02-09  Martin Baulig  <martin@ximian.com>
16521
16522         * class.h (MonoGenericMethod): New type.
16523         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
16524         `generic_method'.
16525
16526         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
16527         a `MonoGenericMethod *gen_method' one.
16528
16529         * class.c (mono_class_inflate_generic_type): Take an additional
16530         `MonoGenericMethod * argument.  This is only non-NULL if we're
16531         inflating types for a generic method.   
16532         (mono_class_inflate_generic_signature): Renamed to
16533         inflate_generic_signature() and made static; take a
16534         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
16535         (inflate_generic_header): Take a `MonoGenericMethod *' argument
16536         instead of a `MonoGenericInst *' one.
16537         (mono_class_inflate_generic_method): Likewise.
16538
16539         * reflection.c (encode_generic_method_sig): Take a
16540         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
16541         (method_encode_methodspec): Likewise.
16542         (inflated_method_get_object): Likewise. 
16543
16544         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
16545         field with a `MonoGenericMethod *gmethod' one.  
16546
16547 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
16548
16549         * class.h (mono_class_has_parent): add parens to expansion
16550         so you can ! this.
16551
16552 2004-02-08  Martin Baulig  <martin@ximian.com>
16553
16554         * image.h (MonoImage): Removed `generics_cache'.
16555
16556         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
16557         instead of a `MonoType *' argument; removed the `inflate_methods'
16558         argument.  Don't inflate methods here.
16559
16560         * loader.c (find_method): If it's a generic instance, call
16561         mono_class_init() on the `sclass->generic_inst->generic_type'.
16562
16563         * metadata.c (mono_type_size): Make this work on uninitialized
16564         generic instances; call it on the `ginst->generic_type's class.
16565
16566         * reflection.c (mono_reflection_bind_generic_parameters): Call
16567         mono_class_from_generic() to create the `ginst->klass'.
16568
16569 2004-02-08  Martin Baulig  <martin@ximian.com>
16570
16571         * class.h (MonoClass): Changed type of `generic_inst' from
16572         `MonoType *' to `MonoGenericInst *'.
16573
16574 2004-02-08  Martin Baulig  <martin@ximian.com>
16575
16576         * icall.c (ves_icall_Type_BindGenericParameters): Just call
16577         mono_type_get_object(), this is now creating a `MonoGenericInst'
16578         for MONO_TYPE_GENERICINST.
16579         (ves_icall_MonoGenericInst_GetParentType): Likewise.
16580         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
16581
16582         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
16583         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
16584         (inflated_method_get_object): Added `MonoClass *refclass' argument.
16585         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
16586         and reflected type.
16587
16588         * reflection.h (MonoReflectionInflatedMethod): Removed
16589         `declaring_type' and `reflected_type'.
16590
16591 2004-02-08  Martin Baulig  <martin@ximian.com>
16592
16593         * class.h (MonoGenericInst): Added `MonoType *parent' and
16594         `MonoType **ifaces'.
16595
16596         * reflection.h (MonoReflectionGenericInst): Removed `klass',
16597         `parent' and `interfaces'.
16598
16599         * reflection.c (mono_reflection_bind_generic_parameters): Take a
16600         `MonoType *' argument and return a `MonoType *'.
16601
16602         * icall.c
16603         (ves_icall_MonoGenericInst_GetParentType): New interncall.
16604         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
16605
16606 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
16607
16608         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
16609         valuetype marshalling.
16610
16611 2004-02-06  Martin Baulig  <martin@ximian.com>
16612
16613         * class.c
16614         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
16615         (my_mono_class_from_generic_parameter): Likewise.
16616
16617 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
16618
16619         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
16620         contents of the symbol files lazily.
16621
16622         * object.h (MonoThread): Add 'name' and 'name_len' fields.
16623
16624         * threads.h threads.c icall.c: New icalls for getting and setting the
16625         threads name.
16626
16627 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
16628
16629         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
16630         Raise an exception when the domain is not found.
16631
16632 2004-02-03  Martin Baulig  <martin@ximian.com>
16633
16634         * reflection.c (mono_image_get_methodspec_token): Use the
16635         uninflated signature; fixes gen-33.
16636
16637 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
16638
16639         * gc.c threads.c: Make the finalizer thread a normal managed thread so
16640         the finalizer code can use thread functionality.
16641
16642         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
16643         the finalizer thread.
16644
16645         * threads.c: Make some functions more robust.
16646
16647         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
16648
16649         * metadata.h: Add new marshalling conventions.
16650
16651         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
16652         stringbuilder marshalling. Fixes #53700.
16653
16654         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
16655
16656         * reflection.c (mono_image_get_type_info): Save declarative security
16657         info.
16658
16659         * reflection.c (mono_image_get_field_info): Handle uninitialized 
16660         unmanaged fields as well.
16661
16662         * appdomain.c: Bump corlib version.
16663
16664 2004-02-01  Martin Baulig  <martin@ximian.com>
16665
16666         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
16667         method type arguments.  
16668
16669 2004-01-30  Duncan Mak  <duncan@ximian.com>
16670
16671         * marshal.h: Add prototype for
16672         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
16673         and
16674         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
16675         fix the build.
16676
16677 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
16678
16679         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
16680         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
16681
16682 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
16683
16684         * marshal.c (mono_marshal_get_native_wrapper): Add support for
16685         custom marshalling of valuetypes.
16686
16687         * marshal.c: Fix some warnings.
16688
16689 2004-01-29  Martin Baulig  <martin@ximian.com>
16690
16691         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
16692         for generic method parameters.
16693
16694         * reflection.c (method_encode_methodspec): Write the uninflated
16695         signature into the methodspec table.
16696         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
16697         is always the uninflated method.
16698         (reflection_methodbuilder_to_mono_method): Copy the generic
16699         parameters from the MethodBuilder into `header->gen_params'.
16700
16701 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
16702
16703         * class.c (mono_class_from_generic_parameter): Fix warning.
16704
16705 2004-01-27  Martin Baulig  <martin@ximian.com>
16706
16707         * class.c (mono_class_from_generic_parameter): Don't create
16708         `klass->methods' here.  
16709
16710 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
16711
16712         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
16713         extension since it does not work with libraries named lib<FOO>.dll.so.
16714
16715 2004-01-25  Martin Baulig  <martin@ximian.com>
16716
16717         * class.c (mono_class_inflate_generic_type): Added support for
16718         MONO_TYPE_GENERICINST.
16719
16720         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
16721         inflate methods on open constructed types.      
16722
16723 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16724
16725         * object.c: fire ProcessExit event in the root AppDomain after running
16726         Main. Fixes bug #53299.
16727
16728 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
16729
16730         * socket-io.c: include the new socket-wrappers.h header.
16731         Use the wrappers instead of the unix socket functions to make the code
16732         more clear.
16733
16734 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
16735
16736         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
16737
16738         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
16739         Fixes #22532.
16740
16741 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
16742
16743         * reflection.c (mono_image_create_pefile): Handle the case when the
16744         entry point is not a MethodBuilder.
16745
16746         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
16747         field to ReflectionMethod since it is not allways a builder.
16748
16749         * reflection.c (type_get_fully_qualified_name): New helper function to
16750         return the fully qualified name of a type.
16751
16752         * reflection.c (encode_marshal_blob): Always emit the fully qualified
16753         type name for custom marshallers.
16754
16755         * reflection.c (mono_marshal_spec_from_builder): Ditto.
16756
16757         * class.c (mono_class_setup_vtable): If a parent class already 
16758         implements an interface, use the implementing methods from that class.
16759         Fixes #53148.
16760
16761 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16762
16763         * threadpool.c: just return instead of ExitThread to allow for thread
16764         clean up earlier.
16765
16766 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
16767
16768         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
16769         when closing resource modules.
16770
16771         * reflection.c (mono_image_create_pefile): Handle the case when the
16772         entry point is not a MethodBuilder.
16773
16774         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
16775         field to ReflectionMethod since it is not allways a builder.
16776
16777 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
16778
16779         * marshal.c (mono_marshal_get_managed_wrapper): 
16780         mono_marshal_alloc takes native int so CONV_I
16781         the arg for 64bits.
16782
16783 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
16784
16785         * reflection.c (fixup_cattrs): New function to fixup the methoddef
16786         tokens in the cattr table. Fixes #53108.
16787
16788 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16789
16790         * loader.c: don't trim ".dll" before looking up in the config file.
16791         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
16792
16793 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
16794
16795         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
16796         Return the module which contains the resource as well.
16797         (ves_icall_System_Reflection_Module_Close): New icall.
16798
16799         * appdomain.c: Bump corlib version number.
16800
16801         * image.c (mono_image_addref): New public function.
16802
16803         * assembly.c: Call mono_image_addref.
16804
16805         * reflection.c (mono_module_get_object): Increase reference count of 
16806         the image.
16807
16808         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
16809         Fixes #22532.
16810
16811         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
16812         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
16813         proper exceptions on DllImport problems.
16814
16815 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
16816
16817         * class.c, metadata.c: eliminate CSIZE macro.
16818
16819 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
16820
16821         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
16822         * object.h: Added async_callback field in MonoAsyncResult.
16823         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
16824         * verify.c: Added async_callback in MonoAsyncResult layout.
16825
16826 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
16827
16828         * reflection.c (mono_reflection_get_custom_attrs): Add support
16829         for Modules.
16830
16831 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
16832
16833         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
16834         marshalling.
16835         (mono_marshal_method_from_wrapper): Add null pointer check.
16836
16837 2004-01-16  Martin Baulig  <martin@ximian.com>
16838
16839         * debug-mono-symfile.h: Set version number to 36 and reflect
16840         latest symbol writer changes.
16841
16842 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
16843
16844         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
16845         multi-dimensional arrays.
16846         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
16847         (mono_class_from_mono_type): Use bounded_array_class_get.
16848         
16849         * class.c (mono_bounded_array_class_get): New function which takes
16850         a 'bounded' bool argument to distinguish vectors from one dimensional
16851         arrays.
16852
16853         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
16854         bounded_array_class_get if the array has bounds.
16855
16856         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
16857         Search modules loaded using AssemblyBuilder:AddModule as well.
16858
16859 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16860
16861         * appdomain.c: increased corlib version.
16862         * filewatcher.c: removed g_print.
16863         * icall.c:
16864         (get_property_info): only allocate what is actually requested.
16865         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
16866
16867 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16868
16869         * Makefile.am: added filewatcher.[ch]
16870         * filewatcher.[ch]: FileSystemWatcher runtime support.
16871         * icall.c: added new FSW icalls.
16872
16873 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
16874
16875         * string-icalls.c: fix stringbuilder regression as suggested by
16876         Iain McCoy <iain@mccoy.id.au>.
16877
16878 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
16879
16880         * process.c (process_read_stringtable_block): Recognize '007f' as
16881         a language neutral stringtable block.
16882
16883 2004-01-12  Patrik Torstensson
16884
16885         * object.h (MonoStringBuilder) : Changed layout to support our
16886         new stringbuilder class.
16887         * marshal.c: Change marshalling to support the new layout of 
16888         string builder.
16889         * appdomain.c: increased version number because new layout of
16890         string builder.
16891
16892 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
16893
16894         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
16895         assembly name as an string instead of an AssemblyName, since it is
16896         easier to extract info from it.
16897
16898         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
16899         the culture subdirectories too. Fixes #52231.
16900
16901 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16902
16903         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
16904         It takes 2 new parameters with an optional name for the method to look
16905         for and case ignoring info.
16906
16907         * threadpool.c: removed unused variable.
16908
16909 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16910
16911         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
16912         It takes 2 new parameters with an optional name for the property to look
16913         for and case ignoring info.
16914         Fixes bug #52753.
16915
16916 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
16917
16918         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
16919         Fix #52451.
16920
16921 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16922
16923         * appdomain.c:
16924         * assembly.c: escape the uri before passing it to g_filename_from_uri.
16925         Fixes bug #52630.
16926
16927 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
16928
16929         * reflection.c: Add support for more than one unmanaged resource.
16930
16931         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
16932         in field->def_value, as done in all other cases.
16933
16934         * reflection.c (mono_reflection_get_custom_attrs): Add support for
16935         TypeBuilders.
16936
16937         * reflection.c (mono_reflection_create_runtime_class): Remove 
16938         errorneous assignment to klass->element_class, since it is already
16939         done in mono_reflection_setup_internal_class.
16940
16941 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16942
16943         * gc.c: added missing LeaveCriticalSection.
16944         * icall.c: indented a couple of lines.
16945         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
16946         if we call EndInvoke inside a callback. Fixes bug #52601.
16947
16948 2004-01-07  Martin Baulig  <martin@ximian.com>
16949
16950         * mono-debug-debugger.h
16951         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
16952
16953 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
16954
16955         * appdomain.c: Use messages in NotImplementedException.
16956
16957         * exception.c (mono_get_exception_not_implemented): Now this takes
16958         a message argument.
16959
16960         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
16961         exception instead of g_asserting an aborting when something is not
16962         implemented.
16963
16964         Add some inline docs.
16965
16966 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
16967
16968         * reflection.h: Update after changes to object layout.
16969
16970         * reflection.c: Implement saving of unmanaged aka win32 resources.
16971
16972         * appdomain.c: Bump version number.
16973
16974         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
16975         Handle missing domains gracefully.
16976
16977 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
16978
16979         * file-io.c : On Windows, there are much more invalid_path_chars.
16980
16981 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
16982
16983         * class.h, object.c: prepare for GetType () speedup.
16984
16985 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
16986
16987         * profiler.c: workaround for --profile null reference exception on
16988           cygwin. Patch by Patrik Torstensson.
16989
16990 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
16991
16992         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
16993         make work for unaligned access.
16994
16995 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
16996
16997         * class.c: small cleanup (class->fields [i] -> field).
16998         * image.c: check address of metadata is valid.
16999
17000 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
17001
17002         * assembly.h assembly.c (mono_assembly_loaded): New public function to
17003         search the list of loaded assemblies.
17004
17005         * reflection.c (mono_reflection_type_from_name): Use 
17006         mono_assembly_loaded instead of mono_image_loaded.
17007
17008         * reflection.c: Fix warnings.
17009
17010 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
17011
17012         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
17013         is dynamic. This is needed since an assembly can contain both dynamic and
17014         non-dynamic images.
17015
17016         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
17017         assembly->dynamic.
17018
17019         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
17020
17021         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
17022         to store modules loaded using AddModule.
17023
17024         * reflection.c (mono_image_fill_file_table): Generalize this so it works
17025         on Modules.
17026
17027         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
17028
17029         * reflection.c (mono_image_fill_export_table_from_module): New function to
17030         fill out the EXPORTEDTYPES table from a module.
17031
17032         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
17033         into a separate function. Also handle loaded non-dynamic modules.
17034
17035         * reflection.c (mono_image_basic_init): Fix memory allocation.
17036
17037         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17038
17039         * assembly.c (mono_assembly_load_references): Make this public.
17040
17041 2003-12-19  Martin Baulig  <martin@ximian.com>
17042
17043         * class.c (mono_class_initialize_generic): Made this static, take
17044         a `MonoGenericInst *' instead of a `MonoClass *'.
17045         (mono_class_from_generic): Call mono_class_initialize_generic()
17046         unless we're already initialized or being called from
17047         do_mono_metadata_parse_generic_inst().
17048
17049         * class.h (MonoGenericInst): Added `initialized' and
17050         `init_pending' flags.
17051
17052         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
17053         `mono_class_init (gklass)' or mono_class_initialize_generic()
17054         here; set `generic_inst->init_pending' while parsing the
17055         `type_argv'.
17056
17057 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
17058
17059         * locales.c: include string.h for memxxx prototypes
17060
17061 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
17062
17063         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
17064         constructor when accessing literal fields.
17065
17066 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
17067
17068         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17069
17070         * reflection.c (assembly_add_resource_manifest): New function to fill
17071         the MANIFESTRESOURCE table.
17072
17073         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
17074
17075         * reflection.h: Update to changes in class layout.
17076
17077         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
17078         Reenable call to mono_runtime_is_shutting_down ().
17079
17080         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
17081         determine if the runtime is shutting down.
17082
17083 2003-12-16  Jackson Harper <jackson@ximian.com>
17084
17085         * icall.c: comment out call to mono_runtime_is_shutting_down to
17086         fix build.
17087         
17088 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
17089
17090         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
17091         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
17092
17093 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
17094
17095         * reflection.c: move definition of swap_with_size
17096         to before its first call
17097
17098 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
17099
17100         * appdomain.c (mono_runtime_is_shutting_down): New public function.
17101
17102         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
17103         icall.
17104
17105         * object.c: Fix warnings.
17106
17107         * icall.c (ves_icall_Type_Get...): Only consider inherited static
17108         members if FlattenHierarchy is set.
17109
17110         * reflection.c (mono_image_add_decl_security): New function to emit
17111         declarative security.
17112
17113         * reflection.h reflection.c: Add support for declarative security.
17114
17115         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
17116         
17117 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
17118
17119         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
17120         
17121         * appdomain.c verify.c: Moved corlib version checking into its own
17122         function in appdomain.c since it needs to create vtables etc.
17123
17124 2003-12-13  Patrik Torstensson <p@rxc.se>
17125
17126         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
17127         instead of unwrapped server.
17128
17129 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
17130
17131         * verify.c (check_corlib): Fix field index.
17132
17133 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
17134
17135         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
17136         GetGacPath icall.
17137
17138 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
17139
17140         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
17141         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
17142         cope with sizeof(size_t) != sizeof(guint32).
17143
17144 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17145
17146         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
17147         in case of failure.
17148
17149 2003-12-10  Mark Crichton <crichton@gimp.org>
17150
17151         * icall.c: removed the GetNonZeroBytes.  We now handle this case
17152         in managed code.
17153
17154         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
17155
17156 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
17157
17158         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
17159         marked as deleted.
17160
17161 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
17162
17163         * verify.c (check_corlib): Handle the case when the version field is 
17164         initialized by a static constructor.
17165
17166 2003-12-08  Patrik Torstensson  <p@rxc.se>
17167
17168     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
17169
17170 2003-12-08  Martin Baulig  <martin@ximian.com>
17171
17172         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
17173         a MonoReflectionGenericParameter, also take the parameter index
17174         and name as arguments.
17175         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
17176         (ves_icall_MonoGenericParam_initialize): New interncall.
17177         (ves_icall_Type_make_byref_type): New interncall.
17178
17179         * reflection.h (MonoReflectionGenericParam): Derive from
17180         MonoReflectionType, not just from MonoObject.  Added `refobj' and
17181         `index' fields.
17182
17183         * reflection.c (mono_reflection_define_generic_parameter): Create
17184         and return a new MonoReflectionGenericParam; don't initialize the
17185         constraints here.
17186         (mono_reflection_initialize_generic_parameter): New public method;
17187         initializes the constraints and creates the `param->pklass'.
17188
17189 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
17190
17191         * reflection.h reflection.c: Use the new fields 'num_types', 
17192         'num_fields' and 'num_methods' to track the number of types etc.
17193
17194         * verify.c (check_corlib): Check corlib version number.
17195
17196 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
17197
17198         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
17199         function works on all methods.
17200
17201 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
17202
17203         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
17204         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
17205         the custom_type_info flag of the transparent proxy.
17206         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
17207         objects that supports IRemotingTypeInfo.
17208         * object.h: Added custom_type_info field in transparent proxy.
17209
17210 2003-12-06  Martin Baulig  <martin@ximian.com>
17211
17212         * class.c (mono_class_create_from_generic): Removed.
17213         (mono_class_from_generic): Check `ginst->klass' before doing
17214         anything else.  This is important to fully support "recursive"
17215         generic types.
17216
17217         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
17218         empty `generic_inst->klass' before doing anything else.
17219
17220 2003-12-06  Dick Porter  <dick@ximian.com>
17221
17222         * verify.c: 
17223         * object.h:
17224         * icall.c:
17225         * locales.c: Use C structs to access class fields.  Don't do a
17226         conversion between MonoString and UChar because both are
17227         platform-endian UTF-16.  Compare now takes startindex and count
17228         parameters.  Add a char overload for IndexOf.  Speed up the
17229         invariant string IndexOf.
17230
17231 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
17232
17233         * Makefile.am (monosn_LDADD): Fix parallel build.
17234
17235 2003-12-04  Martin Baulig  <martin@ximian.com>
17236
17237         * icall.c
17238         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
17239         (ves_icall_Type_make_array_type): New interncall.       
17240
17241 2003-12-04  Martin Baulig  <martin@ximian.com>
17242
17243         * locales.c: also change it in the !HAVE_ICU case.
17244
17245 2003-12-04  Dick Porter  <dick@ximian.com>
17246
17247         * icall.c:
17248         * locales.c: construct_compareinfo is now in CompareInfo, not
17249         CultureInfo.
17250
17251 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
17252
17253         * image.c (mono_image_load_file_for_image): Cache loaded images in the
17254         image->files array.
17255
17256         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
17257         table as well.
17258
17259         * assembly.c (mono_assembly_load_references): Only load references
17260         once.
17261
17262         * class.c (mono_class_from_name): Avoid linear search of the 
17263         EXPORTEDTYPE table.
17264
17265         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
17266
17267 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
17268
17269         * image.h (MonoImage): Add 'field_cache' field.
17270
17271         * loader.c (mono_field_from_token): Cache field lookups.
17272         
17273         * reflection.c (mono_module_get_object): Fix name property.
17274
17275         * icall.c (ves_icall_get_enum_info): Update after changes to 
17276         mono_metadata_get_constant_index ().
17277
17278         * icall.c: Get rid of get_type_info icall, use a separate icall for
17279         each type property to avoid needless memory allocations. Fixes #51514.
17280
17281         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
17282         to avoid needless binary searches.
17283
17284         * class.c (class_compute_field_layout): Move the initialization of
17285         field->def_value to mono_class_vtable ().
17286
17287         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
17288         non-corlib types.
17289
17290         * object.c (mono_object_allocate): Make it inline.
17291
17292         * object.c (mono_object_allocate_spec): Make it inline.
17293         
17294 2003-12-02  Dick Porter  <dick@ximian.com>
17295
17296         * locales.c (create_NumberFormat): NumberFormatInfo construction.
17297         Patch by Mohammad DAMT (mdamt@cdl2000.com).
17298
17299 2003-12-01  Dick Porter  <dick@ximian.com>
17300
17301         * threads.c: Fix signature and call in CreateMutex and
17302         CreateEvent.
17303
17304 2003-12-01  Dick Porter  <dick@ximian.com>
17305
17306         * icall.c: 
17307         * locales.c: Implement string compares and searching
17308
17309         * object.h: Add extra Thread field
17310
17311 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
17312
17313         * reflection.c (fixup_method): Add support for MonoCMethod.
17314
17315 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
17316
17317         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
17318
17319         * reflection.c (assembly_name_to_aname): Allow extra characters in
17320         assembly names. Fixes #51468.
17321
17322 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
17323
17324         * exception.c (mono_exception_from_name_domain): New helper function.
17325
17326         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
17327         exception object in the correct domain.
17328
17329         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
17330         formatting + make a copy a the input data.
17331
17332         * loader.c (mono_get_method_from_token): Methods which contain
17333         native code do not have entries in the ImplMap.
17334
17335         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
17336         Thanks to Gonzalo for spotting this.
17337         
17338         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
17339         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
17340
17341         * assembly.h (mono_assembly_load_from): Split the second part of 
17342         assembly loading into a new public function.
17343
17344         * exception.h (mono_get_exception_bad_image_format): New function.
17345
17346 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
17347
17348         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
17349         Enumerate all modules inside a dynamic assembly. Fixes #51293.
17350         
17351         * icall.c: Add new icall for creating dynamic methods.
17352
17353         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
17354
17355         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
17356
17357         * reflection.c (mono_reflection_create_dynamic_method): New icall to
17358         create a dynamic method.
17359
17360         * reflection.c (resolve_object): New helper function.
17361
17362         * reflection.c: Generalize ReflectionMethodBuilder and the functions
17363         which manipulate it so they can also work on dynamic methods.
17364
17365         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
17366         creating the MonoReflectionMethodAux structure if it is not needed.
17367         
17368         * reflection.h verify.c: Update after changes to object layout.
17369
17370         * reflection.c (method_builder_encode_signature): Fix compilation on
17371         gcc 2.95.x.
17372
17373 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
17374
17375         * appdomain.h: Added support for context static fields. Added static_data
17376           field to MonoAppContext and renamed thread_static_fields to a more
17377           generic special_static_fields in MonoAppDomain, since it can now contain
17378           context static fields.
17379         * domain.c: Updated hashtable name.
17380         * object.c: Replaced field_is_thread_static() for a more generic
17381           field_is_special_static() which also checks for context static attribute.
17382           In mono_class_vtable(), added support for static context fields.
17383         * threads.c: Changed methods that manage thread static fields to more
17384           generic methods so they can be reused both for thread and context static
17385           data.
17386         * threads.h: Declared some new methods.
17387
17388 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
17389
17390         * reflection.h: Update after changes to the managed types.
17391
17392         * reflection.c (encode_custom_modifiers): New helper function.
17393
17394         * reflection.c (method_encode_signature): Emit custom modifiers.
17395
17396         * reflection.c (field_encode_signature): Emit custom modifiers.
17397
17398 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
17399
17400         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
17401
17402         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
17403         implementation.
17404
17405         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
17406         icall.
17407
17408         * object.c (mono_field_get_value_object): New function.
17409
17410         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
17411         specific.
17412
17413 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
17414
17415         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
17416         return a preallocated out-of-memory exception instance.
17417
17418         * object.c (out_of_memory): Use the new function.
17419
17420         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
17421         flag is before the custom modifiers. Fixes #49802.
17422
17423 2003-11-16  Martin Baulig  <martin@ximian.com>
17424
17425         * class.c (mono_class_is_open_constructed_type): Implemented the
17426         MONO_TYPE_GENERICINST case.
17427
17428 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
17429
17430         * assembly.c (mono_assembly_fill_assembly_name): New function to
17431         fill out the MonoAssemblyName structure.
17432         (mono_assembly_open): Use the new function.
17433
17434         * icall.c (fill_reflection_assembly_name): New helper function.
17435
17436         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
17437         new function.
17438
17439         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
17440
17441 2003-11-15  Martin Baulig  <martin@ximian.com>
17442
17443         * class.c (mono_class_is_open_constructed_type): New public
17444         function; checks whether a type is an open constructed type,
17445         ie. whether it still contains type parameters.
17446         (mono_class_inflate_generic_type): If we're a type parameter and
17447         the inflated type is also a MONO_TYPE_(M)VAR, return the original
17448         type.
17449
17450         * class.h (MonoGenericInst): Added `guint32 is_open'.
17451
17452         * loader.c (method_from_methodspec): Check whether we're an open
17453         or closed constructed type and set `ginst->is_open'.
17454
17455         * reflection.c (mono_reflection_bind_generic_parameters): Check
17456         whether we're an open or closed constructed type and set
17457         `ginst->is_open'.
17458         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
17459         from open constructed types.
17460
17461 2003-11-15  Martin Baulig  <martin@ximian.com>
17462
17463         * reflection.c (mono_reflection_bind_generic_parameters): If we're
17464         a generic instance (instead of a generic type declaration) with
17465         unbound generic parameters, bind them to our actual types.
17466
17467 2003-11-14  Martin Baulig  <martin@ximian.com>
17468
17469         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
17470
17471         * reflection.c (mono_reflection_bind_generic_parameters): If we're
17472         an interface type, populate `res->interfaces' with instantiated
17473         versions of all the interfaces we inherit.
17474
17475 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
17476
17477         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
17478         when MONO_PATH is set but doesn't contain the install dir.
17479
17480 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17481
17482         * icall.c:
17483         (ves_icall_Type_GetInterfaces): don't return an interface twice when
17484         it's also implemented in base classes. Fixes bug #50927.
17485
17486 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
17487
17488         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
17489         if this method is called from a finalizer. Fixes #50913.
17490
17491 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
17492
17493         * threads.c: Implement VolatileRead/VolatileWrite
17494
17495         * icall.c: Add new icalls for VolatileRead/VolatileWrite
17496
17497 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
17498
17499         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
17500         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
17501         2.95.3.
17502
17503         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
17504         from Peter Ross (pro@missioncriticalit.com).
17505         
17506 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
17507
17508         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
17509
17510 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
17511
17512         * assembly.c (mono_assembly_load_references): Disable check because it
17513         triggers on older corlibs which lots of people have.
17514
17515 2003-11-12  Jackson Harper  <jackson@ximian.com>
17516
17517         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
17518         load corlib.dll if mscorlib.dll is not found.
17519         * assembly.h: Remove corlib name define.
17520         * class.c:
17521         * domain.c:
17522         * image.c: Change corlib name to mscorlib.
17523         
17524 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
17525
17526         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
17527
17528 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
17529
17530         * appdomain.h: Added loader_optimization here to sync with the C#
17531         code, and add disallow_binding_redirects field.
17532
17533 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
17534
17535         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
17536
17537         * reflection.c (mono_image_build_metadata): Fix crash on modules
17538         with no types.
17539
17540         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
17541
17542         * icall.c (ves_icall_get_method_info): Return callingConvention as
17543         well.
17544
17545         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
17546         namespaces from the EXPORTEDTYPE table as well.
17547
17548         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
17549         from all modules inside the assembly.
17550         
17551 2003-11-11  Martin Baulig  <martin@ximian.com>
17552
17553         * reflection.c (mono_reflection_bind_generic_parameters): Make
17554         this work for interfaces.
17555
17556 2003-11-11  Martin Baulig  <martin@ximian.com>
17557
17558         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
17559
17560 2003-11-11  Martin Baulig  <martin@ximian.com>
17561
17562         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
17563         "MonoInflatedMethod" and "MonoInflatedCtor".
17564
17565 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
17566
17567         * reflection.c (resolution_scope_from_image): Use the assembly table
17568         from the manifest module, since other modules don't have it.
17569
17570         * debug-helpers.c (mono_type_full_name): New helper function.
17571
17572         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
17573
17574         * image.c (mono_image_load_file_for_image): New public function which
17575         is a replacement for the load_file_for_image in class.c.
17576
17577         * assembly.c (mono_assembly_load_module): A wrapper for the function
17578         above which does assembly association and reference loading too.
17579
17580         * class.c (mono_class_from_name): Call mono_assembly_load_module.
17581
17582 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17583
17584         * appdomain.c: not all of the attributes for the full assembly name
17585         are required and the order doesn't matter. Fixes bug #50787.
17586
17587 2003-11-10  Dick Porter  <dick@ximian.com>
17588
17589         * locales.c: Use platform-endian UTF16
17590
17591 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
17592
17593         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
17594         
17595 2003-11-10  Martin Baulig  <martin@ximian.com>
17596
17597         * metadata.c
17598         (mono_metadata_load_generic_params): Make this actually work.
17599
17600         * reflection.c (mono_reflection_bind_generic_parameters): If our
17601         parent is a generic instance, pass all the `types' to it, no
17602         matter whether it has the same number of type parameters or not.
17603
17604 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
17605
17606         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
17607
17608         * assembly.c (mono_assembly_load_references): Move the image<->assembly
17609         assignment code to this function so it gets called recursively for all
17610         modules.
17611
17612         * image.c (load_modules): Remove the assembly assignment since it is
17613         now done by mono_assembly_load_references.
17614         
17615         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
17616         Add 'module' argument.
17617         (mono_module_get_types): New helper function.
17618         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
17619
17620 2003-11-08  Martin Baulig  <martin@ximian.com>
17621
17622         * class.c (mono_class_inflate_generic_method): Interface method
17623         don't have a header.
17624
17625         * reflection.c (mono_image_get_methodspec_token): Take an
17626         additional `MonoGenericInst *' argument instead of reading it from
17627         the header; this is necessary to support interfaces.
17628         (mono_image_create_token): Pass the `MonoGenericInst *' from the
17629         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
17630         (inflated_method_get_object): Take an additional `MonoGenericInst *'
17631         argument.
17632
17633         * reflection.h (MonoReflectionInflatedMethod): Added
17634         `MonoGenericInst *ginst'.
17635
17636 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
17637
17638         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
17639
17640 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
17641
17642         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
17643
17644 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
17645
17646         * reflection.c 
17647         (reflection_methodbuilder_from_method_builder):
17648         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
17649         initialize a ReflectionMethodBuilder structure.
17650         (mono_image_get_methodbuilder_token):
17651         (mono_image_get_ctorbuilder_token): New functions to emit memberref
17652         tokens which point to types in another module inside the same assembly.
17653
17654         * reflection.c: Use the new helper functions.
17655         
17656         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
17657
17658         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
17659         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
17660
17661         * reflection.c (resolution_scope_from_image): Emit a moduleref if
17662         neccesary.
17663
17664         * reflection.c (mono_image_build_metadata): Emit metadata only for the
17665         current module. Emit the manifest only for the main module.
17666
17667         * reflection.c (mono_image_create_token): Add assertion when a 
17668         memberref needs to be created.
17669
17670         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
17671
17672         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
17673         larger buffer for the custom attribute blob. Fixes #50637.
17674         
17675 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17676
17677         * threadpool.c: notify listener on async processing handles after
17678         invoking the async callback. Thanks to Zoltan.
17679
17680 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
17681
17682         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
17683         avoid code duplication.
17684
17685         * reflection.h (MonoDynamicImage): New type which is currently unused,
17686         but will be used through the ref.emit code in place of 
17687         MonoDynamicAssembly.
17688
17689         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
17690         object layout.
17691
17692         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
17693         a MonoDynamicImage instead of just a MonoImage.
17694         
17695         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
17696         icalls to ModuleBuilder but keep their semantics, so they will work
17697         with moduleb->assemblyb. This will change later.
17698         
17699 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
17700
17701         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
17702         object layout.
17703
17704         * reflection.c (mono_image_build_metadata): Avoid creation of a default
17705         main module, since it is now done by the managed code.
17706
17707 2003-11-03  Martin Baulig  <martin@ximian.com>
17708
17709         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
17710         `ginst->klass' here.
17711         (method_encode_methodspec): Don't use the `ginst->generic_method's
17712         klass if it's a generic instance, use `ginst->klass' in this case.
17713
17714 2003-11-03  Martin Baulig  <martin@ximian.com>
17715
17716         * reflection.c (mono_image_get_generic_method_param_info):
17717         Removed, use mono_image_get_generic_param_info() instead.
17718         (mono_image_get_type_info): Write the GenericParam table before
17719         the Method table.  This is neccessary because in the GenericParam
17720         table, type parameters of the class (ie. '!0' etc.) must come
17721         before the ones from its generic methods (ie. '!!0' etc).
17722
17723 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
17724
17725         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
17726
17727 2003-11-02  Martin Baulig  <martin@ximian.com>
17728
17729         * reflection.c (create_generic_typespec): Take a
17730         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
17731         the generic parameters from it.
17732
17733 2003-11-02  Martin Baulig  <martin@ximian.com>
17734
17735         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
17736         instead of a `MonoClassField *' since we just need the type.
17737         (create_generic_typespec): New static function.  Creates a
17738         TypeSpec token for a generic type declaration.
17739         (mono_image_get_generic_field_token): New static function.
17740         (mono_image_create_token): If we're a FieldBuilder in a generic
17741         type declaration, call mono_image_get_generic_field_token() to get
17742         the token.
17743
17744 2003-11-02  Martin Baulig  <martin@ximian.com>
17745
17746         * reflection.h
17747         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
17748         `MonoReflectionGenericInst *declaring_type' and
17749         `MonoReflectionGenericInst *reflected_type' fields.
17750
17751         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
17752         `MonoReflectionGenericInst *declaring_type' and a
17753         `MonoReflectionGenericInst *reflected_type' argument instead of a
17754         single `MonoReflectionGenericInst *type' one.  Set
17755         `res->declaring_type' and `res->reflected_type' from them.
17756         (mono_reflection_inflate_field): Likewise.      
17757
17758 2003-11-02  Martin Baulig  <martin@ximian.com>
17759
17760         * class.c (mono_class_setup_vtable): Don't store generic methods
17761         in the vtable.  
17762
17763 2003-11-02  Martin Baulig  <martin@ximian.com>
17764
17765         * reflection.h (MonoReflectionGenericInst): Added
17766         `MonoReflectionType *declaring_type'.
17767
17768         * reflection.c (mono_reflection_bind_generic_parameters): Use
17769         `if (tb->parent)' instead of `klass->parent'.
17770
17771 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
17772
17773         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
17774         with an empty ASSEMBLY table.
17775
17776         * reflection.c (mono_image_build_metadata): Avoid using the same loop
17777         variable in the inner and outer loops.
17778
17779 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
17780
17781         * metadata.h (mono_metadata_make_token): Put parentheses around macro
17782         argument.
17783
17784         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
17785         
17786         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
17787         icalls. Instead, do everything in managed code. This is needed since
17788         it is hard to restore the original domain etc. in unmanaged code in the
17789         presence of undeniable exceptions.
17790
17791         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
17792         New icalls to push and pop appdomain refs.
17793
17794 2003-10-31  Martin Baulig  <martin@ximian.com>
17795
17796         * class.c (inflate_generic_type): Renamed to
17797         mono_class_inflate_generic_type() and made it public.
17798
17799         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
17800         New interncall.
17801
17802         * loader.c (mono_field_from_memberref): Also set the retklass for
17803         typespecs.
17804
17805         * fielder.c (mono_image_get_inflated_field_token): New static
17806         method; creates a metadata token for an inflated field.
17807         (mono_image_create_token, fixup_method): Added support for
17808         "MonoInflatedField".
17809         (fieldbuilder_to_mono_class_field): New static function.
17810         (mono_reflection_inflate_field): New public function.
17811
17812         * reflection.h
17813         (MonoReflectionGenericInst): Added `MonoArray *fields'.
17814         (MonoReflectionInflatedField): New typedef.     
17815
17816 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
17817
17818         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
17819         for Solaris and other platforms without s6_addr16
17820
17821 2003-10-30  Martin Baulig  <martin@ximian.com>
17822
17823         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
17824         argument instead of two.
17825         (mono_class_inflate_generic_signature): Likewise.
17826         (inflate_generic_header): Likewise.
17827         (mono_class_inflate_generic_method): Likewise.  In addition, if
17828         `ginst->klass' is set, it becomes the new `method->klass'.
17829
17830         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
17831         field.
17832
17833         * reflection.c (encode_generic_method_sig): Write a 0xa as the
17834         first byte. [FIXME]
17835         (method_encode_methodspec): If we have generic parameters, create
17836         a MethodSpec instead of a MethodRef.
17837         (fixup_method): Added support for "MonoInflatedMethod" and
17838         "MonoInflatedCtor".
17839         (mono_image_create_token): Added support for "MonoInflatedMethod"
17840         and "MonoInflatedCtor".
17841         (inflated_method_get_object): New static function; returns a
17842         managed "System.Reflection.MonoInflatedMethod" object.
17843         (mono_reflection_bind_generic_method_parameters): Return a
17844         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
17845         (mono_reflection_inflate_method_or_ctor): Likewise.
17846         (mono_image_get_generic_method_param_info): Initialize unused
17847         fields to zero.
17848         (mono_image_get_generic_param_info): Likewise.
17849
17850         * reflection.h (MonoReflectionInflatedMethod): New public
17851         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
17852         "S.R.MonoInflatedCtor" classes.
17853
17854         * loader.c (method_from_memberref): If we're a TypeSpec and it
17855         resolves to a generic instance, inflate the method.
17856
17857 2003-10-28  Dick Porter  <dick@ximian.com>
17858
17859         * object.c (mono_runtime_run_main): Convert command-line arguments
17860         into utf8, falling back to the user's locale encoding to do so.
17861
17862 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
17863
17864         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
17865         at this time.
17866
17867         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
17868
17869         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
17870         up icalls at method definition time. Partially fixes #33569.
17871
17872 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
17873
17874         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
17875         marshalling of arrays. Fixes #50116.
17876
17877         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
17878
17879         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
17880         points to a vtable in the dying appdomain.
17881
17882         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
17883         listeners into unmanaged code inside the lock.
17884
17885         * object.c (mono_class_vtable): Turn off typed allocation in non-root
17886         domains and add some comments.
17887
17888 2003-10-25  Martin Baulig  <martin@ximian.com>
17889
17890         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
17891
17892         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
17893
17894         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
17895         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
17896         currently parsing.  Create the generic class and store it in
17897         `generic_inst->klass' before parsing the type arguments.  This is
17898         required to support "recursive" definitions; see mcs/tests/gen-23.cs
17899         for an example.
17900         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
17901         to support recursive typespec entries.
17902
17903         * class.c (mono_class_setup_parent): If our parent is a generic
17904         instance, we may get called before it has its name set.
17905         (mono_class_from_generic): Splitted into
17906         mono_class_create_from_generic() and mono_class_initialize_generic().
17907
17908 2003-10-25  Martin Baulig  <martin@ximian.com>
17909
17910         * icall.c (ves_icall_Type_BindGenericParameters): Return a
17911         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
17912         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
17913         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
17914
17915         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
17916         (create_typespec): Likewise.
17917         (mono_reflection_bind_generic_parameters): Return a
17918         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
17919         (mono_reflection_inflate_method_or_ctor): New public function.
17920
17921         * reflection.h (MonoReflectionGenericInst): New typedef.        
17922
17923 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
17924
17925         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
17926         inside the domain lock. Fixes #49993.
17927         
17928         * object.c (mono_class_vtable): When typed allocation is used, 
17929         allocate vtables in the GC heap instead of in the mempool, since the
17930         vtables contain GC descriptors which are used by the collector even
17931         after the domain owning the mempool is unloaded.
17932
17933         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
17934
17935         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
17936         reflect what it does. Also invalidate mempools instead of freeing
17937         them if a define is set.
17938
17939         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
17940         of the appdomain.
17941         
17942         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
17943         hold the finalizable objects in this domain.
17944
17945         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
17946         appdomain.
17947
17948         * appdomain.c (mono_domain_set): New function to set the current
17949         appdomain, but only if it is not being unloaded.
17950
17951         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
17952         appdomain which is being unloaded.
17953         
17954         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
17955         unloading of the root appdomain.
17956
17957         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
17958         icall to execute a method in another appdomain. Intended as a 
17959         replacement for InternalSetDomain, which can confuse the code 
17960         generation in the JIT.
17961
17962         * appdomain.c (mono_domain_is_unloading): New function to determine
17963         whenever an appdomain is unloading.
17964
17965         * appdomain.c (mono_domain_unload): New function to correctly unload
17966         an appdomain.
17967
17968         * assembly.c (mono_assembly_load_references): Check that an assembly
17969         does not references itself.
17970
17971         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
17972         domain manually, it asks the finalizer thread to do it, then waits for
17973         the result. Also added a timeout.
17974
17975         * icall.c: Register the new icalls.
17976
17977         * threads.h threads.c: Export the mono_gc_stop_world and 
17978         mono_gc_start_world functions.
17979         
17980         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
17981         function to fill out the mempool with 0x2a.
17982
17983 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
17984
17985         * reflection.h (MonoReflectionMethodAux): New structure to store
17986         information which is rarely used, thus is not in the MonoMethod
17987         structure.
17988
17989         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
17990         store the aux info.
17991
17992         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
17993         and marshalling info into the aux structure.
17994
17995         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
17996         from the aux structure.
17997
17998         * loader.c (mono_method_get_param_names): Retrieve the param names from
17999         the aux structure.
18000         
18001 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
18002
18003         * exception.h exception.c: Add AppDomainUnloadedException && fix 
18004         warning.
18005
18006 2003-10-21  Dick Porter  <dick@ximian.com>
18007
18008         * socket-io.c
18009         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
18010         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
18011
18012 2003-10-21  Martin Baulig  <martin@ximian.com>
18013
18014         * reflection.c (mono_reflection_bind_generic_parameters):
18015         `klass->parent' is NULL for interfaces.
18016
18017 2003-10-21  Martin Baulig  <martin@ximian.com>
18018
18019         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
18020
18021 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
18022
18023         * exception.c (mono_exception_from_name_msg): New helper function for
18024         creating exceptions and initializing their message field.
18025
18026         * exception.c: Simplify functions using the new helper.
18027
18028         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
18029         New function.
18030
18031         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
18032         mono_raise_exception, since otherwise gcc doesn't generate the function
18033         epilog for raise_exception, confusing the stack unwinding in the JIT.
18034         Fixes #45043.
18035
18036         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
18037         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
18038         Fixes #49499.
18039
18040 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18041
18042         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
18043         utf8.
18044
18045 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
18046
18047         * icall.c: Removed GetUninitializedObject method because
18048           AllocateUninitializedClassInstance does the same.
18049
18050 2003-10-18  Martin Baulig  <martin@ximian.com>
18051
18052         * class.c (inflate_generic_signature): Renamed to
18053         mono_class_inflate_generic_signature() and made it public.
18054         (my_mono_class_from_generic_parameter): New static function; if we
18055         don't already have the generic parameter's MonoClass, create a
18056         very simple one which is just used internally in the runtime and
18057         not passed back to managed code.
18058
18059         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
18060
18061         * metadata.h (MonoMethodSignature): Moved the
18062         `MonoGenericParam *gen_params' to the MonoMethodHeader.
18063         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
18064
18065         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
18066         ves_icall_MonoMethod_GetGenericArguments(); this is now an
18067         interncall on the MonoMethod class, not on MethodInfo.
18068         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
18069         calling mono_reflection_bind_generic_method_parameters() directly.
18070
18071         * loader.c (mono_method_get_signature): If this is a MethodSpec;
18072         return the already computed `method->signature'.
18073         (method_from_methodspec): New static function to load a method
18074         from a MethodSpec entry.
18075         (mono_get_method_from_token): Call the new method_from_methodspec()
18076         for MethodSpec tokens.  
18077         (mono_get_method_from_token): If we're a generic method, load the
18078         type parameters.
18079
18080         * reflection.c (mono_image_get_memberref_token): Allow
18081         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
18082         table.
18083         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
18084         (mono_image_create_token): First check whether it's a generic
18085         method (so we'd need to create a MethodSpec), then do the other
18086         two alternatives.
18087         (mono_reflection_bind_generic_method_parameters): Return a
18088         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
18089         called directly from the interncall.
18090
18091 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
18092
18093         * reflection.c (load_public_key): Move loading of the public key
18094         into managed code.
18095
18096         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
18097
18098         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
18099         fields.
18100
18101         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
18102         culture, hash_alg and public_key. Fixes #49555.
18103
18104 2003-10-17  Martin Baulig  <martin@ximian.com>
18105
18106         * class.h (MonoGenericInst): Moved this declaration here and added
18107         `MonoMethod *generic_method'.
18108
18109         * icall.c
18110         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
18111         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
18112
18113         * metadata.c (mono_metadata_type_equal): Two types of
18114         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
18115         index; ie. don't compare the address of the `MonoGenericParam'
18116         structure.
18117         (mono_metadata_load_generic_params): Removed the `MonoMethod
18118         *method' argument.
18119
18120         * metadata.h (MonoGenericInst): Moved declaration to class.h.
18121         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
18122
18123         * reflection.c (method_encode_signature): Encode the number of
18124         generic parameters.
18125         (encode_generic_method_sig): New static function.
18126         (method_encode_methodspec): New static function; creates an entry
18127         in the MethodSpec table for a generic method.
18128         (mono_image_get_methodspec_token): New static function.
18129         (mono_image_create_token): Call mono_image_get_methodspec_token()
18130         for generic methods.
18131         (mono_reflection_bind_generic_method_parameters): New public
18132         function.  Instantiates a generic method.
18133
18134 2003-10-16  Martin Baulig  <martin@ximian.com>
18135
18136         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
18137         *gen_params' here from MonoMethodHeader.
18138
18139         * metadata.c (mono_metadata_parse_method_signature): If we have
18140         generic parameters, initialize `method->gen_params' and then set
18141         the correct `type->data.generic_param' in all the parameters.
18142
18143 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
18144
18145         * threads.c (mono_threads_get_default_stacksize): New function to 
18146         return the default stacksize.
18147
18148         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
18149         termination of the finalizer thread, since the previous method had
18150         race conditions. Fixes #49628.
18151
18152         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
18153         as for the other managed threads.
18154
18155 2003-10-16  Martin Baulig  <martin@ximian.com>
18156
18157         * class.c (inflate_generic_signature): Copy `generic_param_count'
18158         and `gen_params'.
18159
18160         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
18161         New interncall.
18162
18163         * metadata.c (mono_metadata_parse_method_signature): Actually set
18164         the `method->generic_param_count' here.
18165         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
18166
18167 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
18168
18169         * object.h: Add a new field to TypedRef to simplify the implementation
18170         of the REFANY opcodes in the JIT.
18171
18172         * icall.c: Make use of the new field.
18173
18174         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
18175         dynamically.
18176
18177 2003-10-15  Martin Baulig  <martin@ximian.com>
18178
18179         * class.c (mono_class_from_gen_param): Renamed to
18180         mono_class_from_generic_parameter() and moved most of the
18181         functionality from mono_reflection_define_generic_parameter()
18182         here; ie. we create a "real" class here.
18183         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
18184         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
18185         previously been called.
18186
18187         * class.h (MonoGenericParam): Moved the declaration of this struct
18188         here from metadata.h and added `MonoMethod *method'.
18189
18190         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
18191         interncall.
18192
18193         * loader.c (mono_get_method_from_token): If we have any generic
18194         parameters, call mono_metadata_load_generic_params() to read them
18195         from the MONO_TABLE_GENERICPAR.
18196
18197         * metadata.c (mono_metadata_load_generic_params): Added
18198         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
18199
18200         * metadata.h (MonoMethodSignature): Replaced
18201         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
18202         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
18203
18204         * reflection.c (mono_reflection_define_generic_parameter): Moved
18205         most of the functionality into the new
18206         mono_class_from_generic_parameter(); set the `method' field if
18207         we're a method parameter.       
18208
18209 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
18210
18211         * marshal.c (emit_struct_conv): if native size is 0
18212         emit no code.
18213
18214 2003-10-14  Martin Baulig  <martin@ximian.com>
18215
18216         * icall.c: The generics API has changed in the spec since it was
18217         added to System.Type; these modifications make it match the spec
18218         again.
18219         (ves_icall_Type_GetGenericParameters): Renamed to
18220         `ves_icall_Type_GetGenericArguments'.
18221         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
18222         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
18223         `ves_icall_MonoType_get_HasGenericArguments'.
18224         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
18225         `ves_icall_MonoType_get_IsGenericParameter'.
18226         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
18227         this is no interncall anymore.
18228         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
18229         `ves_icall_TypeBuilder_get_IsGenericParameter'.
18230
18231 2003-10-14  Martin Baulig  <martin@ximian.com>
18232
18233         * reflection.c (mono_reflection_bind_generic_parameters): Also
18234         inflate generic methods if we're reading the class from IL.
18235
18236 2003-10-13  Martin Baulig  <martin@ximian.com>
18237
18238         * reflection.c (mono_reflection_define_generic_parameter): This
18239         method isn't called directly from the icall anymore; take a
18240         `MonoReflectionAssemblyBuilder *' so we can use this for type and
18241         method generic parameters.
18242         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
18243         (method_builder_encode_signature): Encode generic parameters.
18244         (mono_image_get_method_info): Write generic params to the
18245         MONO_TABLE_GENERICPARAM table.
18246
18247         * reflection.h (MonoReflectionMethodBuilder): Added
18248         `MonoArray *generic_params'.
18249
18250         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
18251
18252         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
18253         wrapper for mono_reflection_define_generic_parameter().
18254         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
18255
18256 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
18257
18258         * marshal.h: Add missing function to fix build.
18259
18260         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
18261         the SetLastError pinvoke attribute.
18262
18263         * marshal.c (mono_marshal_set_last_error): New helper function called
18264         by the generated code.
18265         
18266         * marshal.c (mono_mb_emit_branch): New helper function.
18267
18268         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
18269
18270         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
18271         classes as parameters and return values of delegates. Fixes #29256. 
18272
18273 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
18274
18275         * locales.c: use gint32 in non HAVE_ICU case
18276
18277 2003-10-11  Martin Baulig  <martin@ximian.com>
18278
18279         * mono-debug.c (mono_debug_add_method): Added a workaround for
18280         bug #48591.
18281
18282 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
18283
18284         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
18285         delegates passed to native code must use the STDCALL calling 
18286         convention. Fixes #35987.
18287
18288 2003-10-10  Martin Baulig  <martin@ximian.com>
18289
18290         * class.c (inflate_generic_type): If we're inflating for a generic
18291         type instance (and not for a generic method), return
18292         MONO_TYPE_MVAR unchanged.
18293
18294 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18295
18296         * string-icalls.c: Join ignores null strings in the source array.
18297         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
18298         * threads.c: GetAvailableTheads is slightly more accurate.
18299
18300 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
18301
18302         * threads.h threads.c : add mono_threads_set_default_stacksize
18303         and pass default to CreateThread calls.
18304
18305 2003-10-09  Dick Porter  <dick@ximian.com>
18306
18307         * icall.c:
18308         * locales.h:
18309         * locales.c: Internal calls for constructing CultureInfo and
18310         related objects from libicu (if its available.)
18311
18312 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
18313
18314         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
18315
18316 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18317
18318         * threadpool.c: added an argument to async_invoke_thread that is the
18319         item to process, pass the MonoAsyncResult to the thread start function
18320         when creating a new thread. This way we don't need to acquire any lock
18321         when we're creating a new thread. Readded a semaphore for faster
18322         response times (instead of that Sleep i added).
18323
18324 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
18325
18326         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
18327         get daylight change dates better on Windows, fix handling
18328         of platforms without tm_gmtoff.
18329
18330 2003-10-06  Martin Baulig  <martin@ximian.com>
18331
18332         * class.c (inflate_generic_method): Renamed to
18333         mono_class_inflate_generic_method() and made public.
18334         (mono_class_init): Don't inflate the generic methods here.
18335         (mono_class_from_generic): Added `gboolean inflate_methods'
18336         argument.  Inflate the methods here.
18337
18338         * loader.c (mono_method_get_param_names): Ignore instances of
18339         generic types for the moment.
18340
18341         * reflection.c (fixup_method): Added support for inflated methods.
18342         (mono_image_create_token): Use mono_image_get_methodref_token()
18343         for inflated methods.
18344         (mono_custom_attrs_from_param): Ignore instances of generic types
18345         for the moment.
18346         (mono_reflection_bind_generic_parameters): New public function.
18347         Moved all the functionality from
18348         ves_icall_Type_BindGenericParameters() here and added support for
18349         dynamic types.
18350         (mono_reflection_define_generic_parameter): Initialize
18351         `klass->methods' here.
18352
18353         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
18354         functionality into mono_reflection_define_generic_parameter().
18355         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
18356         TypeBuilder, return that TypeBuilder.
18357
18358 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18359
18360         * appdomain.c: removed mono_delegate_semaphore.
18361
18362         * threadpool.c:
18363         (mono_thread_pool_add): moved hash table creation inside and the thread 
18364         creation outside of the critical region.
18365         (mono_thread_pool_finish): removed obsolete code.
18366         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
18367         continue or exit the thread depending on the queue.
18368
18369 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
18370
18371         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
18372         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
18373         handle more bool marshalling options
18374
18375 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
18376
18377         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
18378         arrays of structs. Also add a more descriptive error message when
18379         a structure member is marshalled as LPArray.
18380
18381 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
18382
18383         * marshal.c (mono_marshal_get_native_wrapper): Add support for
18384         marshalling arrays of complex types. Fixes #29098. Also remove an
18385         usused and incomplete function.
18386
18387 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
18388
18389         * gc.c: report heap_size - free_bytes as total memory allocated
18390         (bug#49362).
18391
18392 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
18393
18394         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
18395         fix timezone handling problems on Windows.
18396         
18397         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
18398         asserts when the year is outside the range handled by ms the functions.
18399
18400         * class.c (setup_interface_offsets): If the class is an interface,
18401         fill out its interface_offsets slot.
18402
18403 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18404
18405         * threadpool.c: mark threadpool threads as background.
18406
18407 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
18408
18409         * decimal.c - define DECINLINE to nothing if not using GCC
18410
18411 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
18412
18413         * assembly.c: More refcount fixes.
18414
18415 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18416
18417         * string-icalls.c: if we're not trimming, return the same string.
18418         When not splitting, don't create a new string.
18419
18420 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18421
18422         * image.c:
18423         (mono_image_open): increment the ref_count inside the critical section.
18424
18425 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
18426
18427         * image.c (mono_image_open): Fix reference counting bug.
18428
18429 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
18430
18431         * marshal.c (mono_marshal_type_size) struct alignment changed for 
18432         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
18433         64bits. Avoid leak in mono_marshal_get_native_wrapper when
18434         mono_lookup_pinvoke_call throws.        
18435
18436 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
18437
18438         * reflection.c (mono_reflection_parse_type): Fix #49114.
18439
18440         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
18441         temporary workaround for cygwin header problem.
18442
18443         * object.c (mono_object_isinst): Synchronize this with the code
18444         generated by the JIT for casts.
18445
18446 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
18447
18448         * reflection.c (encode_type): Fix #38332.
18449
18450 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
18451
18452         * marshal.c (mono_marshal_method_from_wrapper): New function to return
18453         the original method from the wrapper method.
18454
18455 2003-09-25  Martin Baulig  <martin@ximian.com>
18456
18457         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
18458         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
18459         (ves_icall_Type_get_IsGenericInstance): New interncall.
18460
18461 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
18462
18463         * object.c: fix cast warning in big endian code.
18464
18465 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
18466
18467         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
18468         
18469 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18470
18471         * assembly.c: don't call check_env from mono_assembly_load. It's
18472         already done once in mono_assemblies_init and may cause headaches when
18473         multiple threads are loading assemblies.
18474
18475 2003-09-19  Martin Baulig  <martin@ximian.com>
18476
18477         * reflection.c (mono_reflection_define_generic_parameter): Don't
18478         allocate `klass->methods', set `klass->flags' to
18479         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
18480
18481 2003-09-18  Martin Baulig  <martin@ximian.com>
18482
18483         * class.c (mono_class_init): Don't create `class->methods' if it's
18484         already initialized.
18485
18486         * metadata.c (mono_metadata_load_generic_params): Make this
18487         actually work.
18488
18489         * reflection.c (mono_reflection_define_generic_parameter): Set
18490         parent class and interfaces from the constraints.
18491
18492         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
18493         to keep this struct in sync with the declaration in TypeBuilder.cs.
18494
18495 2003-09-17  Martin Baulig  <martin@ximian.com>
18496
18497         * metadata.h (MonoType): Replaced the data's `int type_param'
18498         field with `MonoGenericParam *generic_param'.
18499         (MonoGenericParam): Added `MonoClass *klass'.
18500
18501         * class.c (mono_class_from_gen_param): Removed the
18502         `MonoImage *image' and `int type_num' arguments.
18503
18504         * metadata.c (mono_metadata_parse_generic_param): New static
18505         method; creates a MonoGenericParam which just contains the index.
18506         (do_mono_metadata_parse_type): Call
18507         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
18508         MONO_TYPE_MVAR.
18509
18510         * reflection.c (mono_image_typedef_or_ref): Generic type
18511         parameters may be in the same assembly, but never use a typedef
18512         for them.
18513         (mono_reflection_define_generic_parameter): We're now creating a
18514         "real" class for the type parameter; it's now safe to call
18515         mono_class_from_mono_type() on the class'es type, it'll do the
18516         right thing.
18517
18518 2003-09-16  Martin Baulig  <martin@ximian.com>
18519
18520         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
18521         `symfile->range_entry_size' and `symfile->class_entry_size' here;
18522         the `symfile' data structure must be fully initialized before it
18523         gets added to the table.
18524
18525 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
18526
18527         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
18528
18529         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
18530         class init trampolines.
18531
18532 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
18533
18534         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
18535         to the built-in profiler to turn off time and allocation profiling
18536         respectively.
18537
18538 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
18539
18540         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
18541         g_direct_equal.
18542
18543         * debug-helpers.c (mono_method_full_name): Print the wrapper type
18544         in human readable form.
18545
18546 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
18547
18548         * reflection.c icall.c: Fixed warnings.
18549
18550         * image.c (load_class_names): Use a temporary hash table to hold the
18551         namespaces in order to avoid doing many string comparisons.
18552
18553         * image.h: Fix typo.
18554
18555         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
18556         Pass NULL instead of g_direct_equal to the GHashTable constructor 
18557         since the NULL case is short-circuited inside g_hash_table_lookup, 
18558         leading to better performance.  
18559
18560         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
18561         obtain the first custom attribute for a given index. Depends on the
18562         CustomAttribute table being sorted by the parent field.
18563
18564         * reflection.c (mono_custom_attrs_from_index): Use the new function 
18565         for better performance.
18566
18567 2003-09-07  Martin Baulig  <martin@ximian.com>
18568
18569         * class.c (mono_class_init): If we're a generic instance, inflate
18570         all our methods instead of loading them from the image.
18571         (mono_class_from_generic): Set `class->methods = gklass->methods'.
18572
18573 2003-09-07  Martin Baulig  <martin@ximian.com>
18574
18575         * mono-debug-debugger.c: Added support for constructors.
18576
18577 2003-09-06  Martin Baulig  <martin@ximian.com>
18578
18579         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
18580         New interncall.
18581
18582         * reflection.c (mono_reflection_setup_generic_class): Call
18583         ensure_runtime_vtable() to create the vtable.
18584
18585 2003-09-05  Martin Baulig  <martin@ximian.com>
18586
18587         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
18588         MONO_TYPE_MVAR.
18589
18590 2003-09-04  Martin Baulig  <martin@ximian.com>
18591
18592         * reflection.c (mono_reflection_define_generic_parameter): Generic
18593         parameters start with zero.
18594
18595 2003-09-04  Martin Baulig  <martin@ximian.com>
18596
18597         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
18598
18599         * reflection.h (MonoReflectionGenericParam): New typedef.
18600         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
18601         the generic parameters from the managed TypeBuilder.
18602
18603         * reflection.c (mono_reflection_define_generic_parameter): New function.
18604         (mono_reflection_create_runtime_class): Encode generic parameters.
18605         (mono_reflection_setup_generic_class): New function; this is
18606         called after adding adding all generic params to the TypeBuilder.
18607         (encode_type): Added MONO_TYPE_VAR.
18608
18609 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
18610
18611         * class.h class.c (mono_class_needs_cctor_run): Moved this method
18612         here from the JIT.
18613
18614         * assembly.h assembly.c: Moved the AOT loading code into an assembly
18615         load hook.
18616
18617 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
18618
18619         * reflection.h reflection.c class.h class.c: Delete duplicate 
18620         definition of mono_type_get_name () from reflection.c and export the
18621         one in class.c.
18622
18623         * class.c: Class loading fixes from Bernie Solomon 
18624         (bernard@ugsolutions.com).
18625
18626         * reflection.c: Endianness fixes from Bernie Solomon 
18627         (bernard@ugsolutions.com).
18628         
18629 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
18630
18631         * assembly.h assembly.c: Define a file format version for AOT
18632         libraries.
18633         
18634         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
18635
18636         * appdomain.h (MonoJitInfo): New field to determine whenever the
18637         code is domain neutral.
18638         
18639 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
18640
18641         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
18642
18643 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
18644
18645         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
18646         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
18647         Avoid caching the result since strings must be domain specific. Fixes
18648         #48050.
18649
18650 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
18651
18652         * marshal.c (mono_marshal_init): Make this callable multiple times
18653         since it is hard to find a correct place to call it.
18654
18655         * object.c (mono_runtime_class_init): Execute static constructors in
18656         the correct appdomain.
18657
18658         * image.c (build_guid_table): Handle the case when multiple images have
18659         the same GUID.
18660
18661 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18662
18663         * icall.c: added a couple of icalls for System.Web.
18664
18665 2003-08-28  Martin Baulig  <martin@ximian.com>
18666
18667         * icall.c (ves_icall_Type_BindGenericParameters): Use
18668         `klass->generic_inst' instead of `&klass->byval_arg' in the
18669         mono_type_get_object() call.  The returned type must be
18670         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
18671
18672 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
18673
18674         * NOTES: New file.
18675
18676         * object.c (mono_class_proxy_vtable): Make it thread safe.
18677
18678         * pedump.c: Fix warning.
18679
18680         * object.c appdomain.h: Get rid of metadata_section. 
18681         It is no longer needed and it was causing deadlocks with domain->lock.
18682
18683         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
18684
18685 2003-08-26  Martin Baulig  <martin@ximian.com>
18686
18687         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
18688
18689 2003-08-26  Martin Baulig  <martin@ximian.com>
18690
18691         * pedump.c (main): Call mono_metadata_init(),
18692         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
18693         and mono_loader_init().
18694
18695 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
18696
18697         * loader.h: Add missing include to fix build.
18698
18699         * image.h: mono_image_load_references is no more.
18700
18701         * assembly.c: Reworked assembly loading to make it really thread safe.
18702         After these changes, the assembly returned by mono_assembly_open is
18703         fully initialized, i.e. all its references assemblies are loaded.
18704
18705         * assembly.c (mono_image_load_references): Renamed to 
18706         mono_assembly_load_references, and made private, since clients no
18707         longer need to call it.
18708
18709         * class.c: Removed calls to mono_assembly_load_references, since it was
18710         a source of deadlocks.
18711
18712         * loader.h loader.c class.h class.c: Protect data structures using a 
18713         new lock, the loader lock.
18714
18715         * class.c (mono_class_setup_vtable): Create temporary hash tables and
18716         GPtrArrays only when needed.
18717
18718         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
18719         into empty structures by mcs. Fixes pinvoke7.cs.
18720         
18721         * domain.c (mono_init): Call a new initialization function.
18722
18723         * appdomain.c (mono_runtime_init): Call the new initializer function
18724         of the marshal module.
18725
18726         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
18727         inserted into empty structures by mcs. Fixes pinvoke7.cs.
18728
18729         * marshal.h marshal.c: Added locks around the wrapper caches to make
18730         this module thread safe.
18731
18732         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
18733         this argument. Fixes pinvoke1.exe.
18734
18735 2003-08-25  Lluis Sanchez <lluis@ximian.com>
18736
18737         * object.h: Added call_type field to MonoMethodMessage and the corresponding
18738         enumeration of values. Removed fields to store remote call output values in
18739         MonoAsyncResult. Not needed any more.
18740         * object.c: Initialize call_type and async_result fields in mono_message_init.
18741         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
18742         dispatching the message.
18743         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
18744         async call to finish. To do it use a message with EndInvoke call type.
18745
18746 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
18747
18748         * loader.h loader.c (mono_method_hash_marhal_info): New function which
18749         determines whenever a method has marshalling info.
18750
18751 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18752
18753         * assembly.c: fix the build on windows.
18754
18755 2003-08-22 Lluis Sanchez <lluis@ximian.com>
18756
18757         * object.cs: Fixed bug #47785.
18758
18759 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
18760
18761         * string-icalls.c (StringReplace): If their are no occurances of
18762         the old string found return a reference to the supplied
18763         string. This saves some memory and matches MS behavoir.
18764         
18765 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18766
18767         * socket-io.c: fixed compilation for systems that define AF_INET6
18768         and don't define SOL_IP/SOL_IPV6.
18769
18770 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
18771
18772         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
18773         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
18774
18775         * rawbuffer.c rawbuffer.h: Make this module thread safe.
18776
18777         * domain.c: Make this module thread safe.
18778
18779         * domain.c (mono_init): Call new initialization function.
18780
18781         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
18782         reference types too. Fixes #38812.
18783
18784         * image.c (mono_image_init): Fixed warnings.
18785
18786         * class.c (mono_class_from_typeref): Handle assembly load failure
18787         correctly.
18788
18789         * appdomain.c (add_assemblies_to_domain): Handle the case when
18790         the references of an assembly are not yet loaded.
18791
18792         * metadata.c image.c assembly.c: Moved initialization of global
18793         variables to a separate function called at startup since lazy 
18794         initialization of these variables is not thread safe.
18795         
18796         * image.c assembly.c: Made this module thread safe by adding locks in 
18797         the appropriate places.
18798
18799         * domain.c (mono_init): Call the new initialization functions of the
18800         three modules.
18801
18802 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
18803
18804         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
18805           make a direct call. It is proxy's work to make the call asynchronous.
18806           mono_delegate_end_invoke(): If the targe is a proxy, just collect
18807           the return values.
18808         * object.cs: mono_method_call_message_new(): read AsyncResult and
18809           state object from parameters list, if this info is requested.
18810         * object.h: Added fields to store remote call output values in
18811           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
18812
18813 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
18814
18815         * object.h: add needed fields to MonoThread.
18816         * threads.c, threads.h: allow registering a function to cleanup data
18817         allocated per thread by the JIT.
18818
18819 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18820
18821         * loader.h: portability fix by Bernie Solomon
18822         * <bernard@ugsolutions.com>.
18823
18824 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
18825
18826         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
18827         return a MonoArray. This simplifies the code and also ensures that
18828         the cache allways contains an object reference as a value.
18829
18830         * icall.c (ves_icall_get_parameter_info): Simplified using the new
18831         function.
18832
18833 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18834
18835         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
18836         fixes a problem with byte ordering when getting the address family for
18837         a socket.
18838
18839 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
18840
18841         * .cvsignore: Added monosn.
18842
18843         * reflection.h reflection.c loader.c: Added support for parameter
18844         marshalling to dynamically created types. Fixes #47295.
18845
18846 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
18847
18848         * rand.c: remove useless warnings.
18849
18850 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
18851
18852         * class.c: implemented ldtoken for methods and fieldrefs.
18853
18854 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18855
18856         * threadpool.c: when mono_async_invoke was called, no one took care of
18857         monitoring the queue. So if the method invoked took some time and we
18858         got new async invoke requests after 500 ms (the thread created waited
18859         that long in WaitForSingleObject), the new async invoke was not called
18860         until the previous one finished.
18861
18862         This is fixed now. Thanks to Totte for helping with it.
18863
18864 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18865
18866         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
18867
18868 2003-08-11  Martin Baulig  <martin@ximian.com>
18869
18870         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
18871
18872 2003-08-06  Martin Baulig  <martin@ximian.com>
18873
18874         * mono-debug-debugger.c: Added support for static fields,
18875         properties and methods.
18876
18877 2003-08-06  Martin Baulig  <martin@ximian.com>
18878
18879         * mono-debug-debugger.c: Don't store the MonoString's vtable to
18880         make this work for applications with multiple application domains.
18881
18882 2003-08-04  Martin Baulig  <martin@ximian.com>
18883
18884         * mono-debug-debugger.c: Completely reworked the type support; the
18885         most important thing is that we're now just using one single
18886         `MonoType' instance per type.
18887
18888 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
18889
18890         * mono-endian.h, mono-endian.c, icall.c: Added icall
18891         ves_icall_System_Double_AssertEndianity to assert double word endianity
18892         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
18893
18894 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
18895
18896         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
18897         support, icalls and fixes.
18898
18899 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
18900
18901         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
18902         classes that are a punctuation character in .NET is not the same a
18903         g_unichar_ispunct.
18904
18905 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18906
18907         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
18908
18909 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
18910
18911         * icall.c: Add new MemCopy internalcall.
18912         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
18913         Simplified code; It is not necessary to handle all the cases here,
18914         as the C# code takes care of it.  Only handle the case of the name
18915         resource embedded into the assembly.
18916
18917         Changed signature to return the data pointer and the size of the
18918         data. 
18919
18920 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
18921
18922         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
18923         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
18924
18925 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
18926
18927         * socket-io.c: ignore EINTR error in select.
18928
18929 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
18930
18931         * class.h, class.c: removed unused subclasses field in MonoClass.
18932
18933 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
18934
18935         * icall.c: improve fix of get_base_definition(). If the parent class
18936           doesn't have the mehod, look at the parent of the parent.
18937         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
18938           to check if a parameter is an in or out parameter
18939           (PARAM_ATTRIBUTE_IN is not set by default).
18940           mono_method_return_message_restore(): Use mono_class_value_size to
18941           get the size of a value type. mono_type_stack_size (parameterType)
18942           does not return the correct value if parameterType is byRef.
18943           mono_load_remote_field(), mono_load_remote_field_new(),
18944           mono_store_remote_field(), mono_store_remote_field_new():
18945           raise exception if the remote call returns an exception.
18946
18947 2003-07-28  Martin Baulig  <martin@ximian.com>
18948
18949         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
18950         method.  This is a wrapper around mono_runtime_invoke() which
18951         boxes the instance object if neccessary.
18952
18953 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
18954
18955         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
18956         metadata.h, row-indexes.h, verify.c: first cut of generics support.
18957
18958 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
18959
18960         * icall.c: disable mcs bug workaround.
18961
18962 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
18963
18964         * object.c (mono_runtime_class_init): Take the metadata_section
18965         mutex before obtaining the domain mutex.
18966
18967         * appdomain.h: Added definition of metadata_section mutex here. 
18968
18969         * object.c: define metadata_mutex here.
18970
18971 2003-07-24  Ravi Pratap  <ravi@ximian.com>
18972
18973         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
18974         fixed.
18975
18976 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
18977
18978         * reflection.c: Fix bug #46669
18979
18980 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18981
18982         * exception.c:
18983         * exception.h:
18984         * icall.c:
18985         * object.h: fill in the type name for TypeLoadException.
18986
18987 2003-07-23  Ravi Pratap  <ravi@ximian.com>
18988
18989         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
18990         relationship between TypeBuilders while compiling corlib) and bug
18991         45993 (Array types returned from the runtime while compiling
18992         corlib were from the loaded corlib).
18993
18994 2003-07-22  Martin Baulig  <martin@ximian.com>
18995
18996         * mono-debug-debugger.c: Reworked the type support a bit more;
18997         distinguish between types and classes.
18998
18999 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
19000
19001         * icall.c: add IsArrayImpl icall.
19002
19003 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
19004
19005         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
19006         initializing real_size only once. Also fix bug #46602.
19007
19008 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
19009
19010         * object.c: Renamed mono_metadata_section to metadata_section.
19011
19012 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
19013
19014         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
19015           empty array if the type is an array. Fixed.
19016           ves_icall_MonoMethod_get_base_definition: if the base method
19017           is abstract, get the MethodInfo from the list of methods of
19018           the class.
19019         * reflection.c: ParameterInfo.PositionImpl should be zero-based
19020           and it was 1-based. Fixed in mono_param_get_objects.
19021
19022 2003-07-20  Martin Baulig  <martin@ximian.com>
19023
19024         * mono-debug.h: Set version number to 31.
19025         (mono_debug_init): Added `MonoDomain *' argument.
19026
19027         * mono-debug-debugger.c: Reworked the type support; explicitly
19028         tell the debugger about builtin types; pass the `klass' address to
19029         the debugger.
19030
19031 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
19032
19033         * image.c: Allow new metadata tables to be loaded without a
19034         warning. Also update the warning message to give the new constant value.
19035                 
19036 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19037
19038         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
19039         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
19040         array type representation changes.
19041
19042 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19043
19044         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
19045         on Environment.Exit () call.
19046
19047 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19048
19049         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
19050         requires a matching corlib.
19051
19052 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
19053
19054         * Changelog: My editor decided to add a CR to each line. Sorry about that.
19055           Committed again without the CRs.
19056         
19057 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
19058
19059         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
19060           getting it from the "this" socket instance. Did not work
19061           if the socket is a subclass of Socket.
19062           Also fixed bug #35371.
19063
19064 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19065
19066         * metadata.c: fixed size for TypedByRef.
19067         * loader.c: when searching for a method, consider the vararg amrker.
19068         * unicode.c, decimal.c: constify some arrays.
19069
19070 2003-07-15  Dick Porter  <dick@ximian.com>
19071
19072         * socket-io.c: Fixed compilation for gcc < 3.2.
19073
19074         Fixed compilation for machines that don't have AF_INET6 (thanks to
19075         Bernie Solomon <bernard@ugsolutions.com> for that part.)
19076
19077         Fixed compile warnings.
19078         
19079         Fixed formatting and line endings.
19080
19081 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
19082
19083         * socket-io.h:
19084         * socket-io.c: Added IPv6 support.
19085
19086 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
19087
19088         * class.c (mono_class_is_assignable_from): New function to implement
19089         the is_assignable_from logic. Used by mono_object_isinst, 
19090         Type::IsAssignableFrom () and the interpreter.
19091
19092         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
19093         Object, even interfaces.
19094         
19095         * object.c (mono_object_isinst): Implement in terms of 
19096         is_assignable_from.
19097
19098         * icall.c (ves_icall_type_is_assignable_from): New icall.
19099
19100 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
19101
19102         * domain.c (foreach_domain): fix compiler warning.
19103
19104 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
19105
19106         * image.c (load_metadata_ptrs): use g_strndup because strndup is
19107         not available on all plattforms
19108
19109 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
19110
19111         * image.h image.c: Store the metadata version string in MonoImage.
19112         * icall.c: New icall to retrieve the image version.
19113         * reflection.c (create_dynamic_image): Fill in the image version field
19114         * reflection.c (build_compressed_metadata): Use the image version
19115         from the image structure.
19116
19117 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19118
19119         * appdomain.c: modified comment.
19120         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
19121         That will be its last iteration when mono_gc_cleanup is called from
19122         mono_runtime_cleanup and before the domain is unloaded.
19123
19124         Fixes bug #45962.
19125
19126 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
19127
19128         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
19129         attributes.
19130
19131 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19132
19133         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
19134         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
19135         Bernie Solomon <bernard@ugsolutions.com>.
19136
19137 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19138
19139         * object.c, object.h: provide mono_object_new_fast() for faster
19140         allocation in some special cases.
19141
19142 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19143
19144         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
19145         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
19146
19147 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19148
19149         * threadpool.c: fix leaks.
19150
19151 2003-07-01  Dick Porter  <dick@ximian.com>
19152
19153         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
19154         using MonoGHashTables.  Fixes threadpool bug posted to list.
19155
19156 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
19157
19158         * image.h, image.c: added support to load an assembly from a byte array.
19159         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
19160         assembly bundle support.
19161
19162 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
19163
19164         * threadpool.c (mono_thread_pool_add): keep a reference to the
19165         AsyncResult to prevent GC
19166
19167 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
19168
19169         * class.c: leak fix.
19170
19171 2003-06-25  Dick Porter  <dick@ximian.com>
19172
19173         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
19174         for the async object, the WaitHandle object will close the handle.
19175         Fixes bug 45321.
19176
19177 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19178
19179         * class.c: in mono_array_class_get (), lookup from the hash with the
19180         same type we insert: this works around a bug in
19181         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
19182         lluis. The real fix will have to wait for after the release.
19183
19184 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19185
19186         * icall.c: fix memory leak when getting type members.
19187
19188 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
19189
19190         * reflection.c: added more pubtoken special cases.
19191
19192 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19193
19194         * class.c: handle field offset correctly when class size
19195         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
19196
19197 2003-06-20  Martin Baulig  <martin@ximian.com>
19198
19199         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
19200         *image' field.
19201
19202 2003-06-20  Martin Baulig  <martin@ximian.com>
19203
19204         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
19205
19206 2003-06-20  Martin Baulig  <martin@ximian.com>
19207
19208         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
19209         just distinguish between variables in registers and variables at
19210         an offset relative to a register.
19211
19212 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19213
19214         * icall.c: #ifdef out latest changes until mcs is fixed.
19215
19216 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19217
19218         * icall.c: return members in metadata order.
19219
19220 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19221
19222         * icall.c: avoid infinite loop in GetTimeZoneData.
19223
19224 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
19225
19226         * icall.c: added Marshal.Prelink/All icalls.
19227
19228 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
19229
19230         * object.c, object.h: fix warnings and do some overflow checking
19231         when creating arrays.
19232
19233 2003-06-17  Dick Porter  <dick@ximian.com>
19234
19235         * file-io.h:
19236         * file-io.c: File attributes need to be tweaked slightly when
19237         passed from the managed to the w32 world.
19238
19239 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19240         * profiler.h profiler-private.h profiler.c: Rework last patch
19241         based on suggestion by Paolo.
19242         
19243 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19244
19245         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
19246         instruction level coverage data collection.
19247         * profiler.h profiler.c (: Added new callback function which can be
19248         used by the profiler to limit which functions should have coverage
19249         instrumentation.
19250         * profiler.c (mono_profiler_load): Call g_module_build_path to
19251         generate the file name of the profiler library.
19252
19253 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19254
19255         * profiler.c, profiler.h, profiler-private.h: added basic block 
19256         coverage profiling API.
19257
19258 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
19259
19260         * reflection.c (mono_reflection_create_runtime_class): Add support
19261         for events in dynamically generated code.
19262
19263         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
19264         not allocated.
19265
19266 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19267
19268         * icall.c: when getting timezone info, return reasonable values if we
19269         can't get the actual data.
19270
19271 2003-06-14  Dick Porter  <dick@ximian.com>
19272
19273         * threads.c (start_wrapper): Remove the reference to the thread
19274         object in the TLS data, so the thread object can be finalized.
19275         This won't be reached if the thread threw an uncaught exception,
19276         so those thread handles will stay referenced :-( (This is due to
19277         missing support for scanning thread-specific data in the Boehm GC
19278         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
19279
19280 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
19281
19282         * reflection.c: ensure streams and tables are first allocated with
19283         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
19284
19285 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19286
19287         * icall.c: fixed GetElementType for byrefs (bug# 44792).
19288
19289 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
19290
19291         * reflection.c (mono_reflection_create_runtime_class): Add support for
19292         properties to dynamically created classes.
19293         * reflection.c: Fix a few places where non-MonoObjects were inserted
19294         into the tokens hashtable.
19295
19296 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19297
19298         * object.c: some support to handle out of memory exceptions.
19299
19300 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
19301
19302         * marshal.c (mono_marshal_get_native_wrapper): support reference
19303         return types
19304
19305 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19306
19307         * object.h, object.c: more portability stuff from Bernie Solomon.
19308         Unexport mono_object_allocate(). Added mono_object_unbox ().
19309         Set exitcode when an unhandled exception is thrown.
19310
19311 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
19312
19313         * marshal.c (mono_marshal_get_native_wrapper): use custom
19314         marshaler for return types.
19315
19316 2003-06-10  Dick Porter  <dick@ximian.com>
19317
19318         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
19319         ip_mreq is available
19320
19321 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
19322
19323         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
19324         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
19325         by Bernie Solomon <bernard@ugsolutions.com>.
19326
19327 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
19328
19329         * gc.c (mono_gc_init): Avoid error message on shutdown when
19330         GC_DONT_GC=1 is used.
19331
19332         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
19333         New icall to return the GUID of a module.
19334
19335 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19336
19337         * class.c: ensure instance size always includes the parent's size
19338         even whem class size is set explicitly (fixes bug#44294).
19339
19340 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19341
19342         * profiler.h, profiler.c: made the simple profiler thread-safe,
19343         get more accurate timing info. Allow the loading of an
19344         externally-developed profiler module.
19345
19346 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
19347
19348         * marshal.c (mono_marshal_get_native_wrapper): improved
19349         class/byref arguments.
19350         (mono_marshal_get_native_wrapper): better string marshaling support.
19351
19352 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
19353
19354         * class.c: ensure .pack and .size are handled correctly and
19355         simplified layout of static fields.
19356
19357 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
19358
19359         * appdomain.c
19360         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
19361
19362         * loader.c (mono_lookup_pinvoke_call): look for modules in the
19363         current directory (fix bug 44008)
19364
19365 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
19366
19367         * marshal.c (mono_marshal_get_native_wrapper): started support for
19368         custom marshalers.
19369         (mono_delegate_to_ftnptr): consider marshalling specifications
19370
19371 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19372
19373         * reflection.c, reflection.h: emit custom marshal info.
19374
19375 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19376
19377         * object.c: free the GError.
19378         * icall.c: added CloseEvent_internal.
19379         * threads.[ch]:
19380         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
19381         call.
19382
19383 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
19384
19385         * loader.c (mono_method_get_signature): Add support for dynamic
19386         assemblies.
19387
19388 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
19389
19390         * reflection.c: fixed bug #43905.
19391
19392 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19393
19394         * class.c, domain.c, icall.c, metadata.h, object.h: support for
19395         handling TypedReference and ArgIterator.
19396         * loader.c, loader.h: added function to get signature at call site.
19397
19398 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19399
19400         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
19401         data readonly. Buglets and warning fixes. Some MethodSpec support.
19402
19403 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19404
19405         * class.h, class.c, object.c: remove relative numbering support.
19406
19407 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
19408
19409         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
19410         free the string, until we get a chance to fix Gtk#
19411
19412 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19413
19414         * marshal.c: revert last patch.
19415
19416 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19417
19418         * icall.c: updates for new mono_class_vtable() not calling
19419         the type constructor anymore.
19420
19421 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
19422
19423         * object.h, object.c: separate vtable creation from type
19424         initialization. Make running the .cctor thread safe.
19425
19426 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
19427
19428         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
19429
19430 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
19431
19432         * loader.c (mono_get_method): consider calling convention
19433
19434 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
19435
19436         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
19437         to return the invisible global type for a module.
19438
19439         * reflection.c (mono_image_build_metadata): Emit global fields too.
19440
19441 2003-05-20  Peter Williams  <peterw@ximian.com>
19442
19443         * loader.c (mono_lookup_internal_call): Add a few newlines.
19444
19445 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
19446
19447         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
19448         literal strings.
19449
19450         * appdomain.c (set_domain_search_path): Recalculate search path when
19451         AppDomainSetup.PrivateBinPath changes.
19452
19453         * object.c (mono_class_compute_gc_descriptor): It turns out some
19454         parts of the class libs (like System.Thread) holds pointers to
19455         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
19456         to treat native int a pointer type here.
19457         
19458 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
19459
19460         * appdomain.h, domain.c: add hashtable for jump target resolution.
19461
19462 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
19463
19464         * reflection.h reflection.c icall.c: Added new icalls 
19465         GetManifestResourceInfoInternal, GetModulesInternal and support
19466         infrastructure.
19467
19468 2003-05-16  Dick Porter  <dick@ximian.com>
19469
19470         * icall.c:
19471         * file-io.h:
19472         * file-io.c: Implement System.IO.MonoIO::GetTempPath
19473
19474 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
19475
19476         * object.c: mono_store_remote_field: little fix to previous patch.
19477
19478 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19479
19480         * class.c: add constructors to array classes.
19481         * icall.c: special case array construction for InternalInvoke (),
19482
19483 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
19484
19485         * class.h class.c reflection.c object.c: Added support for field
19486         defaults in dynamically generated classes.
19487
19488 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19489
19490         * reflection.c: properly encode charset for ddlimport.
19491
19492 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
19493
19494         * threads.c: allow compiling without GC.
19495
19496 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19497
19498         * appdomain.h, object.c, object.h, threads.c, threads.h: added
19499         handling of thread static data.
19500
19501 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19502
19503         * reflection.h, reflection.c: added mono_custom_attrs_free ().
19504
19505 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
19506
19507         * class.c (mono_array_class_get): always set the serializable flags
19508         (mono_array_class_get): always set the SEALED attribute for array types
19509
19510 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
19511
19512         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
19513         attributes (fix for bug 42021).
19514
19515 2003-05-12  Dick Porter  <dick@ximian.com>
19516
19517         * gc.c: Don't run finalizers when the finalizer thread is
19518         finishing up, because the default domain has already been
19519         destroyed.
19520
19521 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
19522
19523         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
19524         value is null, we should throw an exception.   This is slightly
19525         different than the other conventions used for the constructor.
19526
19527 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19528
19529         * socket-io.c: fixed windows build.
19530
19531 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19532
19533         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
19534
19535 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
19536
19537         * object.c (mono_string_new_wrapper): Compatibility fix for MS
19538         compilers.
19539
19540 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
19541
19542         * class.c (mono_class_layout_fields): Add experimental GC aware
19543         auto layout facility. Requires class library changes to work correctly.
19544
19545         (mono_class_setup_vtable): Avoid overriding explicit interface
19546         method implementations. Fixes iface3.exe test.
19547
19548         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
19549         object reference.
19550         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
19551         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
19552
19553         * metadata.h: Add new type classification macro which determines
19554         whenever the type holds an object reference.
19555
19556 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
19557
19558         * marshal.c (mono_marshal_get_native_wrapper): cleanups
19559
19560 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
19561
19562         * gc.c (finalizer_thread): Work around a GC bug.
19563
19564 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
19565
19566         * marshal.c (emit_struct_conv): allow unions
19567
19568         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
19569
19570 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
19571
19572         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
19573
19574 2003-05-06  Martin Baulig  <martin@ximian.com>
19575
19576         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
19577
19578 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19579
19580         * socket-io.c:
19581         (Select_internal): allow NULLs, don't create arrays if not needed.
19582         Coupled with Socket.cs changes.
19583
19584         * threadpool.c:
19585         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
19586         register a finalizer for it that will close the semaphore handle. This
19587         fixes the leak and make Lupus' test run with > 4080 loops.
19588
19589 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
19590
19591         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
19592         Jerome Laban (bug #42287)
19593
19594 2003-05-02  Martin Baulig  <martin@ximian.com>
19595
19596         * debug-mono-symfile.h
19597         (MonoSymbolFile): Moved declaration into mono-debug.h.
19598         (MonoDebugMethodJitInfo): Likewise.
19599         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
19600         argument.
19601         (_mono_debug_address_from_il_offset): Take a
19602         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
19603
19604         * mono-debug.h
19605         (MonoDebugDomainData): New struct.
19606         (mono_debug_get_domain_data): New function.
19607         (mono_debug_add_method): Take an additional `MonoDomain *'
19608         argument.
19609         (mono_debug_source_location_from_address): Likewise.
19610         (mono_debug_il_offset_from_address): Likewise.
19611         (mono_debug_address_from_il_offset): Likewise.
19612
19613 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
19614
19615         * reflection.c: one more check for null type in custom attrs.
19616
19617 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19618
19619         * reflection.c: avoid warning (comparison is always false due to limited
19620         range of data type).
19621
19622 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19623
19624         * icall.c: throw an exception in Type.GetField if the argument 'name'
19625         is NULL.
19626
19627 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
19628
19629         * reflection.c: fixed handling of enums in named arguments to custom
19630         attributes (bug #42123).
19631
19632 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19633
19634         * reflection.c: use the right array element type and handle
19635         a null for a Type argument, too.
19636
19637 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
19638
19639         * reflection.c: handle arrays as arguments to custom attributes.
19640
19641 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
19642
19643         * reflection.c: handle a string value in a custom attr
19644         ctor that takes an object.
19645
19646 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
19647
19648         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
19649         (fix bug #42063)
19650
19651 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
19652
19653         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
19654
19655 2003-04-27  Martin Baulig  <martin@ximian.com>
19656
19657         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
19658         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
19659         MONO_DEBUGGER_EVENT_BREAKPOINT.
19660         (mono_breakpoint_trampoline_code): Removed.
19661         (mono_debugger_event_handler): The last argument is now a
19662         `guint32'.
19663         (mono_debugger_insert_breakpoint_full): Removed the
19664         `use_trampoline' argument.
19665         (mono_debugger_method_has_breakpoint): Likewise.
19666         (mono_debugger_trampoline_breakpoint_callback): Renamed to
19667         mono_debugger_breakpoint_callback(); take the method and
19668         breakpoint number as arguments.
19669
19670 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19671
19672         * metadata.c: fix off by one when loading parameters attributes.
19673
19674 2003-04-24  Martin Baulig  <martin@ximian.com>
19675
19676         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
19677
19678 2003-04-24  Martin Baulig  <martin@ximian.com>
19679
19680         * mono-debug-debugger.c: Moved all code which interacts with the
19681         Mono Debugger here.
19682
19683         * debug-mono-symfile.c: This code now just deals with the symbol
19684         file itself, the debugger code is now in mono-debug-debugger.c.
19685
19686 2003-04-23  Martin Baulig  <martin@ximian.com>
19687
19688         * mono-debug.c (mono_debug_source_location_from_il_offset):
19689         New method; like mono_debug_source_location_from_address(), but
19690         takes an IL offset instead of a machine address.
19691
19692 2003-04-23  Martin Baulig  <martin@ximian.com>
19693
19694         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
19695         `line' field; this is now computed by the debugger.
19696
19697 2003-04-23  Martin Baulig  <martin@ximian.com>
19698
19699         * mono-debug.[ch]: New files.  This is the new debugging interface.
19700
19701         * mono-debug-debugger.[ch]: New files.  Moved all code which
19702         interacts with the Mono Debugger here.
19703
19704 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
19705
19706         * domain.c (mono_init): initialize mono_defaults.monitor_class
19707
19708 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
19709
19710         * reflection.c (method_encode_code): Add a spicy exception to help
19711         future compiler authors.
19712
19713 2003-04-21  Martin Baulig  <martin@ximian.com>
19714
19715         * icall.c
19716         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
19717         Make this work with relative pathnames; g_filename_to_uri() needs
19718         an absolute filename.
19719
19720 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
19721
19722         * icall.c: Track name changes in Object and ValueType.
19723
19724 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
19725
19726         * metadata.c (mono_type_stack_size): size should be a multiple of
19727         sizeof (gpointer)
19728
19729 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19730
19731         * gc.c:
19732         (internal_domain_finalize): moved into mono_domain_finalize. No need
19733         to create another thread because the finalizers will be run in the
19734         finalizer thread.
19735         
19736         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
19737         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
19738         to be run (MS does this too).
19739
19740 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
19741
19742         * object.c (mono_class_compute_gc_descriptor): Update comment.
19743
19744         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
19745
19746         * image.h: Add synchronized wrapper cache.
19747
19748         * image.c (do_mono_image_open): Initialize cache.
19749
19750         * reflection.c (create_dynamic_mono_image): Initialize cache.
19751
19752 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19753
19754         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
19755         ves_icall_System_Buffer_ByteLengthInternal.
19756
19757 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19758
19759         * reflection.c: setup klass->nested_in earlier. Allow
19760         a dash in the assembly name.
19761
19762 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
19763
19764         * metadata.c (mono_type_to_unmanaged): dont access
19765         type->data.klass for MONO_TYPE_OBJECT
19766         (mono_type_to_unmanaged): consider System.Delegate class
19767
19768 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
19769
19770         * class.c: just setup supertypes in the proper place instead of
19771         initializing the full element class for arrays.
19772
19773 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
19774
19775         * class.c: ensure the element class of arrays is initialized.
19776         Setup the supertype info for array classes, too.
19777
19778 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
19779
19780         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
19781
19782 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19783
19784         * Makefile.am: re-added -m option when running cygpath. This way,
19785         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
19786         separator.
19787         * mono-config.c: same codepath for locating mono config file for WIN32
19788         and the rest.
19789         * assembly.c: if mono_assembly_setrootdir is called, don't override
19790         the value set.
19791
19792 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19793
19794         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
19795         MONO_ASSEMBLIES variable.
19796
19797 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
19798
19799         * icall.c: added Assembly::GetNamespaces() icall.
19800
19801 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19802
19803         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
19804
19805 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
19806
19807         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
19808         * object.c: fixed bug in the construction of vtable for proxies
19809
19810 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
19811
19812         * object.c (mono_array_new): Mark mono_array_new as an icall.
19813
19814 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19815
19816         * class.c: fixed test for public method when overriding interfaces.
19817         Closes bug #40970.
19818
19819 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19820
19821         * appdomain.h, domain.c: added mono_domain_foreach() to
19822         be able to access the currently loaded appdomains.
19823         * object.c: make string interning work across sppdomains.
19824         Mark some functions for use as icalls.
19825
19826 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
19827
19828         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
19829
19830         * reflection.h reflection.c: Allocate long living data using 
19831         GC_MALLOC_ATOMIC so the collector does not need to scan it.
19832
19833         * reflection.c: Double the allocation size in streams instead of
19834         increasing it, to prevent unneccesary copying on large assemblies.
19835         
19836         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
19837         creation if the assembly does not have the Run flag set.
19838
19839 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19840
19841         * class.h: avoid the C++ keywords in header files (Jerome Laban
19842         spotted and fixed this).
19843
19844 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19845
19846         * object.c:
19847         (mono_unhandled_exception): fill in the arguments for the
19848         UnhandledException event. Only trigger that event for the default
19849         domain (as MS does).
19850
19851 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
19852
19853         * object.c: Improve typed allocation stuff based on suggestions from
19854         Paolo. Also turn it on if the GC library supports it.
19855
19856 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
19857
19858         * object.c object.h class.h: Added experimental typed allocation
19859         facility using the interfaces in gc_gcj.h.
19860
19861         * os/gc_wrapper.h: Added new include files.
19862         
19863 2003-04-03  Martin Baulig  <martin@ximian.com>
19864
19865         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
19866         which is not yet enabled by default.
19867
19868         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
19869         functions.
19870         (mono_gc_lock, mono_gc_unlock): New static functions.
19871
19872         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
19873         functions; stop/start the world for the garbage collector.  This
19874         is using the windows API; we need to complete the SuspendThread()/
19875         ResumeThread() implementation in the io-layer to make this work on Unix.
19876         (mono_gc_push_all_stacks): New public function; tells the garbage
19877         collector about the stack pointers from all managed threads.
19878
19879 2003-04-03  Martin Baulig  <martin@ximian.com>
19880
19881         * object.h (MonoThread): Added `gpointer stack_ptr'.
19882
19883         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
19884
19885 2003-04-03  Martin Baulig  <martin@ximian.com>
19886
19887         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
19888
19889 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
19890
19891         * reflection.c (typebuilder_setup_fields): Initialize field.first and
19892         field.last.
19893
19894 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
19895
19896         * loader.c (mono_lookup_internal_call): Report the corlib that is
19897         out of sync.
19898
19899 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
19900
19901         * icall.c (ves_icall_type_GetTypeCode): fixed check for
19902         System.DBNull (it's class not valuetype).
19903
19904 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
19905
19906         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
19907         if the array method was already assigned a token (fixes bug#40646).
19908
19909 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
19910
19911         * reflection.c (mono_reflection_get_type): Attempt type resolve even
19912         if no assembly is given.
19913
19914 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
19915
19916         * metadata.h: Added the new tables.
19917
19918         * row-indexes.h: Added definitions for new tables.
19919
19920         * metadata.c: Add schemas for new tables, and add support for
19921         computing the sizes of them.
19922
19923         * class.c: Update for handling the new type cases.
19924
19925 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
19926
19927         * metadata.h (MONO_TYPE_IS_VOID): new macro
19928
19929 2003-03-31  Martin Baulig  <martin@ximian.com>
19930
19931         * threads.h (MonoThreadCallbacks): Added `thread_created'.
19932
19933         * threads.c (mono_thread_new_init): Call `thread_created' in the
19934         mono_thread_callbacks.
19935
19936 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
19937
19938         * loader.h: added marshalbyrefobject_class to mono_defaults
19939         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
19940         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
19941           generation of output parameters.
19942           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
19943         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
19944           contextbound and the target object belongs to the context of the caller.
19945         * object.h: added context and unwrapped_server variables in MonoRealProxy.
19946         * object.c: Implemented support for interfaces and abstract classes
19947           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
19948           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
19949
19950 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
19951
19952         * class.h class.c (mono_class_is_subclass_of): New function.
19953         
19954         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
19955         routines for most common case (calls from ArrayList::ToArray).
19956
19957         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
19958         routine so programs which call Environment::Exit() can be profiled.
19959
19960         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
19961         Added MONO_ARCH_SAVE_REGS.
19962
19963         * icall.c (ves_icall_type_is_subtype_of): Use new function.
19964
19965 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
19966
19967         * blob.h: Add a couple of new MonoType types definitions.
19968
19969         * tabledefs.h: Add a couple of new call convs.
19970
19971 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
19972
19973         * reflection.h (MonoReflectionDynamicAssembly): track changes in
19974         the layout of the class.
19975
19976         * reflection.c (alloc_table): double the size on overflow to avoid
19977         unnecessary copying.
19978
19979         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
19980         avoid filling out metadata tables and blobs. Also set mb->ilgen to
19981         null so it can be garbage collected.
19982         
19983 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
19984
19985         * reflection.c (mono_reflection_get_type): Return the resolved type
19986         only if it is in the assembly we searched.
19987
19988         * reflection.c (ensure_runtime_vtable): Initialize method slots.
19989
19990         * class.c (mono_class_setup_vtable): Set the slot of the overriding
19991         method.
19992
19993 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19994
19995         * appdomain.c:
19996         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
19997         the right one is 'file:///blah', but MS allows it.
19998         * assembly.c:
19999         (mono_assembly_open): allow 'file://blah'
20000
20001         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
20002
20003 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
20004
20005         * socket-io.c: fixes bug #40310.
20006
20007 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
20008
20009         * reflection.c (mono_reflection_parse_type): handle deeply nested
20010         types correctly.
20011
20012         * reflection.c (mono_image_create_token): Use unique token values
20013         since they will be put into a hash table.
20014
20015         * class.c (mono_class_setup_vtable): If a method occurs in more than
20016         one place in the vtable, and it gets overriden, then change the
20017         other occurances too.
20018
20019         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
20020         object as return type.
20021
20022 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20023
20024         * icall.c: Deleted "ToString" implementation for double and float
20025         because they are full implemented in managed code.
20026
20027 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20028
20029         * reflection.c, reflection.h: implemented and exported functions
20030         to retrieve info about custom attributes.
20031
20032 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20033
20034         * appdomain.c: moved Uri handling to assembly.c
20035         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
20036         work when using a file Uri in *nix and windows.
20037
20038         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
20039         GetReferencedAssemblies.
20040
20041 2003-03-18  Dick Porter  <dick@ximian.com>
20042
20043         * icall.c: Rename a couple of internal calls
20044
20045         * threads.c: Set the thread state to Stopped when a thread exits.
20046         Fixes bug 39377.
20047
20048 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
20049
20050         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
20051         New icall.
20052
20053         * object.c (mono_class_vtable): fix warning.
20054
20055 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
20056
20057         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
20058
20059         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
20060         memory.
20061         (method_encode_clauses): Create exception info structures in the right
20062         order.
20063         (mono_reflection_setup_internal_class): Initialize supertypes field.
20064
20065         * class.c object.c: Handle interfaces which implement other interfaces 
20066         correctly.
20067
20068         * class.h class.c: Move the supertypes array initialization code into 
20069         a separate function so it can be used for dynamic types too. Also call
20070         it earlier, in mono_class_init(), since it can be used before the
20071         type is initialized.
20072
20073 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20074
20075         * Makefile.am:
20076         * assembly.c:
20077         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
20078
20079         * appdomain.c:
20080         * appdomain.h:
20081         * marshal.c:
20082         * object.c: remove warnings.
20083
20084 2003-03-13  Martin Baulig  <martin@ximian.com>
20085
20086         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
20087         (MonoDebugLexicalBlockEntry): New types.
20088
20089         * debug-mono-symfile.c
20090         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
20091
20092 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20093
20094         * process.c: ret can be any non-zero value accroding to MS doc.
20095
20096 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
20097
20098         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
20099         fixing a warning for a miss-used prototype, would have cause
20100         random memory corruption.
20101
20102 2003-03-07  Martin Baulig  <martin@ximian.com>
20103
20104         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
20105         getting really annoying ....
20106
20107 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
20108
20109         * reflection.c (fixup_method): added support for array methods.
20110
20111 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
20112
20113         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
20114         (pointed out by Michael Adams).
20115
20116 2003-03-04  Dick Porter  <dick@ximian.com>
20117
20118         * icall.c: Temporarily reverted the Double and Single ToString()
20119         change, because it broke nunit.
20120
20121 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
20122
20123         * object.h, threads.h: make include files compatible with C++
20124         (patch by Jerome Laban <jlaban@wanadoo.fr>).
20125
20126 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20127
20128         * icall.c: Erased ToString helper functions for Double and Single.
20129         Now, that implementations ar all in managed code (Double and Single
20130         Formatters).
20131
20132 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
20133
20134         * appdomain.c: Added method for initializing the default context of
20135         a domain. Added internal call for getting the default context.
20136         * appdomain.h: Added context variable in MonoDomain struct.
20137         * domain.c: mono_domain_set also sets the default context of the domain
20138         * icall.c: Mapped internal method InternalGetDefaultContext.
20139         * object.c: mono_object_get_virtual_method returns always a remoting
20140         wrapper if the object is a transparent proxy.
20141         mono_runtime_invoke_array: when creating an object by calling the
20142         constructor, if the created object is a proxy, then the constructor should
20143         be called using the a remoting wrapper.
20144
20145 2003-03-03  Dick Porter  <dick@ximian.com>
20146
20147         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
20148         variable so it compiles on solaris.  Problem spotted by
20149         Christopher Taylor <ct@cs.clemson.edu>
20150
20151 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20152
20153         * appdomain.c:
20154         (get_info_from_assembly_name): don't leak value.
20155
20156         * icall.c:
20157         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
20158         result.
20159
20160 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
20161
20162         * assembly.c: export mono_image_load_references ().
20163         * class.c: handle function pointers. mono_class_from_name() now
20164         supports nested type names directly.
20165
20166 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
20167
20168         * reflection.h reflection.c: Encode already created dynamic methods 
20169         and fields correctly as a DEF instead of a REF.
20170
20171         * reflection.c: Get rid of the force_ref argument to 
20172         mono_image_typedef_or_ref since it was wrong in the first place.
20173
20174         * string-icalls.c: add error checking to string constructors according
20175         to the MSDN docs.
20176
20177         * reflection.c: Emit types in the order their TypeBuilders were 
20178         created. Previously, a new table index was assigned to each type before
20179         the tables were emitted. This was wrong because the signature blob
20180         might already refer to a type by its original table index.
20181
20182 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
20183
20184         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
20185         change.
20186         
20187 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20188
20189         * Makefile.am: make assemblies dir have \ instead of / on windows.
20190
20191 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
20192
20193         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
20194         iterate over the NESTEDCLASS table using a linear search since the
20195         table is not guaranteed to be sorted by the secondary key.
20196
20197         * class.c (mono_class_create_from_typedef): fixed up call to
20198         mono_metadata_nesting_typedef.
20199         
20200 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
20201
20202         * marshal.c (mono_string_to_byvalstr): clear the memory as
20203         suggested by Jerome Laban <jlaban@wanadoo.fr>
20204
20205 2003-02-26  Dick Porter  <dick@ximian.com>
20206
20207         * process.c: Cope with padding in .rsrc blocks
20208
20209 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
20210
20211         * metadata.h: reverted the filter_len change, it breaks reflection
20212         
20213 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
20214
20215         * metadata.h: added a new field to store the filter_len
20216         
20217
20218 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
20219
20220         * reflection.c: handle custom attributes for types and members
20221         created with Reflection.Emit (bug#38422).
20222
20223 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
20224
20225         * reflection.c: define RTSpecialName automatically for constructors for
20226         compatibility with MS.NET.
20227
20228         * reflection.c (mono_reflection_create_runtime_class): initialize
20229         nested_in field of dynamically created classes.
20230
20231 2003-02-22  Martin Baulig  <martin@ximian.com>
20232
20233         * debug-mono-symfile.h: Incremented version number.
20234
20235 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
20236
20237         * object.h icall.c process.c: fix warnings.
20238
20239 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
20240
20241         * appdomain.h appdomain.c:
20242         (mono_domain_try_type_resolve): split the 
20243         name_or_tb argument into a name and a tb argument.
20244         (mono_domain_has_type_resolve): new function to check whenever the
20245         application has registered a TypeResolve event handler.
20246         
20247         * icall.c reflection.h reflection.c: move the type resolve logic into
20248         mono_reflection_get_type () so it will be invoked when 
20249         Assembly::GetType () is called.
20250
20251         * reflection.c:
20252         (mono_reflection_get_type): renamed to get_type_internal.
20253         (mono_reflection_get_type): fixed type name generation so it works 
20254         for nested types too.
20255         (mono_reflection_get_type): call has_type_resolve () to avoid the 
20256         costly type name generation if there is no resolve event handler.
20257
20258 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20259
20260         * class.c, image.c: load exported types from file references.
20261
20262 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
20263
20264         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
20265           used to cache the managed methods used to create proxies and make 
20266           remote invocation of methods.
20267         * class.h: Added in MonoVTable a flag to indicate that a class needs 
20268           to be remotely created.
20269         * object.c: Modified the method mono_class_vtable(). It now initializes 
20270           the remote flag of the vtable. Modified mono_object_new_specific(), 
20271           so now it checks the remote flag.
20272         * icall.c: Added a couple of internal methods, one for enabling instance 
20273           creation interception for a type, and one for creating objects bypassing
20274           the remote check.
20275
20276 2003-02-18  Martin Baulig  <martin@ximian.com>
20277
20278         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
20279         New interncall to get a method's metadata token.
20280
20281         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
20282         New interncall for the debugger.
20283
20284 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
20285
20286         * class.c (mono_class_setup_vtable): allocate supertype array
20287
20288 2003-02-18  Martin Baulig  <martin@ximian.com>
20289
20290         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
20291
20292 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20293
20294         * reflection.c:
20295         (assembly_name_to_aname): jump over unknown properties (i've found
20296         something like: 'type, assembly, version=xxx, custom=null, public...',
20297         so now will ignore custom=null and still get the rest of the values).
20298
20299 2003-02-17  Dick Porter  <dick@ximian.com>
20300
20301         * threads.c: Have Thread.Start() wait for a semaphore to signal
20302         that the thread has set up all its local data.  This fixes bug
20303         34323, where Abort() raced the new thread's TLS data.
20304
20305         Also removes the handle_store() call from start_wrapper, because
20306         threads are now always created suspended and there is no longer a
20307         race between the parent and child threads to store the info.
20308
20309 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
20310
20311         * image.c: explain the #- heap issue in a message, hopefully
20312         avoiding FAQs on mono-list.
20313
20314 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20315
20316         * icall.c:
20317         (GetEntryAssembly): if the domain has not invoked
20318         AppDomain.ExecuteAssembly yet, return the assembly of the default
20319         AppDomain.
20320
20321 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
20322
20323         * class.c (mono_ldtoken): make it work in dynamic assemblies.
20324
20325 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
20326
20327         * metadata.c, reflection.c: simple speedup to type hash
20328         and equals code.
20329
20330 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
20331
20332         * image.c, image.h, class.c, assembly.c: move module loading
20333         to MonoImage. When loading metadata, consider alignemnet from
20334         the start of metadata, not from the metadata address in memory.
20335
20336 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
20337
20338         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
20339         AssemblyBuilder objects. Factored out custom attribute creation into
20340         a separate function.
20341         (create_custom_attr): new function to create custom attributes.
20342
20343 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
20344
20345         * Makefile.am: Got tired of typing the full pathname to pedump.
20346         Until there is another option, am installing this.
20347
20348 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
20349
20350         * class.c (class_compute_field_layout): always set field->parent 
20351         (mono_ldtoken): use mono_defaults.fieldhandle_class;
20352
20353 2003-02-11  Dick Porter  <dick@ximian.com>
20354
20355         * threads-types.h:
20356         * monitor.c: Rewrote Monitor, making lock much faster and
20357         Pulse/Wait work as specified.  Also uses much fewer handles, and only
20358         creates them as needed.
20359
20360         * exception.c: Added SynchronizationLockException
20361
20362         * threads.c: Deleted old Monitor implementation.  The new one is
20363         in a new file.
20364
20365 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
20366
20367         * class.c: handled TypedReference type code. Set the correct size for
20368         class data. Setup interface_offsets for interface classes, too.
20369
20370 2003-02-09  Martin Baulig  <martin@ximian.com>
20371
20372         * debug-mono-symfile.h: Reflect latest symbol writer changes.
20373
20374 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
20375
20376         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
20377         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
20378         * object.c: fixed mono_object_get_virtual_method () for interfaces.
20379         * verify.c: check for code that runs after the end of the method.
20380
20381 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20382
20383         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
20384         "System.Math::Round2".
20385         * sysmath.h: Added Floor, Round and Round2 definitions.
20386         * sysmath.c: Modified certain functions that were not 100% compliant
20387         with MS.NET (math precision) and added the implementation of Floor,
20388         Round and Round2.
20389
20390 2003-02-07  Martin Baulig  <martin@ximian.com>
20391
20392         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
20393
20394 2003-02-07  Martin Baulig  <martin@ximian.com>
20395
20396         * debug-mono-symfile.c: Reflected latest symwriter changes.
20397         (mono_debug_create_mono_symbol_file): Removed.
20398         (mono_debug_open_mono_symbol_file): Take an argument which
20399         specifies whether to create a dynamic symbol file.
20400
20401 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
20402
20403         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
20404
20405 2003-02-05  Martin Baulig  <martin@ximian.com>
20406
20407         * reflection.c (mono_image_build_metadata): Make this public,
20408         protect it against being called multiple times, don't create
20409         resources and don't build the compressed metadata here.
20410         (mono_image_create_pefile): Do this here.
20411
20412         * icall.c
20413         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
20414
20415 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20416
20417         * socket-io.c: fixed bug #36322.
20418
20419 2003-02-06  Piers Haken <piersh@friskit.com>
20420
20421         * appdomain.[ch]:
20422         * class.h:
20423         * debug-mono-symfile.c:
20424         * icall.c:
20425         * loader.c:
20426         * mono-config.c:
20427         * monosn.c:
20428         * reflection.c:
20429         * socket-io.c: warning cleanups
20430
20431 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
20432
20433         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
20434         function. works like remoting invoke, but does a check for the Proxy first.
20435
20436 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
20437
20438         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
20439
20440 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
20441
20442         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
20443         array of pointers.
20444         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
20445         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
20446
20447         * object.c (mono_store_remote_field_new): used by the new jit
20448         instead of mono_store_remote_field
20449         (mono_load_remote_field_new): used by the new jit
20450         instead of mono_load_remote_field
20451
20452 2003-02-05  Patrik Torstensson
20453
20454         * appdomain.c: changed unload to take the domain id instead
20455         of domain
20456         
20457         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
20458
20459
20460 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20461
20462         * appdomain.c: don't look for assemblies in ApplicationBase if
20463         PrivateBinPathProbe is set.
20464
20465 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20466
20467         * object.c: make the first argument in main_args contain the absolute
20468         path to the assembly. Fixes bug #37511.
20469
20470 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20471
20472         * icall.c: get correct UTC offset for countries not using daylight
20473         time saving. Fixes bug #30030.
20474
20475 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20476
20477         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
20478         and 1 are the family).
20479
20480 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
20481
20482         * icall.c (ves_icall_InternalExecute): removed wrong assertion
20483
20484         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
20485
20486 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
20487
20488         * reflection.c: added support for SignatureHelper tokens, which is
20489         needed by the Calli opcode.
20490
20491         * reflection.h: track changes to SignatureHelper class.
20492
20493         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
20494
20495 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20496
20497         * appdomain.c: fixed loading assemblies from PrivateBinPath.
20498
20499 2003-02-03  Patrik Torstensson
20500         * appdomain.[c|h], domain.c : 
20501          - Added support for getting a domain via domain id
20502          - Support for setting and getting domain from System.AppDomain 
20503            (used in cross appdomain channel)
20504          - Added support for get/set for a MonoAppContext on a thread 
20505            (Context class in System.Runtime.Remoting.Contexts),
20506          - Removed hack in Get/SetData and ExecuteAssembly.
20507         
20508         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
20509         the managed world to get control when a proxy is created.
20510
20511         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
20512         
20513 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
20514
20515         * icall.c
20516         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
20517         Populate the codebase field as well.
20518
20519 2003-02-02  Martin Baulig  <martin@ximian.com>
20520
20521         * debug-mono-symfile.c
20522         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
20523         (mono_debug_symfile_add_method): Allow interncalls.
20524
20525 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20526
20527         * icall.c: throw parse exception if strtod fails or the string is empty.
20528
20529 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
20530
20531         * marshal.c: handle object type separately from defined
20532         class types.
20533
20534 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
20535
20536         * marshal.c: handle NATIVE_LPSTR for strings when it's
20537         explicitly specified.
20538
20539 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
20540
20541         * reflection.c, reflection.h, icall.c: setup the reflection
20542         handle cache for ModuleBuilders and AssemblyBuilders.
20543
20544 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
20545
20546         * reflection.c (reflection_methodbuilder_to_mono_method): set
20547         pinvoke flag
20548
20549 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20550
20551         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
20552
20553 2003-01-29  Dick Porter  <dick@ximian.com>
20554
20555         * threads.c: No need for the fake_thread kludge now that Thread
20556         doesn't run a class constructor
20557         
20558 2003-01-29  Dick Porter  <dick@ximian.com>
20559
20560         * threads.c: Use g_direct_hash instead of the rather bogus
20561         g_int_hash
20562
20563 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
20564
20565         * marshal.c (mono_marshal_get_native_wrapper): add check for null
20566         (fix pinvoke12.exe)
20567         (mono_marshal_get_struct_to_ptr): generate valid IL code
20568         (mono_marshal_get_ptr_to_struct): generate valid IL code
20569         (*): correctly set sig->pinvoke, we need to memdup the signature
20570         to do that
20571
20572 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20573
20574         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
20575         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
20576
20577 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
20578
20579         * profiler.c: provide more callers information.
20580
20581 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
20582
20583         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
20584
20585         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
20586
20587         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
20588
20589 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20590
20591         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
20592         exception instead of going into an infinite loop on dates which it 
20593         can't yet handle.
20594
20595         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
20596         out-of-range exception if needed.
20597
20598         * class.c (mono_class_setup_vtable): allow a virtual method to provide
20599         an implementation for an interface method and to override an inherited
20600         method at the same time. 
20601         Imagine a scenario when a virtual method is used to override a
20602         virtual abstract method in a parent class, and this same method 
20603         provides an implementation for an method inherited from an interface. 
20604         In this case, the interface resolution code will set im->slot, which 
20605         means that the virtual method override pass will skip this method 
20606         which means a pointer to the abstract method inherited from the parent
20607         will remain in the vtable of this non-abstract class.
20608
20609         * class.c: (mono_class_setup_vtable): continue search for a real 
20610         method if only an abstract method is found.     
20611
20612 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
20613
20614         * reflection.c: add size to encoding for ByValStr and ByValArray
20615         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
20616
20617 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20618
20619         * class.c (mono_class_setup_vtable): pass the override info as an
20620         argument.
20621
20622         * class.c (mono_class_setup_vtable): set the slot of overriding methods
20623         correctly.
20624         
20625         * reflection.c (ensure_runtime_vtable); add support for method 
20626         overrides.
20627         
20628 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20629
20630         * reflection.c (resolution_scope_from_image): Hack to work to work with
20631         dynamic assemblies.
20632
20633         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
20634         added a 'force_ref' argument to force this function to allways return 
20635         a TypeRef. This is needed by mono_image_get_memberref_token ().
20636         
20637 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20638
20639         * reflection.c (mono_image_get_type_info): interfaces really don't have
20640         a parent.
20641
20642         * reflection.c (mono_image_basic_init): fill out missing fields of
20643         image structure.
20644
20645         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
20646         dynamic assemblies. This is required so dynamic assemblies show up in
20647         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
20648         Type::GetType() etc. This is consistent with MS behaviour.
20649
20650         * image.c image.h reflection.c: add newly created classes to the name 
20651         cache so mono_class_get () will find them.      
20652
20653 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
20654
20655         First part of changes to get IKVM.NET running under mono.
20656         
20657         * appdomain.h, appdomain.c: added new function 
20658         mono_domain_try_type_resolve() which will emit TypeResolve events. 
20659         This function will call AppDomain::DoTypeResolve to do the actual work.
20660
20661         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
20662         moved existing code dealing with dynamic tokens to a new function 
20663         called mono_reflection_lookup_dynamic_token (). This function will 
20664         raise TypeResolve events when appropriate. Since reflection.c is not 
20665         part of libmetadata, a new hook function called 
20666         mono_lookup_dynamic_token() is added to class.c which will call this.
20667
20668         * assembly.h assembly.c: make the invoke_load_hook function public,
20669         so it can be called for dynamic assemblies.
20670
20671         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
20672
20673         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
20674         type isn't found.
20675
20676         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
20677         MonoGHashTable, since it contains pointers to objects which the GC 
20678         needs to track.
20679
20680         * assembly.c (search_loaded): remove unused variable.
20681         
20682 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
20683
20684         * object.c: fixed issue exposed by gcc-generated IL programs
20685         that use RVA data for pointers.
20686
20687 2003-01-25  Martin Baulig  <martin@ximian.com>
20688
20689         * threads.c (start_wrapper): Moved the initialization of
20690         `start_func' above the mono_new_thread_init() call to which we
20691         pass it as argument.
20692
20693 2003-01-24  Martin Baulig  <martin@ximian.com>
20694
20695         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
20696         the MonoThread pointer.
20697
20698 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
20699
20700         * icall.c: Rename `PowImpl' to Pow.
20701
20702 2003-01-23  Dick Porter  <dick@ximian.com>
20703
20704         * threads.c (start_wrapper): Create a Thread object if needed, so
20705         the Main() thread can do the class initialisation in a subthread
20706         that has been set up to allow managed code execution.
20707
20708         Pass the thread ID instead of the MonoThread pointer to the thread
20709         start and attach callbacks.  This change is required, because the
20710         jit thread start callback must be called _before_ the Thread
20711         object can be created.
20712         
20713         (mono_thread_init): Removed much object creation code that is no
20714         longer needed.  No managed code is called from here now.
20715
20716         * object.c (mono_runtime_exec_managed_code): Create a subthread
20717         for Main, and call back to the runtime to use it.
20718         Set the exit code when Main exits.
20719
20720         * gc.c: Make sure domain finalisation happens in a subthread.
20721         Re-enable threaded GC, fixing bug 31333 (again).
20722
20723         * environment.c: System.Environment internall calls (so far just
20724         ExitCode is here, the others are still in icall.c)
20725
20726         * appdomain.c (mono_runtime_cleanup): All threads running managed
20727         code should have finished before mono_runtime_cleanup() is
20728         reached, so no need to clean up threads.
20729
20730 2003-01-22  Martin Baulig  <martin@ximian.com>
20731
20732         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
20733         `gpointer func' arguments.      
20734         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
20735         but added `MonoThread *thread' argument.
20736         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
20737
20738         * threads.c (mono_new_thread_init): Added `gpointer func' argument
20739         and pass it to the mono_thread_start_cb callback.
20740         (mono_install_thread_callbacks): New public function to install a
20741         set of callbacks which are set by the debugger.
20742         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
20743
20744 2003-01-22  Martin Baulig  <martin@ximian.com>
20745
20746         * Makefile.am: Install debug-mono-symfile.h.
20747
20748 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
20749
20750         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
20751
20752 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
20753
20754         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
20755         * class.c (mono_ptr_class_get): correctly set access levels of pointers
20756         (mono_array_class_get): correctly set access levels of arrays
20757
20758 2003-01-20      Patrik Torstensson
20759         * image.h (MonoAssemblyName): changed major, minor, build, revision
20760         from signed to unsigned.
20761
20762 2003-01-20  sean kasun <skasun@azstarnet.com>
20763
20764         * reflection.c (load_cattr_value): Now this handles
20765         MONO_TYPE_SZARRAY.  Fixes bug #35629
20766
20767 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
20768
20769         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
20770         integer value
20771
20772 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20773
20774         * decimal.c: fixed bug #26056.
20775
20776 2003-01-17  Martin Baulig  <martin@ximian.com>
20777
20778         * gc.c: Raise an ExecutionEngineException instead of using g_error().
20779
20780 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20781
20782         * exception.[ch]:
20783         (mono_get_exception_type_initialization): new function.
20784
20785         * object.c: throw a TypeInitializationException when an exception is
20786         thrown invoking the class constructor.
20787
20788 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20789
20790         * reflection.c: fixed attribute reading.
20791
20792 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20793
20794         * icall.c:
20795         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
20796         provided, look for the type in the calling assembly and then in
20797         mscorlib; if the assembly name is provided, only try that one.
20798
20799 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
20800
20801         * object.c: register the vtable before there is a chance it's
20802         queried again recursively.
20803
20804 2003-01-13  Duncan Mak  <duncan@ximian.com>
20805
20806         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
20807         gc-internal.h. 
20808         
20809 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
20810
20811         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
20812
20813 2003-01-11  Martin Baulig  <martin@ximian.com>
20814
20815         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
20816         this to 20 for the release.
20817
20818 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
20819
20820         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
20821
20822         * loader.c (mono_method_get_marshal_info): bug fix
20823
20824         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
20825         structures with explicit layout
20826
20827 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
20828
20829         * profiler.c: made the output more readable (and sorted). 
20830         Added caller information for the allocation profiler.
20831
20832 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
20833
20834         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
20835
20836 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20837
20838         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
20839         to get value types.
20840         
20841 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
20842
20843         * object.c, profiler.h, profiler.c, profiler-private.h:
20844         Added object allocation profiler.
20845
20846 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
20847
20848         * reflection.h, reflection.c: handle global methods.
20849         Compress blob entries.
20850
20851 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
20852
20853         * marshal.c: fix compilation.
20854
20855 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
20856
20857         * loader.c (mono_method_get_marshal_info): impl.
20858
20859         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
20860
20861 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20862
20863         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
20864         for reference types.
20865
20866 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
20867
20868         * loader.c: fixed off by one error in loaded parameter names.
20869
20870 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
20871
20872         * marshal.c (mono_marshal_get_icall_wrapper): like
20873         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
20874         instead of a MonoMethod.
20875
20876 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20877
20878         * decimal.c: fixed bug #36537.
20879
20880 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
20881
20882         * marshal.c: throw a missing method exception if a
20883         P/Invoke method is not found.
20884
20885 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
20886
20887         * icall.c: allow a null this for constructors.
20888
20889 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
20890
20891         * icall.c: raise the proper exceptions if the arguments to the
20892         internal Invoke are incorrect.
20893
20894 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
20895
20896         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
20897
20898 2003-01-03  Martin Baulig  <martin@ximian.com>
20899
20900         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
20901
20902 2002-12-31  Martin Baulig  <martin@ximian.com>
20903
20904         * debug-mono-symfile.c: Completely rewrote the type section.
20905         Instead of using individual malloc()ed fields, we use one big
20906         continuous memory area and offsets into this area.
20907         See the comments in the source code for details.
20908
20909 2002-12-30  Martin Baulig  <martin@ximian.com>
20910
20911         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
20912
20913 2002-12-30  Martin Baulig  <martin@ximian.com>
20914
20915         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
20916         line number table in this data blob instead of using an external
20917         pointer.
20918
20919 2002-12-28  Martin Baulig  <martin@ximian.com>
20920
20921         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
20922
20923 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
20924
20925         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
20926         as a boxed return type.
20927
20928 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
20929
20930         * appdomain.c
20931         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
20932         g_build_filename to properly get separators on the filename created.
20933
20934         * object.h: Small change, introduce MonoMarshalByRefObject to
20935         track the layout of that structure in the C# universe as we make
20936         changes there.
20937
20938 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
20939
20940         * object.c: removed assert to allow static fields on interfaces.
20941         * loader.c: a TypeSpec may be used for any type, not just arrays.
20942
20943 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20944
20945         * class.c, class.h: added mono_class_array_element_size ().
20946         Ignore static methods in interfaces.
20947
20948 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20949
20950         * threads.c: fixed the build under cygwin.
20951
20952 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
20953
20954         * reflection.c: handle nullref constants. Allocate keys for
20955         reflection handles with the GC.
20956
20957 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20958
20959         * threads.c, threads.h: added mono_thread_get_abort_signal()
20960         to get a suitable signal for thread abort.
20961
20962 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20963
20964         * metadata.c: fix handling of ExportedType table.
20965
20966 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20967
20968         * icall.c: added WriteWindowsDebugString internal call.
20969
20970 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20971
20972         * reflection.h: added fields to match C# implementation.
20973
20974 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20975
20976         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
20977
20978 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
20979
20980         * gc.h, gc-internal.h: Rename header for GC internal calls to
20981         gc-internal.h from gc.h as to not clash with Boehm GC having its
20982         header installed as <gc.h> in outside include paths.
20983         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
20984         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
20985
20986 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20987
20988         * icall.c: assign minor, build and revision in FillName.
20989
20990 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
20991
20992         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
20993         Added support for running code generated by Reflection.Emit.
20994
20995 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20996
20997         * appdomain.c: check for NULL argument in LoadFrom.
20998
20999 2002-12-10  Dick Porter  <dick@ximian.com>
21000
21001         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
21002
21003 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21004
21005         * appdomain.c: fix buglet when building exe file name.  Handle full
21006         assembly name (needed after latest changes to AssemblyName).
21007         * image.c:
21008         (mono_image_close): free some hashtables.
21009
21010 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
21011
21012         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
21013         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
21014         on some systems (redhat 7.3) 
21015
21016 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
21017
21018         * threads.c: delete the critical section of a sync block,
21019         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
21020
21021 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
21022
21023         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
21024
21025 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21026
21027         * appdomain.[ch]: handle the assembly preload event to try loading the
21028         assemblies using the paths we have in the current domain.
21029
21030         * assembly.[ch]: created an assembly preload hook that is called to try
21031         loading the assembly by other means that the ones provided here.
21032
21033         * domain.c: initialize the domain search path.
21034
21035         From now on, assemblies (TODO: except corlib and System) are loaded
21036         according to these rules when using mono_assembly_load ():
21037
21038                 1. It tries to load the assembly from the ApplicationBase
21039                 of the current domain appending .dll and .exe (TODO: have to
21040                 try loading from name/name.dll and name/name.exe).
21041
21042                 2. It tries the search path specified in PrivateBinPath for the
21043                 current domain (if any).
21044
21045                 3. Previous behavior.
21046
21047 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
21048
21049         * icall.c: implemented GetInterfaceMap() related icall.
21050         * domain.c, loader.h: load MethodInfo in mono_defaults.
21051
21052 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21053
21054         * gc.c: disable the finalizer thread for now, untill all the issues
21055         with it are resolved.
21056
21057 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21058
21059         * string-icalls.c: handle embedded nulls in string ctor when the
21060         length is specified.
21061
21062 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21063
21064         * class.c: look for explicit interface implementation in parent
21065         classes, too.
21066
21067 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
21068
21069         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
21070
21071 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21072
21073         * gc.c: protect handles with a critical section.
21074
21075 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21076
21077         * icall.c:
21078         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
21079         parameters. If no assembly specified, try getting the type from all
21080         the assemblies in the current domain, else, load the assembly and get
21081         the type from it.
21082
21083 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21084
21085         * marshal.c: applied patch from Aleksey Demakov that fixes
21086         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
21087
21088 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21089
21090         * icall.c: fixed get_location.
21091
21092 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
21093
21094         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
21095         declarations to make it work with older gcc. 
21096
21097         * loader.c (mono_get_method): set signature->pinvoke for native calls
21098
21099 2002-11-20  Dick Porter  <dick@ximian.com>
21100
21101         * threads.c (mono_thread_init): Set the main thread's handle
21102
21103 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21104
21105         * gc.c: allow compilation without GC support. Changed to match the
21106         mono coding style.
21107
21108 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21109
21110         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
21111
21112 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
21113
21114         * reflection.c: set a public key token on the core assemblies.
21115
21116 2002-11-18  Dick Porter  <dick@ximian.com>
21117
21118         * threads.c: Split out some thread initialisation so that other
21119         files can set the start callback function.
21120
21121         * gc.c: Run finalisers in a separate thread, to avoid stack
21122         overflow.  Fixes bug 31333.
21123
21124         * appdomain.c: Set up GC finalisation thread.
21125
21126         * reflection.c: 
21127         * object.c: 
21128         * domain.c: Use gc.h macros for GC_malloc
21129         
21130 2002-11-15  Dick Porter  <dick@ximian.com>
21131
21132         * threadpool.c: 
21133         * threads.c:
21134         * appdomain.c: Removed mono_runtime_init_with_attach(),
21135         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
21136         merging the extra parameter with the existing function.  Removed
21137         unneeded code in mono_thread_attach().
21138
21139 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
21140
21141         * image.c (mono_image_loaded_by_guid): a method to get loaded
21142         images by guid. 
21143         (load_metadata_ptrs): we store the guid as string.
21144
21145 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
21146
21147         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
21148
21149         * metadata.c (mono_guid_to_string): imported method form Zoltan
21150         Varga (slightly modified)
21151
21152         * assembly.c (mono_assembly_open): load precompiled code
21153
21154         * loader.h (MonoMethod): we store the method token for use in the
21155         aot compiler. 
21156
21157 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21158
21159         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
21160         the hook function called when an assembly is loaded.
21161         
21162         * domain.c: Modified file.
21163         (mono_domain_assembly_load): removed hash table insertion of assemblies.
21164
21165         Fixes bug #33196.
21166
21167 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
21168
21169         * reflection.c: Map PEFileKind to the value expected by the WinNT
21170         image loader. 
21171
21172 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21173
21174         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
21175         Read until the buffer is filled completely.
21176
21177 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21178
21179         * icall.c: implemented MonoType.InternalGetEvent ().
21180
21181 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21182
21183         * appdomain.c: implemented InitAppDomainSetup. Delayed
21184         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
21185         the entry_assembly.
21186
21187         * assembly.c: base_dir is now an absolute path ending with
21188         G_DIR_SEPARATOR.
21189
21190         * icall.c: modified get_location according to the above changes.
21191
21192         * object.c: init AppDomain.SetupInformation for the default domain after
21193         we have the entry assembly.
21194
21195         * domain.c: when unloading a domain, setup = NULL.
21196
21197 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
21198
21199         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
21200
21201 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
21202
21203         * object.h, object.c: introduced mono_object_get_virtual_method ()
21204         to lookup the method invoked on an object when a callvirt is done on
21205         a method.
21206         * icall.c: make MethodInfo::Invoke() always do a virtual call.
21207
21208 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21209
21210         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
21211         current domain when loaded an assembly and failed to load it.
21212
21213         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
21214
21215 2002-10-31  Dick Porter  <dick@ximian.com>
21216
21217         * icall.c: 
21218         * file-io.h: 
21219         * file-io.c: Return the error status in a parameter, as the
21220         GetLastError() value has long since been blown away if we try and
21221         look it up in a subsequent internal call invocation.  Delete the
21222         GetLastError() internal call, because it's useless.
21223
21224 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
21225
21226         * class.[ch]: added cast_class to fix bug 29517
21227
21228 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
21229
21230         * marshal.c: create valid IL code in the filter clause:
21231         the new JIT is less forgiving:-)
21232
21233 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21234
21235         * icall.c: removed get_property internal call.
21236
21237 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
21238
21239         * appdomain.h domain.c: Added an ID to appdomains.
21240         
21241         * threads.c threads.h icall.c: Implement icall
21242         Thread:GetDomainID(), and remove unused icall 
21243         CurrentThreadDomain_internal.
21244
21245 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21246
21247         * icall.c: Don't recurse through the base types in GetConstructor.
21248         Fixes bug #32063. 
21249
21250 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
21251
21252         * mempool.h, mempool.c: added mono_mempool_empty() and
21253         mono_mempool_stats().
21254
21255 2002-10-23  Dick Porter  <dick@ximian.com>
21256
21257         * file-io.c: 
21258         * file-io.h: 
21259         * icall.c: Added MonoIO.GetFileType internal call
21260
21261 2002-10-17  Dick Porter  <dick@ximian.com>
21262
21263         * appdomain.c (mono_runtime_cleanup): Don't signal the async
21264         delegate semaphore before waiting for all threads to finish,
21265         because new threads can also call async delegates.  Fixes bug
21266         32004.
21267
21268         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
21269         of 3 seconds, in case another async job is queued.  (This part is
21270         needed because the bug fix reintroduced the 3s exit lag.)  This
21271         makes the mono_runtime_shutdown flag superfluous.
21272
21273 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
21274
21275         * reflection.c: include ehader size in method section headers.
21276         Really check for suplicated modules entries.
21277
21278 2002-10-17  Martin Baulig  <martin@gnome.org>
21279
21280         * debug-mono-symfile.c: Added back support for locals.
21281
21282 2002-10-14  Martin Baulig  <martin@gnome.org>
21283
21284         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
21285         MONO_TYPE_VOID.
21286
21287 2002-10-14  Martin Baulig  <martin@gnome.org>
21288
21289         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
21290         mono_class_get() instead of looking in the class cache. 
21291
21292 2002-10-13  Martin Baulig  <martin@gnome.org>
21293
21294         * debug-mono-symfile.c: Set version number to 28, include the
21295         signature in method names.
21296
21297 2002-10-13  Martin Baulig  <martin@gnome.org>
21298
21299         * debug-mono-symfile.h: Set version number to 27.
21300
21301 2002-10-11  Martin Baulig  <martin@gnome.org>
21302
21303         * gc.c: Don't register/unregister NULL pointers as disappearing links.
21304
21305 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
21306
21307         * metadata.c, metadata.h: added helper function to allocate signatures.
21308
21309 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21310
21311         * icall.c: added internal call to get the location of machine.config.
21312
21313 2002-10-08  Martin Baulig  <martin@gnome.org>
21314
21315         * debug-mono-symfile.c: Ignore classes with a pending init for the
21316         moment.
21317
21318 2002-10-03  Dick Porter  <dick@ximian.com>
21319
21320         * threads.c: Freebsd pthread_t is a pointer
21321
21322 2002-10-03  Dick Porter  <dick@ximian.com>
21323
21324         * socket-io.c: Implemented GetHostName_internal
21325
21326 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21327
21328         * mono-config.c:
21329         (mono_config_parse_file): don't leak the text.
21330
21331 2002-10-02  Martin Baulig  <martin@gnome.org>
21332
21333         * debug-mono-symfile.c: Added support for methods.
21334
21335 2002-10-01  Martin Baulig  <martin@gnome.org>
21336
21337         * debug-mono-symfile.c: Don't emit methods and line numbers for
21338         the dynamic symbol file, just write the type table.  We can easily
21339         have an external helper program which creates a symbol file for an
21340         IL file.        
21341
21342 2002-10-01  Dick Porter  <dick@ximian.com>
21343
21344         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
21345         Only add the handle to the cleanup array when we're about to
21346         launch the thread.  Bug 31425 deadlocked when the test was run on
21347         mono under w32.
21348
21349 2002-10-01  Martin Baulig  <martin@gnome.org>
21350
21351         * debug-mono-symfile.c: Added support for properties.
21352
21353 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
21354
21355         * reflection.c: unaligned store fix from Mark Crichton
21356         <crichton@gimp.org>.
21357
21358 2002-09-27  Martin Baulig  <martin@gnome.org>
21359
21360         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
21361         New interncall.
21362
21363 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
21364
21365         * assembly.h, assembly.c: use a sane API to hook into the assembly
21366         loading process instead of a useless special-purpouse hack
21367         (ngen needs a hook, too, for example).
21368
21369 2002-09-27  Dick Porter  <dick@ximian.com>
21370
21371         * threads.c (mono_thread_init): Call GetCurrentProcess() so
21372         io-layer can set up some process handle info.  Not needed on w32,
21373         but doesn't hurt either.
21374
21375         * process.c: Pass the program name in the second parameter to
21376         CreateProcess, so the path is searched.  Include the working
21377         directory. Implemented process name, process enumeration, and some
21378         process detail internal calls.
21379         
21380         * icall.c: Added internal calls for process lookup, and some
21381         process details
21382
21383 2002-09-26  Martin Baulig  <martin@gnome.org>
21384
21385         * assembly.c (mono_install_open_assembly_hook): New global
21386         function to install a function to be invoked each time a new
21387         assembly is loaded.
21388         (mono_assembly_open): Run this callback function if set.
21389
21390         * debug-mono-symfile.c: Put back line numbers for the dynamic
21391         symbol file and also record the .il file as source file.  This
21392         allows us to install the temporary symbol file as `file.dbg' just
21393         like a compiler-generated one.
21394
21395 2002-09-26  Nick Zigarovich <nick@chemlab.org>
21396
21397         * Corrected typo in gc.c (BOHEM vs BOEHM).
21398
21399 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21400
21401         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
21402         GetProperties. Also avoid calling g_slist_length in GetProperties and
21403         GetMethods.
21404
21405 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
21406
21407         * reflection.c: avoid unaligned stores (bug spotted by
21408         Mark Crichton  <crichton@gimp.org>).
21409
21410 2002-09-25  Martin Baulig  <martin@gnome.org>
21411
21412         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
21413         instead of guint64 for addresses and added prologue/epilogue info.
21414
21415 2002-09-25  Martin Baulig  <martin@gnome.org>
21416
21417         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
21418         store line number info.  For the dynamic symbol file, we only need
21419         to provide the JIT generated dynamic line number info for the dynamic
21420         symbol file.
21421
21422 2002-09-25  Martin Baulig  <martin@gnome.org>
21423
21424         * debug-mono-symfile.h: Incremented version number.
21425
21426 2002-09-24  Martin Baulig  <martin@gnome.org>
21427
21428         * class.c (mono_debugger_class_init_func): New global function
21429         pointer variable.
21430         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
21431         call it.
21432
21433         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
21434         function.  This is called via the mono_debugger_class_init_func
21435         hook to add all types to the dynamic type table.
21436         (ves_icall_MonoDebugger_GetType): New interncall to get a class
21437         from its metadata token.
21438
21439         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
21440         New interncall for the debugger.
21441
21442 2002-09-24  Nick Drochak <ndrochak@gol.com>
21443
21444         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
21445         before using it in case it is null.
21446         
21447 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21448
21449         * metadata.c: allow custom modifiers in local var signatures
21450         (bug spotted by Zoltan Varga).
21451
21452 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
21453
21454         * class.c: deal with the <Module> class that may have a NULL vtable.
21455         Eliminate warnings.
21456
21457 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
21458
21459         * image.c, image.h: more strong name helpers.
21460         * monosn.c: more work: convert pem keys to cryptoapi format.
21461
21462 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
21463
21464         * string-icalls.c: speedup IndexOf.
21465
21466 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
21467
21468         * icall.c: updates from Zoltan.2.Varga@nokia.com.
21469
21470 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
21471
21472         * icall.c: cleanup: use mono_object_domain ().
21473
21474 2002-09-23  Martin Baulig  <martin@gnome.org>
21475
21476         * debug-mono-symfile.c: Improved type support.
21477
21478 2002-09-22  Martin Baulig  <martin@gnome.org>
21479
21480         * debug-mono-symfile.c: Added support for reference types and strings.
21481
21482 2002-09-22  Martin Baulig  <martin@gnome.org>
21483
21484         * debug-mono-symfile.c: Started to work on the type table.
21485
21486 2002-09-21  Martin Baulig  <martin@gnome.org>
21487
21488         * debug-mono-symfile.c: Largely reworked the symbol table format.
21489         The symbol table is now incrementally updated each time a new
21490         method is added.  We're now also using our own magic and version
21491         so that you don't need to recompile all your classes if the
21492         dynamic table changes.
21493         (mono_debug_update_mono_symbol_file): Removed.
21494         (mono_debug_symfile_add_method): New function to add a method.
21495
21496 2002-09-21  Martin Baulig  <martin@gnome.org>
21497
21498         * icall.c
21499         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
21500         New interncall.
21501
21502         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
21503         New interncall to get a method from its metadata token.
21504
21505 2002-09-21  Martin Baulig  <martin@gnome.org>
21506
21507         * debug-mono-symfile.c: Create type table.
21508
21509 2002-09-20  Martin Baulig  <martin@gnome.org>
21510
21511         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
21512
21513 2002-09-20  Martin Baulig  <martin@gnome.org>
21514
21515         * debug-mono-symfile.c: Provide information about params and locals.
21516
21517 2002-09-20  Martin Baulig  <martin@gnome.org>
21518
21519         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
21520         New interncall.
21521
21522         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
21523         interncall to get a method from its metadata token.
21524
21525 2002-09-20  Martin Baulig  <martin@gnome.org>
21526
21527         * debug-mono-symfile.c: Added a few checks for method->header
21528         being non-NULL.  This should never happen, but for the moment
21529         let's use a g_warning() rather than a g_assert().
21530
21531 2002-09-19  Mark Crichton  <crichton@gimp.org>
21532
21533         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
21534         even if support for it isn't present.  Added an #ifdef to fix this.
21535
21536         * socket-io.c: Added checks back for Solaris support.
21537
21538 2002-09-19  Martin Baulig  <martin@gnome.org>
21539
21540         * debug-mono-symfile.c (read_string, write_string): Reflect latest
21541         changes in the symbol file format.
21542
21543 2002-09-18  Martin Baulig  <martin@gnome.org>
21544
21545         * debug-mono-symfile.c: Set version number to 21.
21546
21547 2002-09-18  Dick Porter  <dick@ximian.com>
21548
21549         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
21550         on netbsd.  Fixes bug 30051.
21551
21552 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21553
21554         * reflection.c:
21555         (set_version_from_string): little fix.
21556
21557 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
21558
21559         * monosn.c, Makefile.am: added strong name utility.
21560         * reflection.h, reflection.c: implemented delayed signing,
21561         locale, version and hash id assembly attributes.
21562
21563 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
21564
21565         * loader.c, metadata.c: load param attributes in signatures.
21566
21567 2002-09-16  Martin Baulig  <martin@gnome.org>
21568
21569         * debug-mono-symfile.c: Added string table with all method names.
21570
21571 2002-09-14  Martin Baulig  <martin@gnome.org>
21572
21573         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
21574         fast method lookup.
21575
21576 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
21577
21578         * reflection.c: record the public key token of referenced assemblies.
21579
21580 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
21581
21582         * image.c, image.h: added functions to get the strong name and the
21583         public key of an assembly.
21584         * pedump.c: use them.
21585
21586 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
21587
21588         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
21589
21590 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
21591
21592         * marshal.c (mono_marshal_get_managed_wrapper): Added
21593         MONO_TYPE_BOOLEAN 
21594
21595 2002-09-11  Martin Baulig  <martin@gnome.org>
21596
21597         * gc.c: Call GC_unregister_disappearing_link() on all links when
21598         finalizing them, this is necessary to aviod a crash in boehm's
21599         finalize handler.
21600
21601 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
21602
21603         * gc.c: handle GetTarget for finalized objects spotted and fixed by
21604         nick@chemlab.org.
21605
21606 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
21607
21608         * icall.c: implemented MonoType::Module.
21609         * reflection.c, reflection.h: mono_module_get_object () from
21610         Tomi Pakarinen <tomi.pakarinen@welho.com>.
21611
21612 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
21613
21614         * icall.c: ignore overridden methods in GetMethods ().
21615         Fix for FieldInfo::SetValue().
21616         * object.c: handle float/double in runtime invoke.
21617
21618 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
21619
21620         * object.c: allow a constructor to be called again on an object.
21621
21622 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
21623
21624         * class.h, class.c: move field layout code to it's own function and
21625         export it. Get an interface id earlier. Move fields in MonoClass
21626         so they are more cache friendly and align the bitfields.
21627         * loader.c: temporary handle get_param_names() for a runtime method.
21628         * reflection.c, reflection.h: more code to handle runtime creation of
21629         types.
21630
21631 2002-09-09  Martin Baulig  <martin@gnome.org>
21632
21633         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
21634         signature with the pinvoke field being set for the actual call.
21635
21636 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
21637
21638         * icall.c: removed some unused icalls. Start of map of glib charsets
21639         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
21640
21641 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
21642
21643         * debug-helpers.c: break infinite loop (found and fixed by
21644         Holger Arnold <harnold@gmx.de>).
21645
21646 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
21647
21648         * icall.c: target may be null in create_delegate.
21649
21650 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
21651
21652         * marshal.c: handle a boolean return type.
21653
21654 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
21655
21656         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
21657
21658 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
21659
21660         * gc.c: fix weakreferences.
21661
21662 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
21663
21664         * icall.c: added icall to get default codepage.
21665
21666 2002-09-03  Dick Porter  <dick@ximian.com>
21667
21668         * threads.h: 
21669         * threads.c: Use MonoThread instead of MonoObject where
21670         apropriate.
21671
21672         Store running thread objects in a hash table, so that we have all
21673         the info to hand when waiting for them to finish
21674         (means we don't need OpenThread() any more, so mingw builds should
21675         be fully functional again.)
21676
21677         * verify.c:
21678         * object.h: Added thread ID to MonoThread
21679
21680 2002-09-03  Martin Baulig  <martin@gnome.org>
21681
21682         * icall.c (System.Reflection.Assembly::get_location): New interncall.
21683
21684 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21685
21686         * icall.c: fixed leak in get_temp_path. Thanks lupus.
21687
21688 2002-09-03  Martin Baulig  <martin@gnome.org>
21689
21690         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
21691         argument to store the end address of the disassembled instruction.
21692
21693         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
21694         here from debug-symfile.h.
21695         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
21696         JIT into this struct.
21697         (MonoSymbolFile): Added `char *image_file' field.
21698         (MonoDebugGetMethodFunc): Removed.
21699         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
21700         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
21701         (mono_debug_find_method): New method.
21702
21703         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
21704         create a full symbol file.
21705         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
21706         and static symbol files.
21707         (mono_debug_find_method): The symbol file keeps an internal method hash,
21708         call this to get a MonoDebugMethodInfo from a MonoMethod.
21709
21710         * debug-symfile.[ch]: Removed.
21711
21712 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
21713
21714         * image.c (do_mono_image_open): Remove linker version check.
21715
21716 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
21717
21718         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
21719         wrappers for instance methods.
21720         
21721 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21722
21723         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
21724
21725 2002-08-28  Dick Porter  <dick@ximian.com>
21726
21727         * Makefile.am: Export HOST_CC for w32 builds
21728
21729 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
21730
21731         * file-io.c process.c: MonoString are null terminated, no
21732         need for mono_string_to_utf16() anymore.
21733
21734 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
21735
21736         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
21737
21738 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
21739
21740         * icall.c, reflection.h: speedup System.MonoType.
21741
21742 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
21743
21744         * reflection.c: allow null as the value of a string argument in
21745         custom attributes constructors.
21746
21747 2002-08-27  Martin Baulig  <martin@gnome.org>
21748
21749         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
21750         `trampoline_address' field.
21751
21752 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
21753
21754         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
21755         check (fixes bug #29486) 
21756
21757 2002-08-27  Martin Baulig  <martin@gnome.org>
21758
21759         * debug-mono-symfile.c: Changed the file format in a way that allows us
21760         open it read-only and to use a specially malloced area for all the
21761         dynamic data.  We can now also generate a symbol file on-the-fly if we're
21762         debugging IL code and there is no MCS generated symbol file for it.
21763
21764 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
21765
21766         * object.c: added a define for a good string and array
21767         creation speedup (not enabled by default because we need to deal with
21768         the synch stuff).
21769
21770 2002-08-26  Martin Baulig  <martin@gnome.org>
21771
21772         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
21773         function to create a dynamic symbol file.  This is used by the
21774         debugger to create a symbol file for IL code on-the-fly.
21775
21776 2002-08-26  Martin Baulig  <martin@gnome.org>
21777
21778         * loader.c (mono_lookup_pinvoke_call): Include the error message
21779         from g_module_error() in the error message.
21780
21781 2002-08-24  Martin Baulig  <martin@gnome.org>
21782
21783         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
21784         function to update the symbol file.  The symbol file is mmap()ed
21785         writable, but private.  This allows us to install the symbol file
21786         together with the assembly.
21787
21788 2002-08-24  Martin Baulig  <martin@gnome.org>
21789
21790         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
21791         but they can read the new symbol file format which mcs is now creating.
21792
21793         * debug-symfile.c (mono_debug_find_source_location): Moved to
21794         debug-mono-symfile.c; this is now operating on the new symbol file.
21795
21796 2002-08-23  Martin Baulig  <martin@gnome.org>
21797
21798         * debug-helpers.c (mono_method_desc_from_method): New function to get
21799         a MonoMethodDesc from a MonoMethod.
21800
21801 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
21802
21803         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
21804         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
21805
21806 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
21807
21808         * string-icalls.[ch]: make helper methods static.
21809
21810 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21811
21812         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
21813         types to it and to SetValueInternal.
21814
21815         * object.c: Moved handle_enum label to its proper place. This was the
21816         f... bug! ;-)
21817
21818         This time i compiled mcs and gtk-sharp and they both work.
21819
21820 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21821
21822         * icall.c: reverted partially my previous patch until 
21823         object.c:set_value handles enums correcly.
21824
21825 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21826
21827         * icall.c:
21828         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
21829         (ves_icall_System_Environment_get_MachineName): removed warning when
21830         compiling under cygwin.
21831
21832 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
21833
21834         * object.c: fixed field_get_value() for reference types.
21835
21836 2002-08-22  Dick Porter  <dick@ximian.com>
21837
21838         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
21839         Don't free a buffer while it's still needed.  Patch from Jonathan
21840         Liger <Jonathan.liger@wanadoo.fr>
21841
21842 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
21843
21844         * icall.c (ves_icall_System_Environment_get_Platform): Add new
21845         internal call.
21846
21847 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
21848
21849         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
21850         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
21851
21852         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
21853         we call unmanaged code which throws exceptions.
21854
21855 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
21856
21857         * appdomain.h: added per-domain entry_assembly.
21858         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
21859         arguments.
21860         * icall.c: Assembly::GetEntryAssembly icall.
21861         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
21862         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
21863
21864 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
21865
21866         * appdomain.h, gc.c: added mono_domain_finalize ().
21867
21868 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21869
21870         * object.c:
21871         (mono_print_unhandled_exception): changed g_warning by g_printerr
21872         because g_log has a 1024 characters limit (yeah, i got a big stack
21873         trace). Don't print exception name, that should be in ToString 
21874         returned string.
21875
21876 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21877
21878         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
21879         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
21880
21881 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21882
21883         * object.c:
21884         (mono_print_unhandled_exception): after previous commit, i realized
21885         that MS calls ToString on the exception. I changed this function to
21886         do that. This way we get stack_trace for free.
21887
21888 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21889
21890         * object.c:
21891         (mono_print_unhandled_exception): invoke Message property instead of
21892         getting 'message' field from Exception. Don't allocate memory for
21893         'trace' and 'message' if not needed.
21894
21895 2002-08-18  Dick Porter  <dick@ximian.com>
21896
21897         * unicode.c: Fix asserts to match Encoder.cs checks
21898
21899 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
21900
21901         * marshal.c: fix unaligned store issue and a few wrong
21902         opcode argument types.
21903
21904 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21905
21906         * icall.c: added GetUninitializedObjectInternal internal call.
21907
21908 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
21909
21910         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
21911         to the right domain.
21912
21913 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
21914
21915         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
21916
21917         * class.c (class_compute_field_layout): set blittable to false for Strings
21918
21919         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
21920
21921 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
21922
21923         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
21924         first chunk of code to create types at runtime. Code to
21925         handle ReflectedType/DeclaringType. Make reflection handles
21926         domain specific.
21927
21928 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
21929
21930         * class.c: set correct name in arrays.
21931
21932 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
21933
21934         * appdomain.c (mono_domain_transfer_object): make it work with
21935         valuetypes. bug fixes.
21936
21937 2002-08-12  Dick Porter  <dick@ximian.com>
21938
21939         * object.h: Rename some parameters to avoid c++ keywords (Patch
21940         from Joseph Wenninger <kde@jowenn.at>)
21941
21942 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
21943
21944         * icall.c: added icall to implement Assembly.GetFile*.
21945
21946 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
21947
21948         * reflection.h, reflection.c: code to embed managed resources.
21949
21950 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
21951
21952         * class.c: move all the type size stuff into
21953         class_compute_field_layout().
21954
21955 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
21956
21957         * class.c: ensure enums have always the correct instance size.
21958         * unicode.c: remove wrong assert.
21959
21960 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
21961
21962         * assembly.c: fix mem corruption issue.
21963         * image.h, image.c: added mono_image_get_resource () to access
21964         managed resources.
21965         * icall.c: implemented Assembly.EntryPoint property and some
21966         Managed Resources related internalcalls.
21967
21968
21969 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
21970
21971         * image.c, image.h: impemented mono_image_get_entry_point ().
21972         * appdomain.c: use mono_image_get_entry_point.
21973
21974 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
21975
21976         * reflection.c: support the object type argument when loading
21977         custom attributes.
21978
21979 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
21980
21981         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
21982         String as return type.
21983
21984 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
21985
21986         * reflection.c: fix encoding of named args for custom attrs to match
21987         the ms implementation. Read them back when instantiating custom
21988         attributes.
21989
21990 2002-08-02  Radek Doulik  <rodo@ximian.com>
21991
21992         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
21993         by Dietmar as quick fix
21994         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
21995         16 as stack size, used on more places as quick fix before Dietmar
21996         will fix it properly
21997
21998 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
21999
22000         * object.h, object.c: added accessors for fields and properties.
22001
22002 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
22003
22004         * class.c, class.h: made mono_class_get_field_from_name ()
22005         loop on parent types.
22006         Added mono_class_get_property_from_name ().
22007
22008 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
22009
22010         * class.c, class.h: move the code to setup the type vtable in its own
22011         function so that it can be reused also for types created at runtime.
22012         Eliminate the "class" identifier from the header file.
22013         * reflection.c: setup the vtable for enums so that we can create
22014         objects for use in SetConstant ().
22015
22016 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
22017
22018         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
22019         instead of the delegate itself as this pointer (bug #28383)
22020
22021 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
22022
22023         * marshal.c (mono_marshal_get_managed_wrapper): added return type
22024         conversions.
22025
22026 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22027
22028         * loader.c: don't set the pinvoke bit on icalls.
22029
22030 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
22031
22032         * debug-helpers.c (mono_method_full_name): only print a number to
22033         indicate wrapper type (so that the output is more readable in traces).
22034
22035 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
22036
22037         * class.c (mono_class_init): include method override patch from Paolo
22038
22039 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
22040
22041         * icall.c: fixed GetTypeCode().
22042
22043 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
22044
22045         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
22046         use real delegate invoke function to make it work with multicast
22047         delegates (fix bug# 28291).
22048
22049 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
22050
22051         * object.c: load constant strings.
22052
22053 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
22054
22055         * reflection.c: no magic numbers.
22056         * tabledefs.h: security action enum.
22057
22058 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22059
22060         * assembly.c: fix possible memory corruption.
22061
22062 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
22063
22064         * reflection.h, reflection.c: added support for linking resources.
22065         * verify.c: check we have an updated corlib.
22066
22067 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
22068
22069         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
22070         string arrays.
22071         (mono_marshal_string_array): null terminate unmanaged string arrays.
22072         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
22073
22074 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22075
22076         * icall.c: Type.GetType () can now return also types from the
22077         calling assembly.
22078
22079 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
22080
22081         * loader.h, loader.c: stack walking support.
22082         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
22083         GetCallingAssembly.
22084
22085 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
22086
22087         * marshal.c: added optimisations for blittable types 
22088
22089         * class.c (mono_array_class_get): do not set blittable attribute on arrays
22090         (mono_class_setup_mono_type): set blittable attribute for single
22091         and double.
22092
22093         * marshal.c (mono_string_utf8_to_builder): impl.
22094         (mono_string_builder_to_utf8): impl.
22095         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
22096
22097 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
22098
22099         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
22100         (mono_marshal_get_managed_wrapper): impl. byref types
22101
22102 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22103
22104         * icall.c:
22105         (search_method): don't display debug message. 
22106
22107 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
22108
22109         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
22110
22111 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
22112
22113         * appdomain.c: set the missing filename when throwing exception.
22114
22115 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
22116
22117         * metadata.c (mono_type_size): code cleanup
22118         (mono_type_stack_size): removed some test code
22119
22120 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
22121
22122         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
22123         mono_get_exception_file_not_found now.
22124
22125         * exception.c (mono_exception_from_name_two_strings): New version
22126         that will call a constructor with two string arguments. 
22127         (mono_get_exception_file_not_found): New helper routine, used to
22128         report file-not-found errors.
22129
22130 2002-07-20  Dick Porter  <dick@ximian.com>
22131
22132         * process.h:
22133         * process.c: Pass file handles to CreateProcess
22134         
22135         * icall.c:
22136         * file-io.h:
22137         * file-io.c: Implemented CreatePipe
22138
22139 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
22140
22141         * metadata.c (mono_get_param_info): set alignment for value types
22142
22143 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22144
22145         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
22146         Constify mono_domain_assembly_open().
22147         * loader.c: handle null namespace in icalls.
22148
22149 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
22150
22151         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
22152         (emit_str_to_ptr_conv): marshal object as structs
22153
22154         * metadata.c (mono_type_to_unmanaged): marshal object as structs
22155
22156         * marshal.c (mono_marshal_get_runtime_invoke): support value types
22157
22158 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
22159
22160         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
22161         (mono_marshal_get_native_wrapper): we an now return value types
22162
22163 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22164
22165         * verify.c: more checks implemented.
22166
22167 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
22168
22169         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
22170         (fix bug #27695)
22171         (mono_marshal_get_native_wrapper): allow byref arguments
22172         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
22173         impl. PtrToStringXXX methods
22174         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
22175         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
22176         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
22177         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
22178         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
22179
22180 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22181
22182         * reflection.c: fix buglet in parsing an assembly name.
22183
22184 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
22185
22186         * marshal.c (emit_ptr_to_str_conv): first impl.
22187
22188 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
22189
22190         * object.c, class.h: cache the vtable in the class as suggested by
22191         vargaz@freemail.hu (Zoltan Varga).
22192
22193 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22194
22195         * class.h, loader.c: added mono_field_from_token().
22196         * verify.c: first cut of type checking code.
22197
22198 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
22199
22200         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
22201
22202 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
22203
22204         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
22205         (fix bug #27782)
22206         (mono_marshal_get_remoting_invoke): impl.
22207         (mono_delegate_begin_invoke): impl.
22208         (mono_mb_emit_save_args): impl.
22209         (mono_delegate_end_invoke): impl.
22210         (mono_marshal_get_delegate_begin_invoke):
22211         (mono_marshal_get_delegate_end_invoke):
22212         (mono_marshal_get_delegate_invoke): generate a special name for
22213         those methods (including the signature) and associate them whith
22214         the delegate class. 
22215
22216 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
22217
22218         * reflection.[ch]: 
22219         (mono_reflection_type_from_name): now it has a MonoImage parameter
22220         which is used as the default image to search the type in. If the image
22221         is NULL or getting the type from it fails, it defaults to corlib.
22222
22223         * icall.c: changed 1 call to mono_reflection_type_from_name to match
22224         new parameter.
22225
22226 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22227
22228         * reflection.c: update the parameter table index.
22229
22230 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22231
22232         * domain.c: don't include the mark byte in the string hash.
22233
22234 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22235
22236         * icall.cs: icall for Type.GetTypeCode ().
22237         * verify: a couple of fixes and disabled local initialization checks.
22238
22239 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
22240
22241         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
22242
22243         * debug-helpers.c (mono_method_full_name): print the type of the
22244         runtime wrapper
22245
22246         * metadata.c (mono_signature_hash): a hash function for signatures
22247         (mono_signature_hash): better hash algorithm
22248
22249         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
22250
22251         * debug-helpers.c (mono_method_full_name): this can now generate
22252         method names with signatures
22253
22254         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
22255         method dont have this pointers.
22256
22257 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
22258
22259         * reflection.c: fixup typebuilder tokens.
22260         * image.c: fix buglet.
22261         * marshal.h: remove whitespace.
22262         * metadata.h, metadata.c: reinstate code that was removed.
22263         * verify.c: handle catch directives and fix another couple of bugs.
22264
22265 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
22266
22267         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
22268         (mono_marshal_get_native_wrapper): make it comp. with the old code
22269         (mono_marshal_get_native_wrapper): support boolean
22270         (mono_marshal_get_managed_wrapper): support more types
22271
22272 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
22273
22274         * class.c (class_compute_field_layout): compute class->blittable attribute.
22275
22276 2002-07-09  Dick Porter  <dick@ximian.com>
22277
22278         * threads.c: Make the thread cleaning up cope with threads that
22279         call ExitThread()
22280
22281 2002-07-08  Radek Doulik  <rodo@ximian.com>
22282
22283         * reflection.c (method_encode_code): use non-translated values to
22284         compute finally_start, this fixes exception handling on ppc, yay!
22285
22286         * decimal.h (struct signscale): fix endianess
22287
22288 2002-07-07  Radek Doulik  <rodo@ximian.com>
22289
22290         * reflection.c: swap box_val and not val
22291
22292 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
22293
22294         * reflection.c, reflection.h: handle full assembly info in type name.
22295         Handle Type arguments when loading custom attributes.
22296         * icall.c: updated to use new mono_reflection_type_from_name () method.
22297
22298 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22299
22300         * loader.c:
22301         (method_from_memberref): also print assembly name when method not found.
22302
22303 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22304
22305         * icall.c:
22306         (ves_icall_TypeGetProperties): fixed bug #27473. 
22307
22308 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22309
22310         * reflection.c: display image name and token when cannot find the
22311         .ctor for an attribute.
22312
22313 2002-07-05  Martin Baulig  <martin@gnome.org>
22314
22315         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
22316
22317 2002-07-04  Dick Porter  <dick@ximian.com>
22318
22319         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
22320         compile on mingw.  This will cause mingw builds to not wait for
22321         subthreads to terminate after the main thread does.  I've lodged a
22322         bug with the mingw developers for them to wrap OpenThread().
22323
22324 2002-07-03  Dick Porter  <dick@ximian.com>
22325
22326         * threads.c: Store thread IDs instead of handles, because
22327         GetCurrentThread() returns a pseudohandle and therefore stores
22328         useless values.  mono_thread_cleanup() continues checking the
22329         array of threads until it is empty, to cope with subthreads
22330         spawning new threads after the main thread has finished.
22331
22332         * profiler.h:
22333         * profiler.c:
22334         * profiler-private.h: Pass the thread ID to thread profiler
22335         functions, instead of a handle
22336
22337 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22338
22339         * verify.c: fixes to make it more usable.
22340         * pedump.c: added --verify code to verify IL code in an assembly.
22341
22342 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22343
22344         * reflection.c: turn errors into warnings to allow compiling corlib.
22345
22346 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
22347
22348         * reflection.c: add special cases to compile corlib.
22349
22350 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22351
22352         * reflection.c: handle properties with only a set method.
22353
22354 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
22355
22356         * opcodes.h: add enum with opcodes in opval order.
22357
22358 2002-07-01  Dick Porter  <dick@ximian.com>
22359         
22360         * object.h:
22361         * object.c (mono_runtime_run_main): Removed unneeded argument
22362
22363 2002-06-28  Martin Baulig  <martin@gnome.org>
22364
22365         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
22366
22367 2002-06-27  Dick Porter  <dick@ximian.com>
22368
22369         * threads.c: Store the handle in both the parent thread and in the
22370         subthread, to minimise the time between starting a new thread and
22371         storing its ID.
22372
22373 2002-06-26  Dick Porter  <dick@ximian.com>
22374
22375         * appdomain.c (mono_runtime_cleanup): Close the socket library
22376         after all the threads have finished, not before
22377
22378 2002-06-26  Martin Baulig  <martin@gnome.org>
22379
22380         * debug-symfile.c (mono_debug_find_source_location): Added
22381         `guint32 *line_number' argument.  If it's not NULL, store the line number
22382         there and return the file name without the line number.
22383
22384 2002-06-25  Dick Porter  <dick@ximian.com>
22385
22386         * icall.c:
22387         * process.h:
22388         * process.c: Process forking and other support functions
22389
22390 2002-06-25  Dick Porter  <dick@ximian.com>
22391
22392         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
22393         things dont happen when the image is closed.
22394         (mono_image_lookup_resource): Walk the resource section looking
22395         for a particular entry
22396
22397         * cil-coff.h: PE resource section decoding
22398
22399 2002-06-25  Dick Porter  <dick@ximian.com>
22400         
22401         * assembly.h:
22402         * assembly.c: 
22403         (mono_assembly_foreach): Accessor functions to walk the list of
22404         loaded assemblies
22405         (mono_assembly_set_main):
22406         (mono_assembly_get_main): Process methods need to know which
22407         assembly is the "main" one
22408
22409         * object.c (mono_runtime_run_main): Record the main assembly
22410
22411         * debug-helpers.c: Fix typo
22412
22413 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
22414
22415         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
22416         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
22417
22418 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
22419
22420         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
22421
22422 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
22423
22424         * image.c (do_mono_image_open): Initialize reference count,
22425         otherwise we leak the MonoImage.
22426
22427 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
22428
22429         * reflection.c: small tweak to handle self-hosting.
22430
22431 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
22432
22433         * reflection.c: fix type name parse code.
22434
22435 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
22436
22437         * reflection.c: break out of the loop.
22438         * image.c: special case corlib.
22439
22440 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22441
22442         * reflection.c: add all the custom attrs at the end to ensure the
22443         ctors have been properly initialized when the attributes are defined
22444         in the current assembly.
22445
22446 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22447
22448         * reflection.c: handle correctly multiple-nested types.
22449
22450 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
22451
22452         * row-indexes.h: fix typos.
22453         * reflection.c: adjust for typos and fix method_def_or_ref
22454         encoding in MethodImpl table.
22455
22456 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
22457
22458         * reflection.c: fix entry point patching (thanks Serge!).
22459
22460 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
22461
22462         * verify.c: add check for System.Exception
22463
22464 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22465
22466         * image.c, class.c: minifix for code just c&p'ed.
22467         * reflection.c: warning fix.
22468         * object.h, loader.h, domain.c: load also StringBuilder.
22469
22470 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22471
22472         * marshal.h, marshal.c: some support code to handle complex marshaling.
22473
22474 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22475
22476         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
22477         Better signatures with vtable error dump.
22478
22479 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
22480
22481         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
22482
22483 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
22484
22485         * icall.c (ves_icall_Type_GetField): impl.
22486
22487 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22488
22489         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
22490         to retrieve a marshal description blob for a field or param.
22491
22492 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
22493
22494         * reflection.h, reflection.c: change order of nested type emission
22495         to avoid table corruption. The NestedTypes table is sorted.
22496         * icall.c: change order of GetConstructor results to workaround mcs bug.
22497
22498 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
22499
22500         * reflection.h, reflection.c: handle field and param marshal
22501         information.
22502
22503 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22504
22505         * icall.c, marshal.c marshal.h: more Marshal class implementation.
22506
22507 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22508
22509         * reflection.c: fix call convention.
22510
22511 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22512
22513         * reflection.h, reflection.c: mono_image_get_memberref_token()
22514         takes a type instead of a class, now. Added
22515         mono_image_get_array_token() to create tokens for the special
22516         multi-dim array methods.
22517
22518 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
22519
22520         * assembly.c: handle modules (no assembly table). Split
22521         loading references in its own function.
22522         * class.c: handle moduleref resolution scope.
22523         * image.c, image.h: cache module name in image.
22524
22525 2002-06-07  Martin Baulig  <martin@gnome.org>
22526
22527         * reflection.c (mono_image_get_type_info): Only add a class layout entry
22528         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
22529
22530 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
22531
22532         * icall.c: more signature fixes that used uint instead of int.
22533
22534 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22535
22536         * reflection.c: fixed signature of field refs.
22537
22538 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
22539
22540         * class.c, reflection.c: handle typerefs of nested types
22541         (both on read and when writing files).
22542
22543 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
22544
22545         * icall.c: fix method signatures that tried to workaround the previous
22546         typo, d'oh!
22547
22548 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
22549
22550         * debug-helpers.c: fix typo.
22551
22552 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
22553
22554         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
22555         rewrote the PE/COFF writing code (our programs are understood by the
22556         ms runtime, now).
22557
22558 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
22559
22560         * gc.c, gc.h, icall.c: weakreference support.
22561
22562 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22563
22564         * Makefile.am, mono-config.c: use $(sysconfdir).
22565
22566 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
22567
22568         * icall.c: changed default precision of Double.ToString() to 15.
22569         Fixed memory leak. Unified with Single.ToString.
22570
22571 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
22572
22573         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
22574
22575 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
22576
22577         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
22578         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
22579         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
22580         and myself.
22581
22582 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22583
22584         * debug-symfile.c, sysmath.c: yet more compilation fixes.
22585
22586 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22587
22588         * reflection.c, socket-io.c: more compilation fixes.
22589
22590 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
22591
22592         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
22593         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
22594         unicode.c: warning and compiler compatibility fixes.
22595
22596 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
22597
22598         * class.h, metadata.c: fixed warnings/compilation errors.
22599
22600 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
22601
22602         * Makefile.am, mono-config.c, mono-config.h: configuration file
22603         support routines.
22604         * loader.c, loader.h: make Dll mapping configurable at runtime in the
22605         config file. Export methods to insert and lookup mappings.
22606
22607 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
22608
22609         * reflection.c: handle types and boxed objects in custom attr
22610         constructors.
22611
22612 2002-05-30  Martin Baulig  <martin@gnome.org>
22613
22614         * debug-symfile.c
22615         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
22616
22617 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
22618
22619         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
22620         to lookup the implmap row for a P/Invoke method.
22621         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
22622         P/Invoke method from the runtime on an as needed basis.
22623
22624 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
22625
22626         * metadata.c (mono_metadata_parse_signature): impl.
22627
22628 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22629
22630         * class.c: handle .pack directive.
22631
22632 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
22633
22634         * object.c: initialize static fields with RVA data.
22635
22636 2002-05-25  Martin Baulig  <martin@gnome.org>
22637
22638         * debug-symfile.c
22639         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
22640
22641 2002-05-24  Martin Baulig  <martin@gnome.org>
22642
22643         * debug-symfile.c
22644         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
22645         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
22646         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
22647
22648 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
22649
22650         * object.c: special case string ctros in invoke.
22651         * gc.c: silly whitespace changes.
22652
22653 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
22654
22655         * threadpool.[ch]: impl. a threadpool that can
22656         be used by mint and mono.
22657
22658 2002-05-22  Martin Baulig  <martin@gnome.org>
22659
22660         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
22661         The first argument is now a `MonoReflectionModuleBuilder *', the return
22662         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
22663         `methods' field to get the method builder.  The `token' argument is the
22664         unfixed token.
22665
22666         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
22667         invalid characters instead of g_assert_not_reached()ing.  This seems
22668         to be the behaviour of mscorlib.
22669
22670 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
22671
22672         * object.c (mono_runtime_invoke_array): applied patch from Rachel
22673         Hestilow to fix bug #25104
22674
22675 2002-05-21  Martin Baulig  <martin@gnome.org>
22676
22677         * debug-symfile.c (mono_debug_find_source_location): New function.
22678         Looks up an IL offset in the line number table and returns the source
22679         location as a string.
22680
22681 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22682
22683         * icall.c:
22684         (mono_double_ToStringImpl): changed %f by %g until we have something
22685         better.
22686
22687 2002-05-21  Nick Drochak  <ndrochak@gol.com>
22688
22689         * icall.c : Use different name for Math.Pow's icall.  Needed to check
22690         parameters first in C#.
22691
22692 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22693
22694         * icall.c, reflection.h: added icall to get info about an event.
22695
22696 2002-05-20  Radek Doulik  <rodo@ximian.com>
22697
22698         * object.c (mono_value_box): don't use memcpy for boxing on BIG
22699         endian
22700         (mono_value_box): don't use memcpy for small sizes on
22701         architectures with unaligned access
22702
22703 2002-05-20  Martin Baulig  <martin@gnome.org>
22704
22705         * reflection.c (mono_reflection_setup_internal_class): Don't crash
22706         if `tb->parent == NULL'.
22707         (mono_reflection_create_internal_class): New function.  This is
22708         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
22709         for enum types.
22710
22711         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
22712         New interncall.
22713
22714 2002-05-19  Martin Baulig  <martin@gnome.org>
22715
22716         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
22717         argument to get the length, don't default to the array length.
22718
22719 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
22720
22721         * assembly.c (mono_assembly_setrootdir): New function used to
22722         override the MONO_ASSEMBLIES directory.
22723
22724 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
22725
22726         * icall.c: ValueType_GetHashCode() initialize local var.
22727
22728 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
22729
22730         * reflection.c: sort custom attributes table.
22731
22732 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
22733
22734         * reflection.c: support named args in custom attributes (write support).
22735
22736 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
22737
22738         * reflection.c: fix finally position calculation.
22739
22740 2002-05-15  Radek Doulik  <rodo@ximian.com>
22741
22742         * reflection.c: fixed endianess at many places
22743
22744         * icall.c (ves_icall_InitializeArray): comment out debug msg
22745
22746 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
22747
22748         * object.c (mono_unhandled_exception): new function to handle
22749         unhandled exceptions.
22750         (mono_unhandled_exception): call the UnhandledException event.
22751         (mono_runtime_delegate_invoke): impl.
22752
22753 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
22754
22755         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
22756         returns the RVA, not the direct pointer to the data. Handle the case
22757         when the class size is fixed.
22758
22759 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
22760
22761         * reflection.c: fix some endianess issues.
22762
22763 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
22764
22765         * object.c (mono_runtime_invoke): is now able to catch exceptions.
22766
22767         * threads.c (mono_thread_init): added a callback which is invoked
22768         at thread start.
22769
22770 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
22771         
22772         * icall.c: make GetHashCode return non-negative values.
22773
22774 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
22775
22776         * object.c, icall.c, gc.c: revert to address-based hashcode.
22777
22778 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
22779
22780         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
22781
22782 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
22783
22784         * icall.c, class.c: special case <Module>.
22785
22786 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
22787
22788         * icall.c: fix bug in GetNow().
22789
22790 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
22791
22792         * object.c (mono_runtime_class_init): make sure that we call all
22793         static class constructors.
22794
22795 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
22796
22797         * reflection.c: sort methodsemantics table.
22798
22799 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
22800
22801         * reflection.h, reflection.c: honour init locals setting.
22802
22803 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
22804
22805         * icall.c: copied Double ToStringImpl for Single ToStringImpl
22806
22807 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
22808
22809         * reflection.c: support ContructorBuilders in attribute blob creation.
22810
22811 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
22812
22813         * reflection.c: some changes to build a binary that can be run
22814         directly in windows.
22815
22816 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
22817
22818         * loader.c: print a big message when an icall can't be found.
22819
22820 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22821
22822         * string-icalls.c: fix bug 24248.
22823
22824 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
22825
22826         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
22827         icall.c, reflection.h: separate assembly loading by pathname and by
22828         assembly name. Use the MONO_PATH env var to search for assemblies.
22829
22830 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22831
22832         * assembly.c, image.h: add some support for assemblies
22833         with multiple modules.
22834         * class.c, class.h: export mono_class_from_typeref().
22835         * loader.c: remove duplicated code and use mono_class_from_typeref(),
22836         instead.
22837
22838 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
22839
22840         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
22841         documentation says (the ECMA one is correct).
22842
22843 2002-05-02  Dick Porter  <dick@ximian.com>
22844
22845         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
22846         Don't name the synchronisation mutex.
22847
22848 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
22849
22850         * rand.c
22851         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
22852         Make the prototypes match.
22853         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
22854         Same.
22855
22856         * icall.c
22857         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
22858         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
22859         all systems have tm.tm_zone, so use strftime() with %Z to print
22860         the timezone abreviation into a temp string.
22861
22862         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
22863         rather than mono_array_addr() on a MonoString on Big Endian
22864         machines.
22865
22866 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
22867
22868         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
22869         fix bug 24041
22870
22871 2002-04-30  Dick Porter  <dick@ximian.com>
22872
22873         * socket-io.c: Cope with SOCKET being an integer rather than a
22874         pointer now.
22875
22876         * threads.c: Added Thread_free_internal, to deal with thread
22877         handle cleanup.  Moved calls to handle_store() and handle_remove()
22878         to start_wrapper(), so each can only be called once.  Allocate
22879         synchronisation blocks with GC_malloc(), and use GC finalisation
22880         to close the handles.
22881
22882         * icall.c: added System.Threading.Thread::Thread_free_internal
22883
22884 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22885
22886         * icall.c: support Environment.Exit, CommandLineArgs().
22887
22888 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22889
22890         * object.c, object.h: added mono_runtime_run_main () and
22891         mono_runtime_get_main_args () for use in System.Environment.
22892
22893 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
22894
22895         * gc.c: fix thinko, enable actual finalization since the jit is now
22896         fixed.
22897
22898 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22899
22900         * gc.c, object.c: take into account that an object may be offset wrt the address
22901         returned by GC_malloc().
22902
22903 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
22904
22905         * image.c: handle files without entries in the assembly table (modules).
22906
22907 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
22908
22909         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
22910         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
22911         allowed to be null when it's System.Object class setup.
22912
22913 2002-04-27  Martin Baulig  <martin@gnome.org>
22914
22915         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
22916         if `tb->parent == NULL' rather than crashing.
22917
22918 2002-04-28  Nick Drochak  <ndrochak@gol.com>
22919
22920         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
22921         calling acos() where asin() should have been called.
22922
22923 2002-04-26  Martin Baulig  <martin@gnome.org>
22924
22925         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
22926         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
22927         there's a subdirectory called `System', but we don't want to read that
22928         subdirectory as an assembly.
22929
22930 2002-04-25  Martin Baulig  <martin@gnome.org>
22931
22932         * debug-symfile.c: Reflect latest MonoString changes.
22933
22934 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
22935
22936         * rand.c, rand.h: instance method icalls need to have an explicit
22937         this pointer as first argument in the C implementation.
22938
22939 2002-04-25  Nick Drochak <ndrochak@gol.com>
22940
22941         * icall.c: Fix typo in map for GetNonZeroBytes
22942
22943 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
22944
22945         * string-icalls.c : String does now passes unit tests without any 
22946         errors, the following changes has been made:
22947         
22948         Implemented replace methods.
22949         Renaming of methods to (try) follow the standard.
22950         Fixed compare ordinal
22951         Made all memory allocated directly to function instead of via icall function.
22952         Small performance fix in is_in_array function
22953                         
22954  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
22955
22956         c (mono_string_Internal_ctor_charp_int_int):
22957         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
22958         sindex < 0, throw ArgumentOutOfRangeException instead of
22959         ArgumentNullException.
22960
22961         Added new check for length == 0, however
22962         I need to make it return String.Empty from the C code.
22963         
22964         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
22965         that calculate the length for us here.
22966         
22967         (mono_string_Internal_ctor_sbytep_int_int): Replaced
22968         mono_string_new_utf16 with mono_string_new, since value is utf8.
22969
22970 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22971
22972         * object.c: register the object for finalization if needed.
22973         Allocate one more char in the string for the terminating 0 char.
22974
22975 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22976
22977         * class.c, class.h, image.c: check if a type implemenst a destructor.
22978         Use the proper key for array class lookups.
22979         * icall.c: register the icalls in the System.GC class.
22980         * gc.c, gc.h: GC-related functions and icalls.
22981
22982 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22983
22984         * icall.c:
22985         * socket-io.c:
22986         * unicode.c: free some strings gotten from mono_string_to_utf8 and
22987         changed a couple of free () by g_free ().
22988
22989         * decimal.c: one-liner in the comments for decimal2string ().
22990
22991 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
22992
22993         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
22994
22995 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
22996
22997         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
22998         * object.c (mono_runtime_invoke_array) : handle null in params
22999
23000 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
23001
23002         * string-icalls.c: fixed bug in split (one off bug)
23003
23004 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
23005
23006         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
23007         * icalls.c: added String::Equals as internal method
23008
23009 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
23010
23011         * threads.c: fixed bug in the double interlocked functions
23012
23013 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
23014
23015         * threads.c: implemented all of the new interlocked icalls.
23016         * string-icalls.c: fix a bug in insert.
23017         * icalls.c: added the icalls for interlocked, removed old string functions.
23018         
23019 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
23020
23021         * loader.c: fix off-by-one error when reading argument names.
23022
23023 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23024
23025         * profiler.c: win32 counter implementation (untested).
23026         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
23027         (the latter needs testing and more complete impl. from win32 folks).
23028
23029 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
23030
23031         * object.c: mono_array_new_full workaround mono_array_class_get
23032         problem.
23033
23034 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23035
23036         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
23037         * object.h (mono_string_chars): Changed casting type.
23038
23039 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23040
23041         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
23042                            method signatures to use gunichar2 instead of gint16.
23043
23044 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
23045
23046         * object.h, object.c: domain-specific versions of mono_object_new and
23047         mono_array_new.
23048
23049 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
23050
23051         * object.c: changed String layout
23052
23053         * string-icalls.c (mono_string_Internal_ctor_chara): added
23054         internal string constructors.
23055
23056 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
23057
23058         * threads.c: pass 'this' to the thread start routine.
23059
23060 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23061
23062         * string-icalls.c: fix IndexOf and LastIndexOf. Now
23063         InternalCompareStr don't call twice mono_string_cmp_char for the last
23064         character. Improved performance in mono_string_cmp_char.
23065
23066 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
23067
23068         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
23069         code into its own library: libmonoruntime.
23070
23071 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
23072
23073         * object.h, object.c: changed array format so that szarrays do not
23074         require a bounds structure.
23075         * icall.c, appdomain.c: support for new szarray format.
23076
23077 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
23078
23079         * metadata.c: compare also the retuns type when comparing signatures:
23080         we didn't do this as an optimization since really overloaded methods
23081         must differ also in the arguments, but this doesn't work with
23082         low-level IL code (or when using explicit conversion operators: see
23083         bug#23498 for an example).
23084
23085 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
23086
23087         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
23088
23089 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
23090
23091         * icall.c: make MonoType::GetElementType its own icall.
23092
23093 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
23094
23095         * icall.c: remove MonoMethod_get_Name().
23096         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
23097         object.
23098
23099 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23100
23101         * string-icalls.c: optimized a few methods.
23102
23103 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23104
23105         * icall.c: added all new string internal calls
23106         * string-icalls.c: added, new string internal call implementation.
23107         * object.c: added mono_string_new_size for allocating a string a size
23108
23109 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
23110
23111         * object.c (mono_object_isinst): use the same code as in the
23112         optimized x86 version.
23113
23114 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23115
23116         * profiler.c: TSC-based timer code (faster and more accurate).
23117         Not hooked up in configure, yet (set USE_X86TSC to 1).
23118
23119 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
23120
23121         * profiler.c, profiler.h: track time spent compiling methods.
23122         * threads.c: track thread creation/destruction.
23123
23124 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
23125
23126         * profiler.c, profiler.h, profiler-private.h: profiling interface
23127         and sample implementation. Moved here so that it can be used also by
23128         the jit.
23129
23130 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
23131
23132         * reflection.c, reflection.h: keep types and other handles separate in
23133         the hash tables for referred tokens. Add guid for modules.
23134
23135 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
23136
23137         * assembly.c: fix bugs found with valgrind.
23138         * metadata.h, metadata.c: added mono_metadata_guid_heap().
23139
23140 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
23141
23142         * threads: added icall support for getting current domain for
23143                    the thread.
23144  
23145 2002-04-13  Martin Baulig  <martin@gnome.org>
23146
23147         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
23148         (MonoDebugVarInfo): Added `index' field for register based addresses.
23149         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
23150         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
23151         `MonoDebugVarInfo *params' and `guint32 this_offset' with
23152         `MonoDebugVarInfo *this_var'.
23153
23154         * debug-symfile.c (relocate_variable): New static function to write
23155         a location description for a local variable or method parameter.
23156
23157 2002-04-12  Martin Baulig  <martin@gnome.org>
23158
23159         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
23160         stack offset and begin/end scope address of a local variable.
23161         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
23162         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
23163         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
23164
23165         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
23166         Added new relocation types for start/end scope of a local variable.
23167
23168 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
23169
23170         * object.h: add mono_object_domain() macro.
23171         * reflection.c: handle typespecs.
23172         * icall.c: MonoMethod::get_Name() implementation.
23173
23174 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23175
23176         * icall.c: String::GetHashCode() icall implementation.
23177
23178 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23179
23180         * icall.c: String::IndexOfAny icall.
23181         * object.c, object.h: make array->max_length more useful.
23182         Intrduced mono_object_class() and mono_string_length() macros.
23183
23184 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23185
23186         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
23187         instead of g_unichar_isdigit.
23188
23189 2002-04-11  Nick Drochak  <ndrochak@gol.com>
23190
23191         * icall.c: Implement a simple Double.ToString().
23192
23193 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
23194
23195         * appdomain.h: only io-layer.h is supposed to be included.
23196         * icall.c: explicitly import environ. Fix warning.
23197
23198 2002-04-10  Nick Drochak  <ndrochak@gol.com>
23199
23200         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
23201                 return true even if it's not Daylight Savings time.
23202                 Only return false for the case where the function isn't
23203                 implemented for a plaform (read Windows).
23204
23205 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23206
23207         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
23208         data with a mutex.
23209
23210 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
23211
23212         * mempool.c (mono_mempool_alloc): only use g_malloc when
23213         absolutely necessary.
23214
23215 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
23216
23217         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
23218
23219         * class.c (mono_class_vtable): use domain mempool to allocate vtable
23220         (mono_class_proxy_vtable): use domain mempool
23221
23222 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
23223
23224         * appdomain.h, appdomain.c: split initialization that requires the
23225         execution engine support into mono_runtime_init().
23226
23227 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
23228
23229         * class.c (mono_class_init): don't include vtable inside MonoClass
23230         to save some memory, gather some statistics.
23231         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
23232
23233 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
23234
23235         * icall.c: internalcall implementation for ValueType.Equals().
23236
23237 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
23238
23239         * object.c (mono_message_init): moved 
23240         (mono_runtime_exec_main): new arch. independent impl.
23241         (mono_runtime_invoke_array): new method - like
23242         mono_runtime_invoke, but you can pass an array of objects.
23243         (mono_remoting_invoke): new arch. independent impl.
23244         (mono_message_invoke): new arch. independent impl.
23245         (mono_runtime_class_init): new arch. independent impl.
23246         (mono_runtime_object_init): new arch. independent impl.
23247
23248 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23249
23250         * metadata.c, object.c, reflection.c: documented the exported
23251         functions.
23252
23253 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
23254
23255         * icall.c: simpler code to pass the assembly builder data to corlib.
23256         Implement GetNestedTypes() internalcall.
23257
23258 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
23259
23260         * class.c: warn if a type can't be loaded.
23261
23262 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
23263
23264         * image.h: typedef MonoImageOpenStatus
23265         * types.h: removed unused file
23266         
23267 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
23268
23269         * icall.c: Enum_ToObject accepts enum value arguments.
23270
23271 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
23272
23273         * class.c: move initialization of properties, events and nested
23274         classes, so that they happen for interfaces, too.
23275
23276 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
23277
23278         * icall.c: cleanup some ugly casts in Array_SetValue*.
23279
23280 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
23281
23282         * icall.c: the values array fro enums is of the correct type, now.
23283         Implement (correctly) getFullName instead of assQualifiedName for
23284         MonoType.
23285         * reflection.h, reflection.c: added mono_type_get_name ().
23286
23287 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
23288
23289         * assembly.c, image.h: for each MonoImage, record from wich assembly
23290         it was loaded.
23291         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
23292         Make Type.Assembly work.
23293
23294 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
23295
23296         * debug-symfile.h: use char* instead of gpointer to avoid
23297         unnecessary casts.
23298
23299         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
23300
23301         * icall.c (ves_icall_InternalExecute): impl. FielSetter
23302         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
23303
23304 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
23305
23306         * icall.c (mono_message_init): impl. (code cleanup)
23307         (ves_icall_InternalExecute): impl. FieldGetter
23308
23309         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
23310         defined we call all (non-static)methods through the vtable. 
23311
23312 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
23313
23314         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
23315         finalizer even though the memory is still referenced (and the chunk of
23316         memory is not freed).
23317
23318 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
23319
23320         * assembly.c: fix brokeness.
23321
23322 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
23323
23324         * class.c: kill some warnings. Check explicit interface method
23325         implementation also without considering the namespace.
23326         Load also literal strings in static class data.
23327
23328 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
23329
23330         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
23331         (default_assembly_name_resolver): Make the resolver take the
23332         "base" directory where the assembly was originally defined, so we
23333         can load DLLs that are in the same directory as the assembly that
23334         is being referenced.
23335
23336 2002-03-28  Dick Porter  <dick@ximian.com>
23337
23338         * file-io.h: 
23339         * file-io.c:
23340         * socket-io.c: 
23341         * unicode.h: 
23342         * unicode.c: Warning cleanups
23343
23344 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
23345
23346         * object.h, reflection.h: use the correct type instead of MonoObject.
23347
23348 2002-03-28  Martin Baulig  <martin@gnome.org>
23349
23350         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
23351         (mono_debug_update_symbol_file): Initialize classes if necessary.
23352
23353 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
23354
23355         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
23356         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
23357
23358 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
23359
23360         * assembly.h: fix function prototype.
23361         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
23362         * mono-endian.h: use const cast.
23363
23364 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
23365
23366         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
23367
23368 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
23369
23370         * loader.c: don't assert when a typeref can't be loaded, give
23371         a chance to the runtime to trow an exception instead.
23372         * loader.h: fix warning.
23373
23374 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
23375
23376         * class.c (mono_class_proxy_vtable): added proxy support
23377
23378 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
23379
23380         * icall.c: removed last of PAL calls, added System.Environment
23381         * file-io.h, file-io.c: MonoIO implementation
23382         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
23383
23384 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
23385
23386         * appdomain.c: do not use the byte marker in ldstr table lookup.
23387         * debug-helpers.c: allow two ':' to separate class and method name.
23388         * object.c: allocate arrays bounds with the GC, too.
23389         * verify: add a few more checks.
23390
23391 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
23392
23393         * reflection.c: output also literal strings. Allocate parameter data
23394         with GC_malloc() (thanks, Martin, for catching this!).
23395
23396 2002-03-26  Martin Baulig  <martin@gnome.org>
23397
23398         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
23399         include the `this' offset in the `param_offsets'.
23400
23401 2002-03-25  Martin Baulig  <martin@gnome.org>
23402
23403         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
23404         mono_debug_get_class() function to get the classes. Added new
23405         relocation types for arrays and strings.
23406         (mono_debug_get_class): New static function to search in all
23407         referenced assemblies for a metadata token.
23408
23409         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
23410
23411 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
23412
23413         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
23414         hold gc-allocated objects. Make the string heap a stream like the
23415         others. Removed duplicated code when writing stream info.
23416         Added asserts to catch possible buffer overflows. Set the sorted map
23417         for tables that need sorting. Added some documentation.
23418
23419 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
23420
23421         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
23422         for interned strings and vtables.
23423
23424 2002-03-24  Martin Baulig  <martin@gnome.org>
23425
23426         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
23427         it in the array since it was created with g_slist_prepend().
23428
23429 2002-03-24  Martin Baulig  <martin@gnome.org>
23430
23431         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
23432         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
23433         (mono_debug_method_from_token): Renamed to
23434         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
23435         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
23436
23437         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
23438         relocation types.
23439
23440         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
23441
23442 2002-03-24  Martin Baulig  <martin@gnome.org>
23443
23444         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
23445         (mono_debug_method_from_token): New func.
23446
23447         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
23448         New interncall, calls mono_debug_local_type_from_signature().
23449         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
23450         calls mono_debug_method_from_token().
23451
23452 2002-03-23  Martin Baulig  <martin@gnome.org>
23453
23454         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
23455         specifies the number of bytes to be converted, not the array size.
23456         Return the number of chars, not the number of bytes.
23457         (ves_icall_iconv_get_chars): The `byteCount' argument
23458         specifies the number of bytes to be converted, not the array size.
23459
23460 2002-03-23  Martin Baulig  <martin@gnome.org>
23461
23462         * reflection.h (MonoReflectionSigHelper): New type.
23463
23464         * reflection.c (mono_reflection_sighelper_get_signature_local),
23465         (mono_reflection_sighelper_get_signature_local): New functions.
23466
23467         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
23468         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
23469         interncalls.
23470
23471 2002-03-23  Martin Baulig  <martin@gnome.org>
23472
23473         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
23474         is_writeable is set.
23475         (mono_raw_buffer_update): New function to write the modified map
23476         back to disk.
23477
23478         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
23479
23480         * debug-symfile.c (mono_debug_update_symbol_file): Call
23481         mono_raw_buffer_update() when done writing.
23482
23483 2002-03-23  Martin Baulig  <martin@gnome.org>
23484
23485         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
23486
23487         * debug-symfile.c: Added support for arguments and local variables.
23488
23489 2002-03-23  Dick Porter  <dick@ximian.com>
23490
23491         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
23492         protected by ifdefs, hence breaking the w32 build.
23493
23494 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23495
23496         * object.c: implement is_interned() the right way.
23497
23498 2002-03-21  Martin Baulig  <martin@gnome.org>
23499
23500         * debug-symfile.[ch]: New files to handle debugging information
23501         files. There's also support to dynamically update these symbol
23502         files to include machine dependent information.
23503
23504 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
23505
23506         * threads.c (mono_thread_create): new function to create thread
23507         from C
23508
23509 2002-03-20  Martin Baulig  <martin@gnome.org>
23510
23511         * icall.c (ves_icall_InternalInvoke): Create a new object if the
23512         method is a constructor.
23513         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
23514         points to ves_icall_InternalInvoke().
23515
23516 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
23517
23518         * file-io.c: Flush shouldn't throw exceptions.
23519
23520 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
23521
23522         * file-io.c: FileStream flush support; FileSetLength now
23523         restores file pointer.
23524
23525 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
23526
23527         * class.c: set image for pointer classes.
23528
23529 2002/03/19  Nick Drochak <ndrochak@gol.com>
23530
23531         * sysmath.c: Forgot one.
23532
23533 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
23534
23535         * sysmath.c: Avoid redefining existing names.
23536
23537 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
23538
23539         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
23540         handled by runtime as icall rather than dllimport from libm.so
23541         * file-io.c, file-io.h: fixed handle argument type.
23542
23543 2002-03-18  Dick Porter  <dick@ximian.com>
23544
23545         * reflection.c (mono_image_get_type_info): rename interface to
23546         iface, because of "#define interface struct" on windows.
23547
23548 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
23549
23550         * class.c, class.h: rename and export mono_ptr_class_get().
23551         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
23552         * reflection.c, reflection.h, icall.c: better/saner type name
23553         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
23554         method signatures.
23555
23556 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
23557
23558         * class.c (mono_class_init): removed hardcoded GHC_SLOT
23559
23560         * icall.c (ves_icall_InternalInvoke): impl.
23561
23562 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
23563
23564         * reflection.c: output the interface map table, too.
23565
23566 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
23567
23568         * class.c (class_compute_field_layout): separate computation of 
23569         static field layout
23570
23571 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
23572
23573         * icall.c: added System.Buffer support.
23574         * file-io.c: moved file icalls from PAL to FileStream.
23575
23576 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
23577
23578         * icall.c (ves_icall_System_Object_GetHashCode): impl.
23579
23580 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
23581
23582         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
23583
23584 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
23585
23586         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
23587
23588 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
23589
23590         * debug-helpers.{c,h}: moved here from monograph some useful functions
23591         to locate a method by name/signature in a class or image. Included
23592         also a small and flexible IL disassembler.
23593
23594 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
23595
23596         * reflection.c: fixup tokens in methods with small header size, too.
23597
23598 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
23599
23600         * object.c (mono_string_to_utf8): remove assert(!error), instead
23601         print a warning. 
23602
23603 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
23604
23605         * icall.c: update to the new mono_Array_class_get interface.
23606
23607 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
23608
23609         * appdomain.c, object.c: Boehm-GC enable.
23610         * icall.c: make get_data_chunk() support split data requests.
23611         Ensure a class is initialized in more cases. Return only the first
23612         property found in GetProperties() or the compiler gets confused. 
23613         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
23614         * reflection.h, reflection.c: add fixup mechanism for field and method
23615         tokens. Initialize assembly->typeref in a single place. Output
23616         properties after events. Support custom attributes for events, too.
23617         Typo fix for paramter custom attrs.
23618
23619 2002-03-07  Martin Baulig  <martin@gnome.org>
23620
23621         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
23622
23623 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
23624
23625         * class.c (mono_array_class_get): fix. for multi. dim. arrays
23626
23627 2002-03-06  Martin Baulig  <martin@gnome.org>
23628
23629         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
23630         non-zero lower bounds. See testcases #F10-#F13.
23631
23632 2002-03-05  Martin Baulig  <martin@gnome.org>
23633
23634         * exception.c (mono_get_exception_argument_out_of_range): New exception.
23635
23636         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
23637         ves_icall_System_Array_GetValue(), only calculate the absolute array position
23638         here.
23639         (ves_icall_System_Array_SetValue): Likewise.
23640         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
23641         as argument and does the actual work. This function is used when copying a
23642         multi-dimensional array.
23643         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
23644         now do all the widening conversions of value types.
23645         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
23646
23647 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23648
23649         * class.c: remove some magic numbers and use the smbolic names,
23650         instead. Added init_events() to load event info at class init time.
23651         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
23652         and mono_metadata_methods_from_event().
23653         * reflection.h, reflection.c: added support for writing out the evnets
23654         related information.
23655
23656 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
23657
23658         * reflection.h, icall.c: use a different method (GetInterfaces)
23659         to gather interface info and add isbyref, isprimitive and
23660         ispointer to the ves_icall_get_type_info() return value.
23661
23662 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
23663
23664         * class.h: stared adding support for events.
23665         * icall.c: split find_members implementation. Added debug icall to get
23666         the address of an object.
23667         * reflection.c: handle TypeBuilders in mono_type_get_object().
23668
23669 2002-03-01  Martin Baulig  <martin@gnome.org>
23670
23671         * icall.c (ves_icall_System_Array_GetLength): This must throw an
23672         ArgumentOutOfRangeException(), not an ArgumentException().
23673         (ves_icall_System_Array_GetLowerBound): Likewise.
23674         (ves_icall_System_Array_GetValue): Improved argument checking.
23675         (ves_icall_System_Array_SetValue): Improved argument checking.
23676
23677 2002-03-01  Martin Baulig  <martin@gnome.org>
23678
23679         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
23680         called with invalid arguments rather than just dying with g_assert().
23681         (ves_icall_System_Array_SetValue): Likewise.
23682         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
23683         raise a NotImplementedException instead.
23684         (ves_icall_System_Array_GetLength): Added argument checking.
23685         (ves_icall_System_Array_GetLowerBound): Added argument checking.
23686
23687 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
23688
23689         * object.h (mono_assert): new macros mono_assert and
23690         mono_assert_not_reached
23691
23692 2002-02-28  Martin Baulig  <martin@gnome.org>
23693
23694         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
23695         and "System::String::IsInterned" to "System::String::_IsInterned".
23696
23697 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
23698
23699         * icall.c: remove hacks for typebuilder. Added icall to create a
23700         modified type from a tybebuilder.
23701         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
23702         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
23703         to create a backing MonoClass for a TypeBuilder.
23704
23705 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
23706
23707         * class.c, class.h: more refactoring of class init.
23708         Export mono_class_setup_mono_type() and mono_class_setup_parent().
23709
23710 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
23711
23712         * marshal.c, marshal.h: start of marshaling interface.
23713
23714 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
23715
23716         * icall.c: fix order in assembly qualified name icall.
23717
23718 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
23719
23720         * class.c: do not free str, since we store it in the hash table.
23721         * reflection.h: add label field to MonoILExceptionInfo.
23722         * reflection.c: handle references to more than one assembly. Handle
23723         case when there isn't a module created in the assembly.
23724
23725 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
23726
23727         * class.c: Fix typo. Start refactoring of class init code.
23728
23729 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
23730
23731         * appdomain.c: exit with 1 on error.
23732         * class.c: we already have the name in MonoClassField.
23733         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
23734         MonoStreamHeader instead of an offset of image->raw_metadata.
23735
23736 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
23737
23738         * appdomain.c (mono_init): Be even more descriptive about the error.
23739
23740 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
23741
23742         * appdomain.c: give the user an informative message when corlib can't
23743         be loaded.
23744
23745 2002-02-26  Martin Baulig  <martin@gnome.org>
23746
23747         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
23748         New icall to get the time zone data.
23749
23750 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
23751
23752         * reflection.c: set virtual and raw size of section correctly.
23753         * threads.c: transfer domain information to newly created threads.
23754
23755 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
23756
23757         * class.c: when instancing a class in a domain, load the default
23758         vaules for static fields from the constant table. Fix System.Enum to
23759         not be an enum.
23760         * icall.c: implement Object::GetType() internalcall. Implemented
23761         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
23762         Fixed checking of binding flags in find_members().
23763         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
23764         * reflection.c: handle enumerations when writing to the constant
23765         table. Use a different object cache for types.
23766
23767
23768 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
23769
23770         * object.c (mono_object_isinst): fix for arrays
23771
23772         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
23773
23774 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
23775
23776         * object.c: don't use mprotect ()  and fix intern pool hash table
23777         lookup for big endian systems.
23778
23779 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
23780
23781         * icall.c: change type_is_subtype_of () signature.
23782
23783 2002-02-21  Mark Crichton  <crichton@gimp.org>
23784
23785         * rand.c, rand.h: Added random number generator for
23786         System.Security.Cryptography classes.
23787
23788         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
23789
23790         * icall.c: Added System.Security.Cryptography calls.
23791
23792 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
23793
23794         * class.c, icall.c, metadata.c: better support for pointer types.
23795         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
23796         * reflection.c: Add support for getting custom attrs for properties
23797         and simplify some code.
23798
23799 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
23800
23801         * icall.c: change getToken () and add custom attribute GetBlob()helper
23802         method.
23803         * reflection.h: add custom attrs array to the reflection builder structures.
23804         * reflection.c: encode and emit custom attributes for all the relevant
23805         reflection objects. Cache fieldref and methodref tokens. Change
23806         mono_image_create_token() interface to take a MonoDynamicAssembly.
23807         More complete custom attributes decoder. Load custom attributes for
23808         Assembly, Field, Method and Constructor objects, too. Make the
23809         returned array an Attribute[] one, not object[]. Added
23810         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
23811         custom attribute constructor.
23812
23813 2002-02-20  Dick Porter  <dick@ximian.com>
23814
23815         * icall.c:
23816         * rawbuffer.c:
23817         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
23818         problem code out for now).
23819
23820 2002-02-19  Radek Doulik  <rodo@ximian.com>
23821
23822         * object.c (mono_ldstr): use hash table to avoid multiple swapping
23823
23824 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
23825
23826         * icall.c: register the GetCustomAttributes method.
23827         * object.c, object.h: add mono_string_new_len ().
23828         * reflection.h, reflection.c: added mono_runtime_invoke(),
23829         mono_install_runtime_invoke(). Added
23830         mono_reflection_get_custom_attrs () to load custom attributes and
23831         create the attribute objects.
23832
23833 2002-02-19  Dick Porter  <dick@ximian.com>
23834         * threads-dummy-types.c:
23835         * threads-dummy-types.h:
23836         * threads-dummy.c:
23837         * threads-dummy.h:
23838         * threads-pthread-types.c:
23839         * threads-pthread-types.h:
23840         * threads-pthread.c:
23841         * threads-pthread.h:  Deleted obsolete files
23842
23843 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
23844
23845         * class.c (mono_class_vtable): runtime init the class when we
23846         allocate static class data.
23847
23848         * icall.c (ves_icall_System_Array_SetValue): check for null values.
23849
23850         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
23851         and String - but we will need generic marshalling support in the
23852         future. 
23853         (mono_init): set the domain name in a ms compatible way
23854
23855         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
23856         String[].
23857
23858 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
23859
23860         * object.c (mono_array_clone): use alloca() instead of g_malloc  
23861         for sizes
23862
23863         * appdomain.c (mono_domain_unload): impl.
23864
23865 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
23866
23867         * appdomain.c, object.c: fix intern pool implementation.
23868         * class.c: fix alignment code.
23869
23870 2002-02-16  Radek Doulik  <rodo@ximian.com>
23871
23872         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
23873         and s2 > s1, just copy lower bytes to be compatible with little
23874         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
23875         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
23876
23877         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
23878         force big_endian to be 1 for big endian machines 
23879         (ves_icall_iconv_new_decoder): ditto
23880
23881 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
23882
23883         * socket-io.c (convert_sockopt_level_and_name): If the system
23884         doesn't define SOL_IP or SOL_TCP, get them by hand using
23885         getprotobyname() and caching the values (because this could be a
23886         slow operation).
23887         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
23888         Use the appropriate struct when the system does support it. Ie,
23889         not all systems have struct ip_mreqn so use struct ip_mreq when
23890         appropriate.
23891
23892 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
23893
23894         * reflection.c: handle finally clauses.
23895
23896 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
23897
23898         * socket-io.c: use g_snprintf() instead of snprintf.
23899
23900 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
23901
23902         * reflection.c (mono_param_get_objects): Cast second argument to
23903         mono_method_get_param_names to a const char** to silence the
23904         compiler warning.
23905
23906         * appdomain.c (mono_domain_assembly_open): Put parens around the
23907         truth statement in the for-loop.
23908
23909         * unicode.c (iconv_convert): Got rid of a compiler warning about
23910         int i being unused when the system has a new iconv.
23911         (iconv_get_length): Same.
23912
23913         * image.c (load_class_names): Cast the second argument to
23914         g_hash_table_insert() to char* to hush compiler warnings about the
23915         arg being a const.
23916         (mono_image_open): Same here.
23917
23918         * socket-io.c: Don't conditionally include sys/filio.h or
23919         sys/sockio.h here anymore since we now get them from
23920         io-layer/io-layer.h
23921         (inet_pton): If the system doesn't support inet_aton, implement
23922         using inet_addr and also #define INADDR_NONE if it isn't defined
23923         by the system.
23924
23925 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
23926
23927         * metadata.c, metadata.h: added function to get packing and size info
23928         of a typedef.
23929         * reflection.h, reflection.c: handle field RVA data. Save info about
23930         the table layout if needed. Assign typedef indexes to all the types
23931         before dumping the info about them to avoid forward reference problems.
23932
23933 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
23934
23935         * socket-io.c (convert_sockopt_level_and_name): ifdef
23936         SO_ACCEPTCONN because it is not defined on my system (old debian)
23937
23938 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
23939
23940         * opcode.c: use stddef.h to get NULL.
23941
23942 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
23943
23944         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
23945         for FIONBIO, FIONREAD and SIOCATMARK.
23946         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
23947         define INADDR_NONE and besides, inet_addr() is deprecated and
23948         should not be used. Use inet_pton() instead - it also has the
23949         added bonus that it can easily handle IPv6 addresses as well.
23950         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
23951
23952 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
23953
23954         * decimal.c: remove _MSC_VER conditional.
23955
23956 2002-02-13  Dick Porter  <dick@ximian.com>
23957
23958         * socket-io.c: 
23959         * icall.c: Internal calls for Blocking, Select, Shutdown,
23960         GetSocketOption and SetSocketOption
23961
23962 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23963
23964         * assembly.cs: better resolver: use it instead of some kludgy
23965         code.
23966
23967 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
23968
23969         * reflection.c: the best way to speed-up the compiler is to avoid
23970         infinite loops.
23971
23972 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
23973
23974         * class.c (mono_class_vtable): changed the object layout
23975         (obj->vtable->class). 
23976         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
23977
23978 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23979
23980         * assembly.c: look for assemblies in the assembly dir, too.
23981
23982 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
23983
23984         * class.c: fix thinko in mono_class_from_type().
23985
23986 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
23987
23988         * exception.h, exception.c: added TypeLoadException.
23989         * object.h, object.c: added mono_array_clone ().
23990         * icall.c: handle throwOnError in AssemblyGetType().
23991         Added Array.Clone().
23992         * opcode.h, opcode.c: use a single value for the opcode val.
23993         Compile fix for non-gcc compilers.
23994
23995 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
23996
23997         * opcodes.c, opcodes.h: export interesting info about opcodes.
23998
23999 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
24000
24001         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
24002         icalls. 
24003
24004         * class.c (class_compute_field_layout): set element_class for enums
24005         (mono_class_create_from_typedef): set element_class for normal classes
24006
24007         * icall.c (ves_icall_System_Enum_get_value): impl.
24008
24009         * class.c (mono_class_create_from_typedef): do not set valuetype
24010         flag for System.ValueType and System.Enum
24011
24012 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
24013
24014         * unicode.c (iconv_convert): fix big endian problem.
24015
24016 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24017
24018         * class.c: add asserts if we are ever going to scribble over memory.
24019         * socket-io.c: not all systems have AF_IRDA defined.
24020
24021 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
24022
24023         * class.c (class_compute_field_layout): do not consider static
24024         fields to compute alignment
24025
24026 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
24027
24028         * appdomain.c (mono_appdomain_get): impl.
24029         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
24030
24031 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
24032
24033         * icall.c: ignore "file://" prefix when loading an assembly.
24034
24035 2002-01-23  Dick Porter  <dick@ximian.com>
24036
24037         * socket-io.c:
24038         * icall.c:
24039         * Makefile.am: Added socket support
24040
24041 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
24042
24043         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
24044         code back.  This should return the assemblies that are loaded by
24045         the runtime on behalf of an application domain. 
24046
24047         The current implementation is still broken, it just returns every
24048         assembly loaded, but until we get real applications domain this
24049         will do.
24050
24051 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
24052
24053         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
24054         AppDomain object.
24055
24056 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
24057
24058         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
24059         the mono_class_from_name lookup.
24060         (ves_icall_get_parameter_info): ditto.
24061         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
24062         method.
24063         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
24064
24065 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
24066
24067         * class.c: load also nested classes on class init.
24068         System.ValueType instance methods gets passed boxed
24069         values, unless methods in derived classed that get a pointer to the
24070         data.
24071         * icall.c: use better name parsing code in GetType().
24072         * image.c, image.h: add mono_image_loaded ().
24073         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
24074         * reflection.c, reflection.h: added mono_reflection_parse_type().
24075
24076 2002-01-22  Veronica De Santis <veron78@interfree.it>
24077
24078         * icall.c : Added mapping of internal calls for Manual and Auto reset events
24079         * threads.c : Added the implementation of internal calls for events
24080         * threads.h : Added prototypes of internal calls for events
24081         
24082 2002-01-21  Radek Doulik  <rodo@ximian.com>
24083
24084         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
24085
24086 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
24087
24088         * class.c (mono_class_init): set min_align to 1 (instead of 0)
24089         (mono_class_value_size): use min_align
24090
24091 2002-01-20  Dick Porter  <dick@ximian.com>
24092
24093         * threads.h:
24094         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
24095         so it compiles on w32.
24096
24097 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
24098
24099         * metadata.c (mono_type_stack_size): impl.
24100
24101         * class.c (mono_class_get_field): impl. memberref token
24102
24103 2002-01-16 Veronica De Santis <veron78@@interfree.it>
24104
24105         * icall.h : Added the internal calls mapping for CreateMutex_internal
24106                     and ReleaseMutex_internal.
24107         * threads.h : Added the prototype of mutexes internal calls.
24108         * threads.c : Added the implementations of mutexes internal calls.
24109
24110 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
24111
24112         * metaparse.h: removed unused file.
24113         * reflection.c, reflection.h: added stream_data_align () function 
24114         to align data in streams and keep stream aligned. Add support for
24115         exception support in method headers.
24116
24117 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
24118
24119         * unicode.c: make iconv_convert () return the number of bytess written
24120         in the output buffer.
24121
24122 2002-01-15  Dick Porter  <dick@ximian.com>
24123         * threads.c: Make the runtime's idea of infinite timeouts coincide
24124         with the class library's
24125
24126         Fix a particularly egregious bug in mono_thread_cleanup(). That
24127         code was so utterly bogus it must have been written on a Monday.
24128
24129 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
24130
24131         * reflection.h: add subtypes field to TypeBuilder.
24132         * reflection.c: encode constants for literal fields.
24133         Handle subtypes. Fix user string token (and add a zero byte)
24134         at the end.
24135         
24136 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
24137
24138         * class.c (mono_class_init): bug fix: assign slot numbers for
24139         abstract methods.
24140
24141 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24142
24143         * reflection.c: don't try to output a code RVA for abstract methods.
24144         Small fixes for method header format. Output parameter info to the
24145         ParamDef table. Save method overriding info to MethodImpl table.
24146         Fix property support. Allow typedef.extends to be a type in the
24147         building assembly.
24148         * verify.c: fix off-by-one error.
24149
24150 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
24151
24152         * class.c: fix mono_class_from_mono_type () for szarray types.
24153         Remove unused cache check in mono_class_from_type_spec().
24154         * icall.c: *type_from_name () functions handle simple arrays and byref.
24155         * reflection.c: handle byref and szarray types. Handle methods without
24156         body (gets P/Invoke compilation working). Handle types and fields in
24157         get_token ().
24158         * reflection.h: add rank to MonoTypeInfo.
24159
24160 2002-01-10  Dick Porter  <dick@ximian.com>
24161
24162         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
24163         internal calls
24164
24165 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
24166
24167         * icall.c: initialize class in type_from_handle ().
24168         Loop also in parent classes for get_method ().
24169         * reflection.c: properly encode class and valuetype types.
24170         Start on encoding TypeBuilder types. Handle fieldrefs.
24171         Use correct length when registering a user string.
24172         Handle ConstructorBuilder and MonoMethod in get_token ().
24173         Make mono_type_get_object () aware of cached types.
24174         * object.c: back out change to mono_string_new ().
24175
24176 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
24177         * object.c: mono_string_new should return a NULL when the string 
24178         passed in is NULL -- not try to deference it.
24179         
24180 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
24181
24182         * icall.c: hack to make IsSubType work for TypeBuilders.
24183         * reflection.c: emit constructors before methods.
24184         Retrieve param names in mono_param_get_objects().
24185
24186 2002/01/05  Nick Drochak  <ndrochak@gol.com>
24187
24188         * Makefile.am: fix list of headers and sources so automake 1.5
24189         doesn't complain. Removed \# at end of list.
24190
24191 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
24192
24193         * reflection.c: get token for a method ref. Set return type of
24194         constructor to void.
24195         * loader.c: debug message.
24196         * class.c: typo fix.
24197
24198 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
24199
24200         * icall.c: fix array init with rank > 1. FindMembers
24201         loops in parent class as well.
24202         * image.c: do not insert nested types in name cache.
24203         * reflection.c: warning fix.
24204         * reflection.h: add override method (for interface impl).
24205
24206 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
24207
24208         * metadata.c: fix customattr decoding.
24209
24210 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
24211
24212         * rawbuffer.cs: Added native Win32 implementation, avoids using
24213         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
24214
24215 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
24216
24217         * class.c: make the low-level routines handle the cache.
24218
24219 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
24220
24221         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
24222
24223 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
24224
24225         * class.c: fix mono_array_element_size() for objects.
24226         * class.h, class.c: add properties to MonoClass and load them
24227         at init time.
24228         * icall.c: check with isinst() when assigning a value to an array
24229         instead of requiring the classes to match exactly.
24230         Implemented icall for System.Type::GetType().
24231         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
24232         enums. Handle bindingflags when looking for methods and fields.
24233         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
24234         and mono_metadata_methods_from_property().
24235         * reflection.h, reflection.c: added structures for propreties,
24236         parameters and enums. Implemented mono_property_get_object() and
24237         mono_param_get_objects().
24238
24239 2001-12-18  Dick Porter  <dick@ximian.com>
24240
24241         * file-io.c: Use mono_string_to_utf16() instead of
24242         mono_string_chars()
24243
24244         * object.c: Added mono_string_to_utf16(), which copies the non
24245         NULL-terminated MonoString into a new double-null-terminated
24246         buffer.
24247
24248 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
24249
24250         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
24251
24252 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
24253
24254         * file-io.c: raise exceptions if handle is invalid.
24255
24256 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
24257
24258         * assembly.c: yet another check for mscorlib.
24259         * class.c, class.h: load nesting info for classes.
24260         * icall.c: many new functions to support the Reflection classes.
24261         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
24262         * reflection.h, reflection.c: mono_image_create_token(),
24263         mono_assembly_get_object(), mono_type_get_object(),
24264         mono_method_get_object(), mono_field_get_object(): methods to return
24265         objects that parallel the C representation of assemblies, types,
24266         methods, fields.
24267
24268 2001-12-11  Dick Porter  <dick@ximian.com>
24269
24270         * icall.c:
24271         * file-io.c: Internal calls for file IO.
24272
24273 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
24274
24275         * tabledefs.h: missing FileAttributes.
24276         * verify.h, verify.c: use is_valid_string () to simplify and check for
24277         valid strings more correctly. Fix warnings and speeling.
24278         Check more tables: Filed, File, ModuleRef, StandAloneSig.
24279         Check code: branches, maxstack, method calls.
24280
24281 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
24282
24283         * object.c (mono_object_allocate): removed static, so that the jit
24284         can allocate value types.
24285
24286         * icall.c (ves_icall_System_DateTime_GetNow): impl.
24287
24288 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24289
24290         * class.c: init enum types right away and register the
24291         token->MonoClass map in mono_class_create_from_typedef ().
24292         * verify.h, verify.c: first cut of the verifier.
24293         * pedump.c: add --verify switch to verify metadata tables.
24294         * tabledefs.h: add some missing enums.
24295
24296 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
24297
24298         * class.c (mono_install_runtime_class_init): impl.
24299         (mono_class_init): renamed mono_class_metadata_init to
24300         mono_class_init, also removed the metadata_inited flag
24301
24302         * object.c (mono_object_isinst): use faster algorithm
24303
24304 2001-11-30  Radek Doulik  <rodo@ximian.com>
24305
24306         * mono-endian.h: reverted last change
24307         added function prototypes
24308
24309         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
24310         add mono-endian.c back
24311
24312         * mono-endian.c: returned back, as Paolo pointed out, it's needed
24313         for unaligned access, I've mistaked it with endianess. I am
24314         sorry.
24315         (mono_read16): fix reverted endianess
24316         (mono_read64): ditto
24317         (mono_read32): ditto
24318
24319 2001-11-30  Dick Porter  <dick@ximian.com>
24320
24321         * exception.c: Implement mono_exception_from_name()
24322
24323 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
24324
24325         * metadata.h, metadata.c: remove params_size and locals_size and their
24326         calculation from the metadata code: they are only usefult to the
24327         interp.
24328
24329 2001-11-29  Radek Doulik  <rodo@ximian.com>
24330
24331         * object.c (mono_ldstr): swap bytes here, it's probably not the
24332         best place, but works for me now, I'll redo it once I know mono
24333         better, also note that I add PROT_WRITE and don't reset back, also
24334         note that it's only affects big endians, so x86 should be OK
24335
24336         * mono-endian.h (read16): use just glib macros for both endians
24337
24338         * mono-endian.c: removed as glib macros are used in in
24339         mono-endian.h so we don't need to care about endianess for read
24340         macros as glib does that for us already
24341
24342 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
24343
24344         * class.h, class.h: take minimum alignment into consideration so
24345         that the fields of a class remain aligned also when in an array.
24346
24347 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24348
24349         * loader.h, loader.c: add mono_method_get_param_names().
24350         * class.c: 0-init class fields.
24351
24352 2001-11-26  Dick Porter  <dick@ximian.com>
24353
24354         * icall.c:
24355         * threads-types.h:
24356         * threads.c: New file that handles System.Threading on all platforms
24357
24358         * object.c: 
24359         * object.h: Remove the synchronisation struct from MonoObject,
24360         replace it with a pointer that gets initialised on demand
24361
24362         * Makefile.am: Replace all the system-specific threading code with
24363         a single file that uses the new wrapper library
24364
24365 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
24366
24367         * class.c, class.h: add mono_install_trampoline() so that the runtime
24368         can register a function to create a trampoline: removes the ugly
24369         requirement that a runtime needed to export arch_create_jit_trampoline.
24370         * object.h, object.c: added mono_install_handler() so that the runtime
24371         can install an handler for exceptions generated in C code (with
24372         mono_raise_exception()). Added C struct for System.Delegate.
24373         * pedump.c: removed arch_create_jit_trampoline.
24374         * reflection.c: some cleanups to allow registering user strings and
24375         later getting a token for methodrefs and fieldrefs before the assembly
24376         is built.
24377         * row-indexes.h: updates and fixes from the new ECMA specs.
24378
24379 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
24380
24381         * class.h, class.c: add enum_basetype field to MonoClass.
24382         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
24383         to get index in the constant table reated to a field, param or
24384         property.
24385         * reflection.h, reflection.c: handle constructors. Set public-key and
24386         version number of the built assembly to 0.
24387         * row-indexes.h: update from new ECMA spec.
24388
24389 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
24390
24391         * class.h, class.c: add a max_interface_id to MonoClass.
24392         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
24393         since it's used to do that. Added mono_type_type_from_obj().
24394         Make GetType() return NULL instead of segfaulting if the type was not
24395         found. Handle simple arrays in assQualifiedName.
24396         * object.h: add a struct to represent an Exception.
24397         * reflection.c: output call convention in method signature.
24398         Add code to support P/Invoke methods and fixed offsets for fields.
24399
24400 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
24401
24402         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
24403         the value.
24404         * icall.c: use mono_array_addr instead of array->vector: fixes the
24405         reflection image writing.
24406         * reflection.c: init call convention byte to 0 in method signature.
24407         Encode the property signature. Don't output property-related methods
24408         twice. Really process the properties for a type (don't cast a field to
24409         a property, my mom always told me that).
24410         Fix 64 bit issues in pointer alignment in a different and more
24411         readable way.
24412
24413 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
24414
24415         * loader.h: Removed type class from MonoDefaults, added monotype
24416
24417         * loader.c: Loaded MonoType, removed loading of Type
24418
24419         * icall.c (my_mono_new_object): Now returns a System.MonoType,
24420         and fills in System.Type._impl with a RuntimeTypeHandle rather
24421         than the actual MonoClass *
24422
24423         (ves_icall_type_from_handle): change from type_class to
24424         monotype_class
24425
24426         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
24427         implemented
24428
24429         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
24430         implemented
24431
24432         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
24433
24434         (ves_icall_System_Reflection_Assembly_GetType): implemented
24435
24436         (ves_icall_System_MonoType_assQualifiedName): implemented
24437
24438         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
24439
24440 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
24441
24442         * assembly.c (mono_assembly_open): Implement a cache for the
24443         assemblies. 
24444
24445         (mono_assembly_close): only destroy the assembly when the last
24446         reference is gone.
24447         
24448 2001-11-09  Dick Porter  <dick@ximian.com>
24449
24450         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
24451
24452 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
24453
24454         * class.c (mono_class_metadata_init): bug fix: compute the right slot
24455
24456 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
24457
24458         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
24459         from Martin Weindel.
24460         * object.h: add mono_string_chars ().
24461
24462 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
24463
24464         * reflection.c (build_compressed_metadata): Eliminates warnings
24465         and uses 64-bit clean code.
24466
24467         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
24468         (mono_type_equal): Change signature to eliminate warnings.
24469
24470 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24471
24472         * icall.c, loader.c: remove the internalcall array constructors.
24473         Changes to match the new MonoArray structure.
24474         * object.h, object.c: an array object doesn't allocate an extra
24475         vector. Add mono_array_new_full () to create jagged arrays easily.
24476
24477 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
24478
24479         * metadata.h, metadata.c: add mono_metadata_field_info () to
24480         retreive all the info about a field from vairous tables.
24481         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
24482         * class.h, class.c: augment MonoClassField with more info.
24483         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
24484         policy and load a field's RVA if needed.
24485
24486 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
24487
24488         * class.c (mono_class_metadata_init): create a trampoline for all
24489         virtual functions instead of actually compiling them.
24490
24491 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
24492
24493         * class.h, class.c: include name in MonoClassField.
24494         * class.c: fix fundamental type of System.Object and System.String.
24495         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
24496         tokens in ldtoken.
24497         * icall.c: remove internalcalls for the Reflection stuff that is now
24498         done in C# code.
24499         * loader.c: mono_field_from_memberref () implementation.
24500         * mono-endian.c: thinko (s/struct/union/g).
24501         * object.c, object.h: make the mono_string_* prototypes actually use
24502         MonoString instead of MonoObject.
24503         * reflection.c, reflection.h: updates for changes in the reflection
24504         code in corlib: we use C structures that map to the actual C# classes.
24505         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
24506         fat method header if needed and use the info from the ILGenerator for
24507         methods. Handle fields in types. Misc fixes.
24508
24509 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
24510
24511         * class.c (mono_class_metadata_init): bug fix: always allocate
24512         space for static class data
24513
24514 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
24515
24516         * class.c (mono_compute_relative_numbering): use relative
24517         numbering to support fast runtime type checks.
24518
24519 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
24520
24521         * class.c (mono_class_create_from_typeref): added debugging output
24522         to print class name when MonoDummy is returned instead of real class
24523
24524 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
24525
24526         * class.c (mono_class_metadata_init): interface offset table now
24527         contains pointers into the vtable - this is more efficient for the jit
24528
24529 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
24530
24531         * class.c (mono_class_metadata_init): use a temporary vtable (the
24532         old algorithm only worked for the interpreter, but not for the jit)
24533
24534 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
24535
24536         * loader.c (method_from_memberref): use mono_class_get to get the
24537         class of an array instead of using System.Array directly.
24538         (mono_get_method): also add MEMBERREF methods to the method cache
24539         which usefull for arrays.
24540
24541 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
24542
24543         * pedump.c (arch_compile_method): added to compute vtable entry
24544
24545         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
24546         number of interfaces.
24547         
24548         * class.h: merged MonoArrayClass into MonoClass
24549
24550         * class.c (mono_class_create_from_typedef): compute the vtable size and
24551         allocate space to include the vtable inside MonoClass
24552         (mono_class_metadata_init): initialize the vtable
24553
24554 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
24555
24556         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
24557         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
24558         * image.c: endian fixes by Laurent Rioux.
24559         * object.h, object.c: rename MonoStringObject to MonoString and
24560         MonoArrayObject to MonoArray. Change some function names to conform to
24561         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
24562         guint16* as first argument, so don't use char*.
24563         Provide macros to do the interesting things on arrays in a portable way.
24564         * threads-pthread.c: updates for the API changes and #include <sched.h>
24565         (required for sched_yield()).
24566         * icall.c: updates for the API changes above.
24567         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
24568         platforms that need them.
24569
24570 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
24571
24572         * class.c: set the correct type for all the fundamental
24573         type when loading the class.
24574
24575 2001-10-05  Dick Porter  <dick@ximian.com>
24576
24577         * threads-pthread.c (pthread_mutex_timedlock): Simple
24578         compatibility version for C libraries that lack this call.
24579
24580 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
24581
24582         * class.c: MonoTypes stored in MonoClass are stored as
24583         fundamental MonoTypes when the class represents a
24584         fundamental type (System.Int32, ...).
24585         The TypeHandle return by ldtoken is a MonoType*.
24586         * icall.c: ves_icall_get_data_chunk () write out all the
24587         PE/COFF stuff. Implement ves_icall_define_method (),
24588         ves_icall_set_method_body (), ves_icall_type_from_handle ().
24589         * image.c: properly skip unknown streams.
24590         * loader.h, loader.c: add type_class to mono_defaults.
24591         * metadata.c, metadata.h: export compute_size () as
24592         mono_metadata_compute_size () with a better interface.
24593         Typo and C&P fixes.
24594         * pedump.c: don't try to print the entry point RVA if there is no entry point.
24595         * reflection.c, reflection.h: many cleanups, fixes, output method
24596         signatures and headers, typedef and typeref info, compress the metadata
24597         tables, output all the heap streams, cli header etc.
24598         * row-indexes.h: typo fixes.
24599
24600 2001-10-04  Dick Porter  <dick@ximian.com>
24601
24602         * object.h: Add a synchronisation mutex struct to MonoObject
24603
24604         * object.c (mono_new_object): Initialise the object
24605         synchronisation mutexes
24606
24607         * icall.c: System.Threading.Monitor internal calls
24608         
24609         * threads-pthread.h:
24610         * threads-pthread.c: System.Threading.Monitor internal calls
24611
24612         * threads-types.h: New file, includes the system-specific thread
24613         structures
24614         
24615         * threads-pthread-types.h:
24616         * threads-pthread-types.c: New files, handle pthread-specific
24617         synchronisation types
24618
24619         * threads-dummy-types.h: 
24620         * threads-dummy-types.c: New files of dummy support for
24621         thread-specific types
24622
24623         * metadata.c:
24624         * image.c:
24625         * pedump.c: include mono-endian.h not endian.h
24626         
24627         * Makefile.am: More threads files.
24628         Name mono-endian.h not endian.h
24629
24630 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
24631
24632         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
24633         stuff and implement a few more bits.
24634         * icall.c: a field needs to be dereferenced twice. Do not use the same
24635         name for two variables in the same scope.
24636         * image.c, image.h: cleanups.
24637
24638 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
24639
24640         * class.c (mono_class_metadata_init): bug fix: compute the right size
24641
24642 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
24643
24644         * icall.c: implemented some of the Reflection internalcalls.
24645         * image.c, image.h: start writing out the PE/COFF image.
24646         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
24647         that does the reverse than decode_blob_size ().
24648         * object.c: use mono_metadata_encode_value (). Move here
24649         temporary implementation of mono_string_to_utf8 ().
24650         * rawbuffer.c: make malloc_map static.
24651
24652 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
24653
24654         * metadata.c: fix type comparison for arrays.
24655         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
24656         Added a couple of new classes to monodefaults.
24657         * icall.c: added a couple of Reflection-related internalcalls.
24658         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
24659         Added a byval_arg MonoType to MonoClass.
24660
24661 2001-09-28  Dick Porter  <dick@ximian.com>
24662
24663         * icall.c:
24664         * threads-pthread.h: 
24665         * threads-pthread.c: Implemented internal calls for
24666         LocalDataStoreSlot operations.  Applied mutexes around all shared
24667         data.  Reworked the thread creation and Start() operations to
24668         avoid a race condition.
24669         
24670         * threads-dummy.h:
24671         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
24672
24673 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
24674
24675         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
24676
24677 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
24678
24679         * class.c, loader.c: warn and return NULL instead of erroring out.
24680         * icall.c: added System.AppDomain::getCurDomain().
24681         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
24682
24683 2001-09-25  Dick Porter  <dick@ximian.com>
24684
24685         * threads-pthread.h:
24686         * threads-pthread.c: Implemented timed thread joining and added
24687         System.Threading.Thread::Join_internal internal call
24688
24689         * icall.c: Added System.Threading.Thread::Join_internal internal call
24690
24691         * threads-dummy.h:
24692         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
24693
24694 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
24695
24696         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
24697         mono_string_intern () to implement the semantics of the ldstr opcode
24698         and the interning of System.Strings.
24699         * icall.c: provide hooks to make String::IsIntern and String::Intern
24700         internalcalls.
24701
24702 2001-09-23  Dick Porter  <dick@ximian.com>
24703
24704         * threads-dummy.c: 
24705         * threads-dummy.h: New files of dummy threading routines
24706
24707         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
24708         support code based on system specifics
24709
24710         Rename PTHREAD_LIBS to THREAD_LIBS
24711         
24712 2001-09-23  Dick Porter  <dick@ximian.com>
24713
24714         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
24715         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
24716         internal calls.
24717         (mono_thread_init): Set up a Thread object instance to return when
24718         the main thread calls Thread.CurrentThread
24719         (mono_thread_cleanup): Wait for all subthreads to exit
24720
24721         * icall.c: New internal calls for System.Threading.Thread::Sleep
24722         (including Schedule) and CurrentThread
24723
24724         * threads.h: New file, to insulate thread-specific stuff from the
24725         rest of the code
24726
24727 2001-09-21  Dick Porter  <dick@ximian.com>
24728
24729         * threads-pthread.h: 
24730         * threads-pthread.c: New file, for handling pthreads-style
24731         threading support.  Start() now starts a new thread and executes
24732         the ThreadStart delegate instance.
24733
24734         * icall.c: Added the internalcall for
24735         System.Threading.Thread::Start_internal
24736
24737         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
24738
24739 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
24740
24741         * loader.c: work around the different signatures for delegates
24742         constructors csc generates in compiled code vs the ones compiled in mscorlib.
24743
24744 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
24745
24746         * class.h, class.c: add mono_class_get_field_from_name ().
24747         * *: Fix C comments and other ANSI C issues.
24748
24749 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
24750
24751         * endian.h, assembly.c: fix some endianness issues.
24752
24753 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
24754
24755         * loader.h, load.c: add delegate_class to mono_defaults.
24756         Handle runtime provided methods in mono_get_method ().
24757
24758 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
24759
24760         * loader.c (mono_get_method): use pinvoke for internal call
24761
24762         * icall.c: use pinvoke for internal call
24763
24764         * loader.c (method_from_memberref): set the method name
24765
24766 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
24767
24768         * metadata.c: help the compiler generate better code for
24769         mono_class_from_mono_type ().
24770
24771 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
24772
24773         * class.c (mono_class_metadata_init): delayed computing of the
24774         class size to mono_class_metadata_init ()
24775
24776 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
24777
24778         * class.c, class.h: add an interfaces member to MonoClass.
24779         * image.c, image.h: add assembly_name field to MonoImage
24780         from the assembly table.
24781         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
24782
24783 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
24784
24785         * class.c: Handle Array in mono_class_from_mono_type ().
24786         * metadata.c, pedump.c: some endian fixes.
24787
24788 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
24789
24790         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
24791         * metadata.c: fix small problem introduced with the latest commit.
24792
24793 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
24794
24795         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
24796         We don't need a MonoMetadata pointer anymore to compare signatures in
24797         mono_metadata_signature_equal (), update callers.
24798         Reduced memory usage an number of allocations for MonoMethodHeader and
24799         MonoMethodSignature.
24800
24801 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
24802
24803         * metadata.c: added compare for szarray.
24804
24805 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
24806
24807         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
24808         and add a couple more types to it and mono_defaults. Give an hint on
24809         classes that need implementing in our corlib and are referenced
24810         in mscorlib.
24811
24812 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
24813
24814         * class.h, class.c: keep track if a class is also an Enum.
24815         * loader.c: Implement a couple more types for use in libffi
24816         marshalling. Gives better diagnostics when failing to dlopen
24817         a library. Set method->klass for P/Invoke methods, too.
24818
24819 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
24820
24821         * class.c, class.h: add a MonoType this_arg to MonoClass that
24822         represents a pointer to an object of the class' type that
24823         can be used by the interpreter and later the type cache.
24824         Add best guess alignment info for valuetype objects.
24825
24826 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
24827
24828         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
24829         into MonoType: one less level of indirection and allocation and
24830         simplifies quite a bit of code. Added cache for MonoTypes that are
24831         used frequently, so that we don't need to allocate them all the time.
24832
24833 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
24834
24835         * class.c (mono_class_create_from_typedef): System.Enum is also a
24836         value type, although it does not derive from System.ValueType
24837         (maybe a bug in the ms compiler?)
24838
24839         * metadata.c (mono_type_size): return the right size for value types
24840
24841         * loader.c (mono_get_method): only initialize method header if not abstract
24842
24843         * class.c (mono_class_from_mono_type): use mono_default values. 
24844
24845 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
24846
24847         * *: use MonoClass pointers instead of <type_tokens>
24848         
24849         * class.h: new flag: metadata_inited.
24850
24851         * class.c (mono_class_metadata_init): impl.
24852         (mono_class_instance_size): impl.
24853         (mono_class_data_size): impl.
24854
24855 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
24856
24857         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
24858         MonoClass now has the name and name_space fields. 
24859         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
24860         mono_get_method () takes and optional MonoClass as argument.
24861         Removed mono_typedef_from_name() and added mono_class_token_from_name()
24862         instead that takes advantage of a map from class names to typedef
24863         tokens in MonoImage.
24864
24865 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
24866
24867         * metadata.c: zero is not a valid alignment boundary.
24868         Merge MONO_TYPE_VOID in default decoding code.
24869
24870 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
24871
24872         * image.h: merged MonoMetadata into MonoImage
24873
24874         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
24875         identify the type of elements.
24876
24877 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
24878
24879         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
24880         * cil-coff.h: split MonoMSDOSHeader and add size info.
24881         * image.c: add some consistency checks.
24882         * metadata.c: fix row size computation: one programmer
24883         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
24884         add explanation for the locator routine.
24885         Fix decoding of size in method header.
24886         
24887 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
24888
24889         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
24890         (g_concat_dir_and_file): Bring g_concat_dir_and_file
24891         function from gnome-libs.  This uses the right path separator
24892         based on the OS, and also works around a bug in some systems where
24893         a double slash is not allowed. 
24894         (default_assembly_name_resolver): Use g_concat_dir_and_file
24895         (mono_assembly_open): ditto.
24896
24897 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
24898
24899         * metadata.c (mono_metadata_signature_equal): impl.
24900
24901         * *: void is now a realy MonoType (instead of using NULL)
24902         
24903         * metadata.c (do_mono_metadata_parse_type): use
24904         mono_metadata_parse_type to parse void value.
24905
24906 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
24907
24908         * metadata.c, metadata.h: in the signature and method header store
24909         only the space required for holding the loca vars and incoming arguments.
24910
24911 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
24912
24913         * metadata.c (do_mono_metadata_parse_type): treat void like any
24914         other type (instead of assigning NULL);
24915
24916 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
24917
24918         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
24919
24920 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
24921
24922         * image.c (do_mono_image_open): added a cache for arrays.
24923
24924 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
24925
24926         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
24927         decode a single column from a row in a metadata table and changes
24928         to take advantage of it in the typedef locator (gives a nice speed up).
24929         Store offset info for function params.
24930
24931 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
24932
24933         * image.h (MONO_IMAGE_IS_CORLIB): removed 
24934
24935 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
24936
24937         * assembly.c: how could mono_assembly_close () had ever worked?
24938         * metadata.c, metadata.h: provide offset info for local vars.
24939         Implement mono_type_size () to take care of alignment as well
24940         as size (it was mono_field_type_size in cli/class.c before).
24941
24942 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
24943
24944         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
24945
24946         * assembly.h (CORLIB_NAME): set to corlib.dll
24947
24948         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
24949
24950 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
24951
24952         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
24953         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
24954         tokentype.h: massive namespace cleanup.
24955
24956 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
24957
24958         * metadata.h, metadata.c: decode exception clauses when parsing method header.
24959
24960 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
24961
24962         * metadata.c (mono_metadata_free_type): added check for type !=
24963         NULL (void) before calling mono_metadata_free_type()
24964
24965 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
24966
24967         * metadata.h, row_indexes.h: added header with enumerations to use
24968         to index in the columns from tables in metadata and to decode coded
24969         tokens: we should start using this instead of embedding magic numbers
24970         all over the code.
24971
24972 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
24973
24974         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
24975         Move metadata_t info from cli_image_info_t to MonoImage, where
24976         it's easily accessible. Changed all the uses accordingly.
24977         Added the method and class caches to MonoImage.
24978         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
24979         and mono_metadata_decode_value () signature to be more consistent
24980         with the other parse functions (and simplify code). Taken advantage
24981         of zero-length array allocation with GCC. Removed reduntant (and
24982         wrong) MonoFieldType struct and use MonoParam instead. Changed
24983         mono_metadata_parse_field_type () to use common code for parsing.
24984         Added mono_metadata_typedef_from_field () and
24985         mono_metadata_typedef_from_method () to lookup a typedef index from a
24986         field or method token.
24987         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
24988
24989 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
24990
24991         * metadata.c (mono_metadata_parse_field_type): Implement. 
24992         (do_mono_metadata_parse_type): Split engine from
24993         mono_metadata_parse_type, so that we can create smaller structures
24994         for things that just have one pointer to the MonoType (look at
24995         the MonoFieldType)
24996
24997 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
24998
24999         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
25000         as Jan Gray found out, it is incorrect. 
25001
25002 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
25003
25004         * assembly.c: Implement asssembly loading.  This loads an image
25005         and loads all the referenced assemblies.  Come to think of it, we
25006         could always do lazy loading of the assemblies. 
25007
25008         * image.c (mono_image_open): Keep loaded images in a hashtable.
25009
25010         * image.h (MonoImage): Add reference count.
25011
25012 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
25013
25014         * assembly.c (mono_assembly_open): Keep track of the file name in
25015         case the assembly has no ASSEMBLY table.
25016
25017         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
25018         from get.c here.
25019
25020 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
25021
25022         * metadata.c, metadata.h: decode local vars in method header
25023         parse function. Change callers accordingly.
25024
25025 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
25026
25027         * metadata.h, cil-coff.h: protect against multiple inclusion.
25028         Added some new structures to hold information decoded from metadata:
25029         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
25030         and relevant decoding/free functions.
25031         * metadata.c: implement decoding functions. Add warning for out of bounds
25032         index in mono_metadata_locate(). Implement mono_get_method () to retreive
25033         all the info about a method signature and invocation. Remove check on
25034         uninitialized local var in parse_mh() and fix memory leak.
25035
25036 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
25037
25038         * metadata.h: More macros.
25039
25040         * tokentype.h: New file.
25041
25042 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
25043
25044         * assembly.c: added a consistency check and initialize
25045         some structures with g_new0().
25046         * metadata.c: fixed a couple more bugs in table size computation
25047         and add other checks for out-of bound access to metadata.
25048
25049 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
25050
25051         * metatada.c: fix bugs computing table sizes. Spew a
25052         warning when index in string heap is out of bounds.
25053
25054 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
25055
25056         * metadata.h: Add a couple of macros to manipulate tokens. 
25057
25058 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
25059
25060         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
25061         cli_section_tables).
25062
25063 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
25064
25065         * metadata.c (mono_metadata_user_string): New function, provides
25066         access to the UserString heap. 
25067
25068 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
25069
25070         * metadata.c: Add inline documentation.
25071
25072 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
25073
25074         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
25075         files. 
25076
25077 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
25078
25079         * typeattr.h: New file, TypeAttribute flags. 
25080
25081 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
25082
25083         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
25084         mono_assembly_ensure_section): Section loading code.
25085         (load_section_tables): Load the sections.
25086
25087         * mono/metadata/metadata.c (mono_metadata_locate_token,
25088         mono_metadata_locate): Functions to locate the information
25089         definition given a token or a table and an index.
25090         (mono_metadata_compute_table_bases): New.
25091         (compute_size): New function to compute the sizes of the various
25092         tables.
25093
25094         * mono/metadata/metadata.h: Finish listing the different index
25095         types. 
25096
25097         * mono/metadata/pedump.c: Improve to dump new information.
25098
25099 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
25100
25101         * mono/metadata/metadata.c: Entered all the tables matching
25102         Beta2. 
25103
25104         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
25105
25106
25107