Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1
2 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
3
4         * environment.c, environment.h, icall.c: make the GetOSVersionString()
5         icall internal.
6
7 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
8
9         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
10         direct access to the MonoType fields.
11
12 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
13
14         * threads.h: Move some internal functions which were added to this header by
15         mistake to threads-types.h.
16
17         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
18
19 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
20
21         * class-internals.h, class.h, object.h: make MonoRemoteClass
22         and mono_remote_class() internal.
23
24 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
25
26         * metadata-internals.h, class-internals.h, metadata.h: make the
27         MonoType guts internal as well.
28
29 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
30
31         * reflection.h: the MonoTypeNameParse guts are internal now.
32         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
33         are internal now, provide accessors as needed.
34         * metadata.h, metadata-internals.h: the MonoMethodSignature
35         guts are internal now.
36         * Makefile.am: mempool.h is an internal header now.
37         * *.h, *.c: remove glib.h usage from the public headers.
38
39 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
40
41         * culture-info-table.h : regenerated.
42
43 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
44
45         * metadata.c: Add mono_method_get_header_summary which returns minimal
46         information about the header of a method. This is the information used
47         by the inline oracle to reject methods.
48
49         This method doesn't decode local variables and doesn't cache it's result,
50         so it should cause a minimal reduction in memory usage.
51
52         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
53         mono_method_get_header_summary.
54
55 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
56
57         * threads.c (mono_thread_exit): Make sure that the main thread is
58         non-null before dereferencing it.
59
60 2010-02-21  Geoff Norton  <gnorton@novell.com>
61
62         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
63         locale.
64         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
65         before falling back to the posix lookup.
66
67 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
68
69         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
70         the DONT_MANAGE flag set.
71
72 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
73
74         * domain.c: Remove old v1 version strings. Let the runtime
75         default to 2.0 instead of failing because it can't find a
76         working 1.0 instalation.
77
78 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
79
80         * domain.c: Add v4 RC version string.
81
82 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
83
84         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
85         of overflow checking function.
86
87 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
88
89         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
90         generic methods.
91
92         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
93         cases for ParameterInfo.
94
95         Fixes #579493.
96
97 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
98
99         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
100         have has_cctor set. Fixes #575946.
101
102 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
103
104         * appdomain.c: display a warning if the parsing the config file
105         produces any error.
106         Skip the BOM in UTF-8 files.
107         Copy the AppDomainSetup before setting the privateBinPath so that the
108         correct configuration file is read.
109
110 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
111
112         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
113         vtable trampoline per vtable slot index. Not used yet.
114
115 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
116
117         * icall-def.h:
118         * icall.c: add internal call that returns the system page size.
119
120 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
121
122         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
123         'int' for system classes.
124
125 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
126
127         * icall.c, icall-def.h: new icall to check for sufficient
128         stack space.
129
130 2010-02-12  Mark Probst  <mark.probst@gmail.com>
131
132         * reflection.c (ensure_complete_type): Check that reflection_info
133         is set, too.  Fixes crash of corlib testsuite with -O=-all.
134
135 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
136
137         * attrdefs.h:
138         * tabledefs.h: Add NoOptimization flag.
139
140 2010-02-10  Mark Probst  <mark.probst@gmail.com>
141
142         * sgen-gc.c: Don't consider it a missing remset if the target
143         object is pinned - we might have done the store but not added the
144         remset yet.
145
146 2010-02-10  Mark Probst  <mark.probst@gmail.com>
147
148         * sgen-gc.c: When checking for missing remsets, don't assert on
149         the first one, but print them all and then assert.
150
151 2010-02-10  Mark Probst  <mark.probst@gmail.com>
152
153         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
154
155 2010-02-09  Miguel de Icaza  <miguel@novell.com>
156
157         * console-unix.c: On OSX Control-Y is assigned to
158         VDSUSP (non-Posix), the
159         suspend-program-next-time-it-tries-to-read-input command (this is
160         different than C-z, which suspends immediately).
161
162         Do the same thing that bash does and ignore this setting,
163         making our repl/getline support pasting.
164
165 2010-02-10  Mark Probst  <mark.probst@gmail.com>
166
167         * sgen-gc.c: Simple plausibility check for scan_starts.
168
169 2010-02-10  Mark Probst  <mark.probst@gmail.com>
170
171         * sgen-gc.c: Round up when calculating the number of scan starts.
172
173 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
174
175         * reflection.c: Export mono_get_object_from_blob.
176
177         * object-internals.h: Ditto.
178
179         * icall.c: New icall property_info_get_default_value to get the default
180         value of a property. Since using this is not common, no caching is done.
181
182         * icall-def.h: Add new icall.
183
184 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
185
186         * class.c: Add mono_class_get_property_default_value.
187
188         * class-internal.h: Export mono_class_get_property_default_value.
189
190 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
191
192         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
193
194 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
195
196         * sgen-gc.c: introduced critical regions to allow some lockless
197         operations and increase scalability.
198
199 2010-02-10  Geoff Norton  <gnorton@novell.com>
200
201         * reflection.c: Support building with DISABLE_REFLECTION
202
203 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
204
205         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
206         Closes bug #566057.
207
208         * exception.c: fix typo in comment.
209
210 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
211
212         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
213         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
214
215         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
216
217         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
218         the internal API.
219
220         Fixes #574434.
221
222 2010-02-09  Mark Probst  <mark.probst@gmail.com>
223
224         * threads.c: Removed two assertions that were too strict.  Added a
225         clarifying comment.  Fixes #577090.
226
227 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
228
229         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
230         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
231
232         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
233
234         * verify.c (mono_type_get_stack_name): Fix a warning.
235
236 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
237
238         * marshal.c (mono_marshal_get_wrapper_info): Rename from
239         mono_marshal_wrapper_info_from_wrapper.
240
241         * marshal.c (mono_marshal_set_wrapper_info): Rename from
242         mono_marshal_method_set_wrapper_data, and export.
243
244         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
245         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
246         by calling mono_marshal_get_wrapper_info ().
247
248         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
249         small objects which does no size checks.
250
251 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
252
253         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
254
255 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
256
257         * verify.c (mono_method_verify): Use the new basic block formation pass
258         to avoid verifying dead basic blocks. This is the same behavior as the
259         runtime MS verifier.
260
261 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
262
263         * mono-basic-block.c:
264         * mono-basic-block.h: New implementation of a basic block formation pass.
265         The formation pass does static liveness analysis as well to detect dead
266         basic blocks.
267
268 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
269
270         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
271         'this' argument in icalls.
272
273 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
274
275         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
276
277 2010-02-01  Mark Probst  <mark.probst@gmail.com>
278
279         * object.c, domain.c: When using SGen, we must register
280         vtable->type as a root if it's not a MonoType, because then it
281         wasn't pin-alloced.
282
283 2010-02-01  Mark Probst  <mark.probst@gmail.com>
284
285         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
286         at the start of nursery collections, because we might have had
287         degraded allocations which changed next_data.
288
289 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
290
291         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
292         custom attr so this function works in cross-compiling mode.
293
294 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
295
296         * class.c (make_generic_param_class): Initialize interface offsets since we
297         set klass->inited. Fixes #574819.
298
299 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
300
301         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
302         calling the JIT domain cleanup hook.
303
304 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
305
306         * pedump.c (main): Properly set the verifier mode when running the metadata
307         verifier.
308
309 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
310
311         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
312         overlapping fields now that we're called before has_references is set.
313
314         * pedump.c (dump_verify_info): Clear any loader error before verifying another
315         method. Otherwise all sort of weird stuff happens.
316
317 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
318
319         * object.c (mono_field_get_value_object): Handle nullable types correctly.
320         Fixes #572874.
321
322 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
323
324         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
325         Fixes #573322.
326
327 2010-01-23  Mark Probst  <mark.probst@gmail.com>
328
329         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
330         pin_staging_area_index is greater than 0.
331
332 2010-01-22 Miguel de Icaza (miguel@novell.com)
333
334         * loader.c: Since we do nothing with the error returned, pass NULL
335         to ignore the error.
336
337 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
338
339         * reflection.c (typebuilder_setup_fields): Pretend field setup already
340         happened before starting to encode the actual fields. This avoid ciclic
341         dependencies and eventual crashes.
342
343         Fixes #572660.
344
345 2010-01-21  Mark Probst  <mark.probst@gmail.com>
346
347         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
348         atomic and remove the half-constructed hack in SGen.
349
350 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
351
352         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
353         has a recursive reference to itself.
354
355         Fixes #571863.
356
357 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
358
359         * loader.c (mono_method_signature): Fix error message.
360
361 2010-01-21  Mark Probst  <mark.probst@gmail.com>
362
363         * sgen-gc.c: Reuse to-space sections between nursery collections.
364
365 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
366
367         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
368         from the current assembly or mscorlib. Fixes bug #322957.
369
370 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
371
372         * marshal.c: Calculate the target class of the delegete invoke wrappers using
373         get_wrapper_target_class.
374
375 2010-01-19  Mark Probst  <mark.probst@gmail.com>
376
377         * sgen-gc.c: Fix warnings.
378
379 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
380
381         * verify.c (store_local): Better error message.
382
383 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
384
385         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
386         arguments.
387
388 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
389
390         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
391         function is generics variance aware.
392
393 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
394
395         * security-core-clr.c (mono_security_core_clr_can_access_internals):
396         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
397
398 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
399
400         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
401           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
402
403         Code is contributed under MIT/X11 license.
404
405 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
406
407         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
408         on a GTD.
409
410 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
411
412         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
413         return a point to a wrapper specific info structure describing the wrapper.
414         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
415  
416 2010-01-18  Mark Probst  <mark.probst@gmail.com>
417  
418         * sgen-gc.c: Make minor collection section allowance adaptive,
419         depending on the amount of memory reclaimed in the last major
420         collection.  If more memory was reclaimed (i.e. more garbage
421         produced), do the next collection earlier.
422
423 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
424
425         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
426         to itself.
427
428         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
429         the token as parameter.
430
431         * verify-internals.h: Ditto.
432
433         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
434
435         Fixes #571460.
436
437 2010-01-18  Mark Probst  <mark.probst@gmail.com>
438
439         * sgen-gc.c: Make store_remset_buffer_index long.
440
441 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
442
443         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
444
445         Fixes #569579.
446
447 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
448
449         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
450         off precise marking if it is available.
451         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
452
453 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
454
455         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
456
457         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
458         pinned objects.
459
460         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
461         to the array allocator.
462
463 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
464
465         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
466         result of mono_compile_method (), it already includes an ftnptr.
467
468 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
469
470         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
471
472 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
473
474         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
475         hash value which doesn't depend on glib/eglib versions.
476         (mono_metadata_type_hash): Use it.
477
478         * object.c (mono_method_get_imt_slot): Ditto.
479
480 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
481
482         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
483         independently of the GTD.
484
485         * class.c (mono_class_setup_fields): Fail if field has negative offset.
486
487         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
488         to the upper limit since instance_size includes this amount.
489
490         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
491
492         Fixes #569544.
493
494 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
495
496         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
497         with static methods.
498
499         * object.c (build_imt_slots): Avoid asserting when static methods are
500         encountered in an interface.
501
502 2010-01-13  Mark Probst  <mark.probst@gmail.com>
503
504         * sgen-gc.c (to_space_expand): Fix assertion.
505
506 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
507
508         * string-icalls.c: missing declaration fixes.
509         * sgen-gc.c: portability fixes.
510
511 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
512
513         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
514
515         * class.c:
516         * cominterop.c:
517         * icall.c:
518         * object.c: 
519         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
520
521 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
522
523         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
524         it can fail loading the type.
525
526         * class.c: Add mono_class_inflate_generic_class_checked.
527
528         * class.c:
529         * verify.c:
530         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
531
532 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
533
534         * loader.c (mono_method_signature_checked): New internal function taking an
535         MonoError argument.
536
537         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
538         Fixes build on rh 7.3.
539
540 2010-01-10  Aaron Bockover  <abockover@novell.com>
541
542         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
543         at runtime in the same way as on Windows, which yields a relocatable
544         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
545         of the running mono process.
546
547         On TARGET_ARM, fallback () will always be executed.
548
549 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
550
551         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
552
553 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
554
555         * class.c (mono_class_is_assignable_from_slow): Support variant
556         generic delegates.
557
558         * class.c (mono_class_implement_interface_slow): Support types with
559         variant generic arguments.
560
561 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
562
563         * verify.c: Remove some code duplication.
564
565 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
566
567         * object.c: Update docs.
568
569 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
570
571         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
572
573         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
574         fallback trampoline as well.
575
576         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
577         out argument that is set to TRUE if the match was direct. 
578
579         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
580
581         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
582
583 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
584
585         * class.c: Add mono_class_interface_offset_with_variance function that does same
586         as mono_class_interface_offset but takes variance into account.
587
588         * class-internal.h: Export mono_class_interface_offset_with_variance.
589
590         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
591
592 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
593
594         * object.c:
595         * icall.c:
596         * class.c: Add some FIXME for due to variant generic arguments.
597
598         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
599         can't use the simple bitfield check, so call mono_class_is_assignable_from if
600         the bitfield check fails.
601
602 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
603
604         * class.c (mono_class_is_assignable_from): Rework the generics variance code
605         to be easier to read and fix bugs in the case a non generic type implements a variant
606         interface.
607
608         * class.c (mono_class_has_variant_generic_params): Make non static.
609
610         * class-internals.h: Export mono_class_has_variant_generic_params as part of
611         the private API.
612
613 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
614
615         * assembly.c: fix MONO_PATH debug output.
616
617 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
618
619         * culture-info-table.h : regenerated.
620
621 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
622
623         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
624         types that are meant to not have a parent.
625
626 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
627
628         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
629         from the image mempool, so it is not leaked.
630
631 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
632
633         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
634
635 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
636
637         * verify.c (verify_valuetype_layout_with_target): Fix case
638         that can lead to infinite recursion. Fix bug #567861
639
640 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
641
642         * pedump.c: Run code verifier even if image verification fails
643         due to a failed type we. This allows more errors to be shown.
644
645 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
646
647         * class.c (count_virtual_methods): Remove the assert and now
648         fail properly.
649         
650         * class.c (setup_interface_offsets): This can fail now.
651
652         * class.c (mono_class_setup_vtable_general): Check for parent vtable
653         errors. Check setup_interface_offsets errors.
654
655         * class.c (setup_interface_offsets): Simplify the return error logic
656         and remove class_init_ok.
657
658         Fixes #560327.
659
660 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
661
662         * class.c (mono_class_init): Do class verification at the beginning. Add
663         some asserts to avoid tripping into invalid memory.
664
665         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
666         g_error and a decent message.
667
668         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
669
670         Fixes #567548.
671
672 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
673
674         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
675         as inline functions instead of defining them in mempool.c.
676
677         * metadata-internals.h (MonoImageSet): New structure representing a set of
678         MonoImages, which own a collection of generic instances.
679
680         * metadata.c: Get rid of the global generic caches, instead assign each generic
681         instance to the image set which consists of all the images referenced by the
682         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
683         the memory used by generic instances to be allocated from a per image-set mempool
684         later.
685
686 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
687
688         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
689
690 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
691
692         * appdomain.c (zero_static_data): Fix a warning.
693
694         * locales.c (construct_culture_from_specific_name): Applied patch from
695         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
696         not found. Fixes #567900.
697
698 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
699
700         * loader.c (mono_method_get_signature_full): Remove two asserts.
701         Return NULL instead so that the verifier can handle both cases 
702         gracefully.
703
704 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
705
706         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
707         so we can properly fail types instead of crashing.
708
709         Fixes #567676.
710
711 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
712
713         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
714         generic method.
715
716 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
717
718         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
719
720 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
721
722         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
723         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
724         we can't remove it from it since we don't hold the lock.
725         (mon_new): Free the orphaned events here when a mon structure is added to the
726         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
727         this down.
728
729 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
730
731         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
732         as max stack might be zero.
733
734         Fixes #562320.
735
736 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
737
738         Rework all uses of mono_class_setup_methods to accept that it can fail now.
739
740         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
741         instances if the GTD did.
742
743         * class.c (mono_class_setup_properties): Ditto.
744
745         * class.c (mono_class_setup_events): Ditto.
746
747         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
748
749         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
750         error setting.
751
752         * class.c (mono_class_init): Fail if GTD did.
753
754         * cominterop.c:
755         * generic-sharing.c:
756         * icall.c:
757         * loader.c:
758         * object.c:
759         * verify.c: Properly handle failure of mono_class_setup_methods.
760
761 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
762
763         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
764         mono_class_inflate_generic_method_full internal.
765
766         * class.c (inflate_generic_context): Now takes a MonoError argument.
767
768         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
769         errors.
770
771 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
772
773         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
774         they cannot be patched. Partly fixes #564408.
775
776 2009-12-24  Mark Probst  <mark.probst@gmail.com>
777
778         * metadata-internals.h, reflection.c: Use the
779         MonoDynamicImage.handleref hash table only with unmanaged keys,
780         and add a managed hash table handleref_managed for managed keys.
781
782 2009-12-24  Mark Probst  <mark.probst@gmail.com>
783
784         * sgen-gc.c: Unset to-space bumper between collections.  It might
785         become invalid due to degraded allocations.
786
787 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
788
789         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
790         with the one from the original method.
791
792         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
793         compatibility.
794
795         * verify-internals.h: Add new function to the internal API.
796
797 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
798
799         * culture-info-tables.h: regenerated it to include the Georgian culture.
800
801 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
802
803         * sgen-gc.c: Include mono/utils/memcheck.h.
804
805         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
806         instead of the current domain, since the two might not match if this is called
807         from the debugger.
808
809         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
810         domain which created this assembly.
811
812 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
813
814         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
815
816 2009-12-17  Mark Probst  <mark.probst@gmail.com>
817
818         * sgen-gc.c: Managed implementation of the specialized generic
819         store write barrier.
820
821 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
822
823         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
824         A private virtual newslot method is used to implement an interface method without exposing
825         it to users. When querying for public instance methods, such method would hide a public one
826         on a parent type.
827
828         Fixes #564379.
829
830 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
831
832         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
833         conventions.
834
835 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
836
837         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
838
839 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
840
841         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
842         as they are no longer used.
843         
844          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
845
846         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
847
848 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
849
850         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
851         if the owner class has not been finished before returning reflection_info.      
852
853         Fixes #565127.
854
855 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
856
857         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
858         param doesn't have custom attributes. Fixes #565117.
859
860         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
861         #565120.
862
863 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
864
865         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
866
867 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
868
869         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
870         same amount done by a core-clr enabled runtime.
871
872 2009-12-15  Marek Habersack  <mhabersack@novell.com>
873
874         * appdomain.c (mono_make_shadow_copy): make sure access mode of
875         the target files is reset to writable by owner and readable by
876         everyone else to prevent problems when updating shadow copies of
877         files whose source is read-only. Fixes bug #556884
878
879 2009-12-15  Mark Probst  <mark.probst@gmail.com>
880
881         * class.c (mono_generic_class_get_class): Allocate the generic
882         class via malloc again, so that it can be freed when any one of
883         the images of its constituent types is closed.
884
885         * metadata.c: When closing an image, don't free generic insts and
886         generic classes right away, but put them into a list for later
887         freeing.
888
889         * image.c, metadata-internals.h: Store the free list and in the
890         second pass of closing an image, free it.
891
892 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
893
894         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
895
896         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
897         types in type_hash.
898
899         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
900
901 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
902
903         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
904         user type.
905
906         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
907         is used.
908
909 2009-12-14  Miguel de Icaza  <miguel@novell.com>
910
911         * verify.c (mono_method_verify): The Unused opcodes produce an
912         InvalidProgramException on .NET
913
914 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
915
916         * loader.c (mono_method_get_header): Move assert after the verifier
917         has been called on the method header.
918
919 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
920
921         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
922
923         * appdomain.c: Bump corlib version.
924
925 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
926
927         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
928         types as well since otherwise generic instances would not return UT as arguments but
929         their undelying system type.
930
931         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
932         to reflect the fact that they can have now multiple different types.
933
934         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
935
936         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
937
938         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
939
940         * reflection.c (mono_reflection_register_with_runtime): Init super types
941         if the image is not dynamic.
942
943         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
944         check if the generic type definition is a TypeBuilder.
945
946         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
947         doesn't belong to a dynamic image, skip initialization.
948
949         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
950         base definition is not a dynamic type.
951
952 2009-12-11  Marek Habersack  <mhabersack@novell.com>
953
954         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
955         mono_profiler_string_allocation
956
957         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
958         if string profiling is enabled, call
959         mono_profiler_string_allocation
960
961         * profiler.h: added two MonoProfileFlags -
962         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
963         installation functions for the hooks below.
964
965         * profiler-private.h, profiler.c: added two hooks:
966         mono_profiler_string_allocation called whenever a string is
967         allocated by InternalAllocateStr and mono_profiler_iomap called
968         whenever IOMAP code performs an adjustement on a file path.
969
970 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
971
972         * boehm-gc.c: fixed race condition while getting the target of a
973         disappearing link (bug #522233).
974
975 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
976
977         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
978         the error.
979
980 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
981
982         * reflection.c: Add mono_reflection_register_with_runtime icall to
983         allow a MonoGenericClass to register itself as the managed mirror of
984         a given generic instance.
985         This is a temporary workaround until all MGC instantiation happens in
986         managed code.
987
988         * object-internals.h: Ditto.
989
990         * icall-def.h: Ditto.
991
992 2009-12-10  Mark Probst  <mark.probst@gmail.com>
993
994         * sgen-gc.c (find_in_remsets): Also search the generic store
995         remsets.
996
997 2009-12-10  Mark Probst  <mark.probst@gmail.com>
998
999         * sgen-gc.c: Don't access class names in debugging code when
1000         unloading a domain, because they might not be valid anymore.
1001
1002 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1003
1004         * domain.c, domain-internals.h: New function mono_domain_unset().
1005
1006         * appdomain.c (unload_thread_main): Detach the thread again at the
1007         end.
1008
1009         * threads.c: When a thread exists or is detached, unset its domain
1010         so that it's NULL when, for example, a pthread destructor runs.
1011
1012         * sgen-gc.c: Assert that there is no domain set after a thread is
1013         done.
1014
1015 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1016
1017         * class.c (mono_generic_class_get_class),
1018         metadata.c (free_generic_class): Allocate generic MonoClass's from
1019         the image mempool, not via malloc.  The problem with malloc is
1020         that when unloading a domain those classes are freed before
1021         clearing the heap and SGen needs the classes.  Rewriting the
1022         unloading code to do the free later would be more work and there's
1023         no point in using malloc anyway.
1024
1025 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
1026
1027         * loader.c (mono_method_signature): Always call mono_loader_unlock 
1028         before returning.
1029
1030 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1031
1032         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
1033         user string blobs.
1034
1035         * verify-internals.h: Add new function to the internal API.
1036
1037         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
1038         check if it's a valid string.
1039
1040         * object.c (mono_ldstr): Ditto.
1041
1042         Fixes #561943.
1043
1044 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1045
1046         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
1047         from a method before returning it. This is the expected behavior.
1048
1049 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1050
1051         * reflection.c (inflate_method): Handle the case of a regular system type.
1052
1053 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1054
1055         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
1056         gathering code.
1057
1058         * mempool.c, mempool-internals.h: New function
1059         mono_mempool_get_bytes_allocated().
1060
1061         * Makefile.am: sgen-pinning-stats.c added.
1062
1063 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1064
1065         * sgen-gc.c (create_allocator): Only use the fast path if the
1066         object size is within the small object size limit.
1067
1068 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1069
1070         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
1071         possibly adding padding to sizeof (GCMemSection).
1072
1073 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1074
1075         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
1076         reference is not in the nursery.
1077
1078 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
1079
1080         * class.c (mono_class_from_typeref): Bounds check idx against the 
1081         assemblyref table.
1082
1083 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1084
1085         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
1086         through the potential roots, then sort the results and find the
1087         pinned objects from there.
1088
1089         * Makefile.am: sgen-pinning.c added.
1090
1091 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1092
1093         * sgen-gc.c: Record generic stores in specialized remset buffers.
1094
1095 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1096
1097         * sgen-gc.c: Make pinned chunks the same size as major heap
1098         sections, and align them as well, so that we can check whether an
1099         object is in a pinned chunk or a major section in constant time.
1100
1101 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1102
1103         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
1104
1105 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1106
1107         * sgen-gc.c: Make all major heap sections the same size (currently
1108         128k) and allocate them on aligned addresses.  Small heap sections
1109         give us better granularity with pinned objects - we can free up
1110         much more memory.
1111
1112 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1113
1114         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
1115         output removed.
1116
1117 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1118
1119         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
1120
1121         * mono/metadata/assembly.c: When opening an assembly image, pass the real
1122         names in addition to the runtime generated one.
1123
1124         * mono/metadata/image.h: Add a function to take the real name of the assembly
1125         image.
1126
1127         * mono/metadata/image.c: If a real name has been passed to load an assembly,
1128         use it instead of the runtime generated one.
1129
1130         Code is contributed under MIT/X11 license.
1131
1132 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1133
1134         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
1135         before the other checks to prevent problems if the DateTime class is blittable.
1136         Hopefully fixes #559600.
1137
1138 2009-12-05  Mark Probst  <mark.probst@gmail.com>
1139
1140         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
1141         returns the largest string length that will not be put into the
1142         LOS.
1143
1144         * sgen-gc.c, gc-internal.h: New function that returns the largest
1145         object size that will not be put into the LOS.
1146
1147         * appdomain.c: Bump corlib version.
1148
1149 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1150
1151         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
1152
1153         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
1154
1155 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1156
1157         * reflection.c (inflate_method): Fix signature.
1158
1159         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
1160         in managed code.
1161
1162 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1163
1164         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
1165
1166 2009-12-03  Mark Probst  <mark.probst@gmail.com>
1167
1168         * sgen-gc.c: Abstract to-space handling.
1169
1170 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
1171
1172         * loader.c (find_method_in_class): Ignore methods with broken signatures.
1173
1174         Fixes #559906.
1175
1176 2009-12-03  Mark Probst  <mark.probst@gmail.com>
1177
1178         * sgen-gc.c: Only add references from outside the nursery to
1179         within the nursery to the global remset list.
1180
1181 2009-12-03  Mark Probst  <mark.probst@gmail.com>
1182
1183         * appdomain.c (create_exceptions): Set the domain temporarily if
1184         necessary to avoid cross-domain references.
1185
1186 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1187
1188         * verify.c (get_stack_type): Return that the type is invalid instead of
1189         asserting.
1190
1191         * verify.c (mono_method_verify): Verify that all locals and arguments
1192         have valid stack types.
1193
1194         Fixes #559913.
1195
1196 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1197
1198         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
1199         bounds checking overflow aware.
1200
1201         Fixes #559910.
1202
1203 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1204
1205         * verify.c (do_invoke_method): Check for invalid method signatures.
1206
1207         Fixes #553450.
1208
1209 2009-12-02  Jb Evain  <jbevain@novell.com>
1210
1211         * appdomain.c (MONO_CORLIB_VERSION): bump.
1212         * icall-def.h (get_base_definition): renamed to get_base_method
1213         and add a boolean argument indicating we want the original
1214         method definition, or the immediate base method.
1215         * icall.c: apply the get_base_definition to get_base_method change.
1216
1217 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1218
1219         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
1220
1221         Fixes #558042.
1222
1223 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
1224
1225         * class.c: remove asserts for invalid type token in
1226         mono_class_name_from_token(), mono_assembly_name_from_token() and
1227         mono_class_create_from_typedef () (fixes bug #553318).
1228
1229 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
1230
1231         * metadata.c, class.c, loader.c: remove assert after bsearch() for
1232         incorrect assemblies (bug #553322).
1233
1234 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1235
1236         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
1237
1238         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
1239
1240         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
1241
1242         * class.c (inflate_generic_context): Ditto.
1243
1244         * loader.c (method_from_methodspec): Ditto.
1245
1246         Fixes #558230.
1247
1248 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1249
1250         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
1251
1252         * class.c (mono_class_create_from_typespec): Ditto.
1253
1254         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
1255
1256         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
1257
1258         Fixes #558184.
1259
1260 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1261
1262         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
1263
1264         * verify.c (verify_delegate_compatibility): Ditto.
1265
1266         * verify.c (do_newobj): Ditto.
1267
1268         Fixes #558046.
1269
1270 2009-12-02  Mark Probst  <mark.probst@gmail.com>
1271
1272         * sgen-gc.c: Use a gray queue instead of requiring that gray
1273         objects are in a contiguous region.
1274
1275         * sgen-gray.c: The gray queue implementation.
1276
1277         * Makefile.am: sgen-gray.c added.
1278
1279 2009-12-02  Mark Probst  <mark.probst@gmail.com>
1280
1281         * appdomain.c: When unloading a domain, zero its static data and
1282         perform a minor collection when using SGen.  That will get rid of
1283         all the remsets pointing into that domain's static data.
1284
1285         * sgen-gc.c: Allow remsets into static data.  By doing this we
1286         need less checks so we're more efficient.
1287
1288 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1289
1290         * verify.c (mono_method_verify): Check for catch clauses with broken
1291         types.
1292
1293         Fixes #558465.
1294
1295 2009-12-01  Jb Evain  <jbevain@novell.com>
1296
1297         * class.c (make_generic_param_class): set the namespace of
1298         the generic parameter class from its owner, if available.
1299
1300 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1301
1302         * verify.c (code_bounds_check): Do proper overflow checking.
1303
1304         * verify.c (mono_method_verify): The number of switch entries is
1305         an unsigned int. Properly bounds check it.
1306
1307         Fixes #558594.
1308
1309 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1310
1311         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
1312         mono_metadata_method_has_param_attrs which only checks if a given param
1313         list has a non zero flags entry.
1314
1315         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
1316         to inform how many params should we expect to decode.
1317
1318         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
1319         as it's faster than mono_metadata_get_param_attrs.
1320
1321         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
1322         add mono_metadata_method_has_param_attrs.
1323
1324 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1325
1326         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
1327         failures.
1328
1329         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
1330         is -1 but its class is broken.
1331
1332         Fixes #558522.
1333
1334 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1335
1336         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
1337         for parameter overflow.
1338
1339         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
1340         of mono_metadata_get_param_attrs.
1341
1342         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
1343         API.
1344
1345         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
1346
1347 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1348
1349         * class.c (mono_class_setup_fields): Check for fields with broken types.
1350
1351         Fixes #558741.
1352
1353 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
1354
1355         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
1356         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
1357         its TypeBuilder::CreateType ().
1358
1359         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
1360         if not needed.
1361
1362         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
1363         to make setup_interface_offsets happy.
1364
1365         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
1366         compilation now works.
1367
1368 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
1369
1370         * appdomain.c (create_exceptions): New helper function extracted from
1371         mono_runtime_init () to precreate objects used during exception handling.
1372         (mono_runtime_init): Call it.
1373         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
1374
1375 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1376
1377         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
1378         compilation until the proper one is found.
1379
1380 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
1381
1382         * class.c (mono_class_setup_vtable_general): Cache the result of
1383         get_virtual_methods () since it can be slow because of the metadata
1384         optimization.
1385
1386         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
1387         from a MonoValueHashTable for now, since the later is based on an earlier
1388         version of hpj's internal probing code and seems to have serious collision
1389         issues.
1390
1391         * loader.c (mono_get_method_full): Update after the change above.
1392
1393 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1394
1395         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
1396
1397 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1398
1399         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
1400         the GTD instead of the DGC instead of crashing.
1401
1402         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
1403         required. Inflate fields if needed.
1404
1405         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
1406         finished. Renamed.
1407
1408 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1409
1410         * class.c (check_interface_method_override): Check for NULL signatures and fail
1411         the type.
1412
1413         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
1414
1415         Fixes #553428.
1416
1417 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1418
1419         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
1420         the MONO_METHOD_FLAGS column instead of decoding the whole row.
1421
1422 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1423
1424         * loader.c (field_from_memberref): Resolve the class first then the field
1425         signature. Remove a lot of duplicated code and make sure we don't pass valid
1426         values to mono_loader_set_error_field_load.
1427
1428         Fixes #553306.
1429
1430 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1431
1432         * class.c (inflate_generic_type): Change code to use new signature of
1433         mono_error_set_bad_image.
1434
1435         Fixes #558124.
1436
1437 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
1438
1439         * verify.c (mono_method_verify): Don't free ctx.params items if 
1440         we aborted while inflating the ctx.locals. Complete previous fix
1441
1442 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
1443
1444         * verify.c (mono_method_verify): Use the uninflated type name, 
1445         when the inflated is null, to report errors. Also take care when
1446         freeing, not to free everything since, in case of an error, some
1447         stuff would be copies (i.e. not allocated by the function itself)
1448         Fix bug #558145
1449
1450 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1451
1452         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
1453         or overflow. The caller must have done this check explicitly. This guard us
1454         from accessing invalid memory.
1455
1456         * verify.c (do_push_static_field): Check for stack overflow.
1457
1458         Fixes #553333.
1459
1460 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1461
1462         * loader.c (find_method_in_class): Don't crash if the signature cannot
1463         be resolved.
1464
1465         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
1466         of asserting for the case of invalid params.
1467
1468         Fixes #553304.
1469
1470 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
1471
1472         * image.c (mono_image_load_module): Fix crash when a bad assembly
1473         has no module at all (fix bug #553412) and also replace the 
1474         g_assert with a return NULL (documented return value for failure)
1475
1476 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
1477
1478         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
1479
1480 2009-11-23  Miguel de Icaza  <miguel@novell.com>
1481
1482         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
1483         file attribute to managed code and avoid doing the mask/attribute
1484         checks here. 
1485
1486 2009-11-22  Miguel de Icaza  <miguel@novell.com>
1487
1488         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
1489         the managed world.
1490
1491         * icall-def.h: New entry points.
1492         
1493 2009-11-19  Mark Probst  <mark.probst@gmail.com>
1494
1495         * process.c: Don't put references to managed objects into a
1496         g_ptr_array.
1497
1498 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
1499
1500         * class.c (can_access_internals): Allow CoreCLR to participate in
1501         allowing (or not) [InternalsVisibleTo] between assemblies.
1502         * security-core-clr.c|h: Make sure that only trusted code (a 
1503         superset of platform code) can access the internals of platform
1504         code.
1505
1506 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
1507
1508         * reflection.c: use the correct base class to get the virtual method
1509         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
1510
1511 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
1512
1513         * security-core-clr.c (get_caller_no_reflection_related): 
1514         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
1515         it's still reflection and must be filtered correctly.
1516
1517 2009-11-16  Mark Probst  <mark.probst@gmail.com>
1518
1519         * object.c (compute_class_bitmap): Fix for large bitmaps.
1520
1521 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
1522
1523         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
1524
1525         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
1526         koush@koushikdutta.com). Disable GC_no_dls on android.
1527
1528 2009-11-12  Mark Probst  <mark.probst@gmail.com>
1529
1530         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
1531         tlab_next points outside the TLAB because the allocator was
1532         interrupted.
1533
1534 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1535
1536         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
1537
1538 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1539
1540         * object-internals.h: Change signature for mono_string_to_utf8_image.
1541
1542         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
1543         argument.
1544
1545         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
1546         exceptions due to mono_string_to_utf8.
1547
1548 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1549
1550         * object-internals.h: Change signature for mono_string_to_utf8_mp.
1551
1552         * object.c (mono_remote_class): Make sure all resources are released before
1553         raising an exception.
1554
1555         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
1556
1557 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1558
1559         * mono-perfcounters.c (network_get_impl): Change variable initialization
1560         ordering to fix potential memory leak in case of exceptions.
1561
1562         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
1563         encoded strings.
1564         
1565 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1566
1567         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
1568         variable initialization ordering to fix potential memory leak in case
1569         of exceptions.
1570
1571 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
1572
1573         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
1574         needed.
1575
1576 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1577
1578         * appdomain.c: Fix shadow path code to better deal with exceptions.
1579
1580 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1581
1582         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
1583         exception in the middle of the runtime code.
1584
1585 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1586
1587         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
1588         leak memory with broken envvar value.
1589
1590 2009-11-06  Mark Probst  <mark.probst@gmail.com>
1591
1592         * reflection.c (mono_reflection_setup_internal_class): Because
1593         nested classes are not added to the name cache, we must put them
1594         in the reflection_info_unregister_classes list.
1595
1596 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
1597
1598         * class.c: When CoreCLR is enabled don't call mono_init_com_types
1599         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
1600         platform (trusted) code. Instead we return a TypeLoadException to
1601         be thrown later. This is the exception thrown by Silverlight 2 if
1602         a type, inside application (user) code is marked with [ComImport]
1603
1604 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1605
1606         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
1607         mono_is_debugger_attached () too.
1608
1609         * mono-debug.c (mono_is_debugger_attached): New helper function.
1610         (mono_set_is_debugger_attached): Ditto.
1611
1612 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1613
1614         * object-internals.h: Add mono_string_to_utf8_checked.
1615
1616         * object.c: Implement mono_string_to_utf8_checked.
1617
1618 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1619
1620         * class.c: Add missing check for load errors after every
1621         call to mono_class_setup_fields
1622
1623         Fixes #552282.
1624
1625 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1626
1627         metadata-verify.c (verify_tables_schema): Fix the error message.
1628
1629 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1630
1631         * metadata.c: Change event table schema to use TDOR for event type
1632         as this is what it's meant to be.
1633
1634         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
1635         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
1636         entry.
1637
1638         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
1639         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
1640         rows in MONO_TABLE_GENERICPARAM.
1641
1642         Fixes #552289.
1643
1644 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1645
1646         * class.c (mono_image_add_to_name_cache): Assert on duplicate
1647         insertion.
1648
1649         * reflection.c (mono_reflection_setup_internal_class): Avoid
1650         registering a gc root the same MonoClass multiple times.
1651         Don't register nested types on the global scope as they should
1652         not be available there.
1653
1654 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1655
1656         * culture-info-tables.h: regenerated.
1657
1658 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1659
1660         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
1661
1662 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
1663
1664         * string-icalls.c|h: Remove string internal calls that are not 
1665         used anymore by the class libraries.
1666         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
1667         which is not used in the class librairies.
1668         * icall-def.h: Update tables.
1669
1670 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1671
1672         * class.h: Move mono_class_inflate_generic_type_checked...
1673
1674         * class-internals.h: to here and make it internal. We don't want to
1675         further expose MonoGenericContext. 
1676
1677 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1678
1679         * verify.c (mono_method_verify): Improve error message.
1680
1681 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1682
1683         * reflection.c (fieldref_encode_signature): If field_image is NULL then
1684         the token is already properly encoded. Fixs 4.0 build.
1685
1686 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1687
1688         * locales.c (construct_number_format): Check if the number index is
1689         valid before trying to use it, if not, just return.
1690         
1691 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
1692
1693         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
1694         since that loses the abort state. Fixes #539394.
1695
1696 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
1697
1698         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
1699         explicit this argument to the call signature.
1700         (mono_marshal_get_icall_wrapper): Ditto.
1701
1702 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1703
1704         * reflection.c (fieldref_encode_signature): Add new field_image parameter
1705         to indicate which assembly to use when resolving a custom-mod.
1706
1707         Fixes handling of volatile fields used across assemblies as reported in #551513.
1708
1709 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1710
1711         * loader.c: Improve error messages.
1712
1713 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1714
1715         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
1716         of interfaces. Fixes IKVM.
1717
1718         * class.c (mono_class_setup_vtable_general): Improve debug spew.
1719
1720 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1721
1722         * verify.c (verifier_inflate_type): Return the inflated type on success.
1723
1724 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1725
1726         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
1727
1728         * threads.c (mono_thread_attach): Call the profiler thread start callback.
1729
1730         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
1731
1732         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
1733         flag set.
1734
1735         * profiler.c: Add new profiler callbacks for runtime invoke.
1736
1737         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
1738
1739 2009-11-01  Mark Probst  <mark.probst@gmail.com>
1740
1741         * sgen-gc.c: Keep track of the reason for a major collection and
1742         write it to the heap-dump file.
1743
1744 2009-10-31  Miguel de Icaza  <miguel@novell.com>
1745
1746         * threads.c: refactor the code that initializes the
1747         thread_start_args into a reusable function and use this in the two
1748         methods that start up threads.
1749
1750 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
1751
1752         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
1753         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
1754
1755 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1756
1757         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
1758         Until now, we only had the per-cpu(core) counters.
1759
1760 2009-10-28  Mark Probst  <mark.probst@gmail.com>
1761
1762         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
1763         mono_gc_get_suspend_signal(), which returns the suspend signal
1764         number used by the GC.
1765
1766 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
1767
1768         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
1769
1770         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
1771         signalling start_notify.
1772
1773 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1774
1775         * appdomain.c: do not test the st_mode field for shadow-copies.
1776         Fixes bug #545276.
1777
1778 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1779
1780         * threadpool.[ch]: added hooks for thread start/finish and item
1781         processing begin/end. For monotouch use only.
1782
1783 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1784
1785         * threads.c (mono_thread_get_name): New helper function.
1786
1787         * reflection.c (resolve_object): Set handle_class for strings too.
1788         (mono_reflection_create_custom_attr_data_args): New helper function to decode
1789         a cattr blob into a set of arrays and structures without creating the custom
1790         attributes themselves.
1791         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
1792
1793         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
1794
1795         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
1796         function.
1797
1798 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1799
1800         * verify.c: Replace calls to mono_class_inflate_generic_type with
1801         mono_class_inflate_generic_type_checked. Fixes #480005.
1802
1803 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1804
1805         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
1806         object since not all paths lead to callees initing it.
1807
1808 2009-10-23  Alp Toker  <alp@nuanti.com>
1809
1810         Fix embedding API breakage from r144688. mono-compiler.h is an internal
1811         header and should not be shipped:
1812
1813         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
1814         which is specific to the mono build. Not going to work.
1815
1816 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
1817
1818         * security-manager.c: Report if core-clr is active from
1819         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
1820         to allow Moonlight BCL to behave appropriately (both in browser
1821         and outside, e.g. smcs)
1822
1823 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1824
1825         * mono-config.c: ignore UTF-8 BOM and report parser errors.
1826         Fixes bug #549108.
1827
1828 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1829
1830         * class.c: fix typo.
1831
1832 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1833
1834         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1835         a MonoError parameter.
1836
1837         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1838         version that can does proper error handling.
1839
1840         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1841
1842         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1843
1844         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1845
1846 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1847
1848         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1849         NO_UNALIGNED_ACCESS is defined.
1850
1851 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1852
1853         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1854         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1855         Fixes #549173.
1856
1857 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1858
1859         * sgen-gc.c: Shorten sections whenever possible.
1860
1861 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1862
1863         * sgen-gc.c: Use our portable semaphore #defines.
1864
1865 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1866
1867         * sgen-gc.c: A debug option for dumping the heap layout to a file
1868         after each collection.
1869
1870 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1871
1872         * sgen-gc.c: Make managed write barriers atomic via
1873         thread-restarts.
1874
1875 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1876
1877         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1878         methods. Fixes #543021.
1879
1880 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1881
1882         * socket-io.[ch]: fix VS build.
1883
1884 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1885
1886         * icall-def.h:
1887         * socket-io.[ch]: implemented SendFile.
1888
1889 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1890
1891         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1892         before the interfaces to avoid crashes later if class initialization fails.
1893         Fixes #548417.
1894
1895         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1896         Fixes #548276.
1897
1898 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1899
1900         * domain.c: Bump 4.0 version.
1901
1902 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1903
1904         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1905         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1906         check since 'pubkey' can't be NULL at this stage
1907         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1908         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1909         initialization of 'iter'
1910
1911 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1912
1913         * cominterop.c : Search the interface parts of vtable to find 
1914           method matches.  Fixes 547030.
1915
1916         Code is contributed under MIT/X11 license.
1917
1918 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1919
1920         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1921         multiple targets. Fixes bug #574426.
1922
1923 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1924
1925         * profiler.h: Put here the definition of
1926         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1927         (and fix the build...).
1928
1929 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1930
1931         * profiler.c, profiler.h, profiler-private.h:
1932         Added support for different ways of getting call chains in stat mode.
1933
1934 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1935
1936         * object.c, object-internals.h: New function for computing the
1937         size of an array, factored out of mono_array_new_full().  Use
1938         SGen's functions for allocating arrays and vectors.
1939
1940         * sgen-gc.c, gc-internal.h: Special functions for allocating
1941         arrays and vectors without race conditions.  A managed array
1942         allocator method.
1943
1944         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1945
1946 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1947
1948         * object.c, object.h, icall.c: Write barriers do the copying now,
1949         as well, so no need for an additional memcpy.
1950
1951         * sgen-gc.c: Lock when storing remsets.  Do the memory
1952         copying/moving in the write barriers.
1953
1954         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1955
1956         * reflection.c: Added an assert.
1957
1958 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1959
1960         * threads.c, process.c: A few missing write barriers.
1961
1962 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1963
1964         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1965         network performance counters for bytes sent per second, bytes
1966         received per second, and bytes total per second.
1967
1968         Code is contributed under MIT/X11 license.
1969
1970 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1971
1972         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1973         Fix warning.
1974
1975 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1976
1977         * threads.c, object-internals.h, object.c: Move code for
1978         transferring an object to a different domain (via
1979         serialization/remoting) to object.c.
1980
1981         * object.c (call_unhandled_exception_delegate): If the exception
1982         is in a different domain than the delegate, transfer the exception
1983         to that domain.
1984
1985 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1986
1987         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1988         Fixes #322934.
1989
1990 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1991
1992         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1993
1994 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1995
1996         * object.c (mono_method_return_message_restore): Handle the case
1997         where the argument is an instance of a generic type.  Fixes
1998         #544446.
1999
2000 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2001
2002         * object.c (set_value): Write barrier fix - we must pass the
2003         count, not the size.
2004
2005 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
2006
2007         * domain.c (mono_init_internal): Print a useful error message when encountering
2008         an old mscorlib, instead of crashing. Fixes #544307.
2009
2010 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
2011
2012         * appdomain.c (copy_app_domain_setup): Fix a warning.
2013
2014         * debug-helpers.c (dis_one): Ditto.
2015
2016 2009-10-04  Mark Probst  <mark.probst@gmail.com>
2017
2018         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
2019         into the new domain, instead of referencing the original one.
2020
2021         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
2022         non-static.
2023
2024         * appdomain.c: Corlib version bump.
2025
2026 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2027
2028         * threadpool.c: one more...
2029
2030 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2031
2032         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
2033         threads to die because we're shutting down. delgate5.exe works again.
2034
2035 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
2036
2037         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
2038           ccw_interface_hash table when a ccw is finalized.
2039
2040         Code is contributed under MIT/X11 license.
2041
2042 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2043
2044         * assembly.c, domain.c, image.c, metadata-internals.h: Split
2045         domain and image unloading into two steps.  We must do this
2046         because clearing the domain in SGen requires the class metadata to
2047         be intact, but we need to free the mono_g_hash_tables in case a
2048         collection occurs during domain unloading and the roots would trip
2049         up the GC.
2050
2051 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2052
2053         * object-internals.h: Remove serialized culture fields from
2054         MonoInternalThread.
2055
2056         * icall-def.h, thread-types.h, threads.c: Remove serialized
2057         culture icalls.
2058
2059         * appdomain.c: Corlib version bump.
2060
2061 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
2062
2063         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
2064         Fixes #543133.
2065
2066 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2067
2068         * sgen-gc.c: Try to shorten the new section after a major
2069         allocation to avoid ever-growing sections.
2070
2071 2009-10-13  Martin Baulig  <martin@ximian.com>
2072
2073         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
2074         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
2075         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
2076         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
2077
2078         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
2079
2080 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
2081
2082         * threadpool.c: fixed the order in which 'completed' and the wait
2083         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
2084         No need to use the wait_handle field of ASyncCall. Make sure the
2085         threadpool is active when adding a job or queueing an idle thread.
2086
2087 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
2088
2089         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
2090
2091         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
2092         when using --compile-all.
2093
2094 2009-09-27  Mark Probst  <mark.probst@gmail.com>
2095
2096         * metadata.c (free_generic_class): Unregister the field_objects
2097         roots if we're using SGen.
2098
2099 2009-09-27  Mark Probst  <mark.probst@gmail.com>
2100
2101         * reflection.c (mono_dynamic_image_free): Deregister the GC root
2102         for GenericParamTableEntry.gparam.
2103
2104 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2105
2106         * marshal.c: don't create the handle when calling. It is created later
2107         if needed.
2108
2109 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2110
2111         * sgen-gc.c: Warning fixes.
2112
2113 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2114
2115         * sgen-gc.c: New debug option "xdomain-checks", which scans the
2116         whole heap for cross-domain references before each collection.
2117
2118         * sgen-scan-object.h: The scan action can now use SCAN to scan the
2119         object.
2120
2121         * threadpool-internals.h, threadpool.c: New function
2122         mono_thread_pool_is_queue_array() for checking whether a given
2123         array is used as a (cross-domain) queue by the thread pool code.
2124
2125 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2126
2127         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
2128         searches the whole heap for objects containing a specific
2129         reference.  Only for debugging.
2130
2131 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2132
2133         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
2134
2135         * icall-def.h, threads.c, threads-types.h: New icalls for copying
2136         byte arrays between domains.
2137
2138 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2139
2140         * threadpool.c:
2141         * class-internals.h:
2142         * mono-perfcounters-def.h:
2143         * mono-perfcounters.c:
2144         -There is a list of idle threads
2145         -Each of those idle threads wait on their own WaitHandle instead
2146         of all of them using the same semaphore. When a new work item is
2147         added, the job is assigned directly to an idle thread or a newly
2148         created one if possible and then the handle for that thread is
2149         signaled. Compare that to the current approach where all the
2150         threads in the pool compete to dequeue a job from the same
2151         queue.
2152         -New struct ThreadPool that brings together the bunch of static
2153         variable for each threadpool (IO and regular).
2154         -New performance counters: # of items added and its rate per
2155         threadpool. The rate will be used later, perhaps together with
2156         other perf. counters, to decide when idle threads should exit.
2157
2158 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
2159
2160         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
2161         Fix typo on Windows build.      
2162         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
2163         
2164         Code is contributed under MIT/X11 license.
2165
2166 2009-09-25  Mark Probst  <mark.probst@gmail.com>
2167
2168         * object-internals.h: The Thread class is split up into Thread and
2169         InternalThread now.  We have exactly one InternalThread per
2170         thread, and at most one Thread per appdomain per thread.  Most
2171         data is stored in InternalThread.  All InternalThread objects live
2172         in the root domain.
2173
2174         * class-internals.h: Add internal_thread_class to MonoDefaults.
2175
2176         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
2177         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
2178         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
2179         resulting from the split of the Thread class.
2180
2181         * gc-internal.h: Prototype for new function for checking whether a
2182         thread is the finalizer thread.
2183
2184         * appdomain.c: Corlib version bump.
2185
2186 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2187
2188         * appdomain.c|h: Add a mono_domain_try_unload method which is
2189         equivalent to mono_domain_unload, except that it returns an exception
2190         instead of throwing it. Make mono_domain_unload use the
2191         mono_domain_try_unload method to avoid code-duplication.
2192
2193 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
2194
2195         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
2196         a problem.
2197
2198 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
2199
2200         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
2201         aborting when a conversion is not implemented.
2202
2203 2009-09-23  Miguel de Icaza  <miguel@novell.com>
2204
2205         * verify.c: when comparing culture strings, use g_ascii_strcmp
2206
2207         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
2208         when comparing public key tokens to use memcmp on 16 bytes.   I do
2209         not believe this ever worked as advertised in the past.
2210
2211         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
2212         which would have always failed earlier.
2213
2214 2009-06-25  Miguel de Icaza  <miguel@novell.com>
2215
2216         * gc.c: Raise a NullArgumentException if the object passed is
2217         null.
2218
2219 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
2220
2221         * image.c (mono_image_close): Atomically decrement the reference count and
2222         remove the image from the hash tables, to prevent another thread from seeing a
2223         dying MonoImage. Fixes #541194.
2224
2225 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2226
2227         * threadpool.c: actually use the minimum number of 'completion ports'
2228         (for us is just a potential worker thread).
2229
2230 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2231
2232         * threadpool.c: remove ares_htable. It does not make sense any more
2233         since the same objects are now stored in GC-tracked arrays while they are
2234         in the queue.
2235
2236 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2237
2238         * threadpool.c: increase the minimum length of the queues to 128.
2239         Remove warning.
2240
2241 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
2242
2243         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
2244         return the modified signature used by string ctors.
2245
2246 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
2247
2248         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
2249         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
2250         method, to be used by full-aot.
2251
2252 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
2253
2254         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
2255         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
2256         be known to be good.
2257
2258         * class.c (mono_class_init): Fail array types if their element type fails initialization
2259         as well.
2260
2261         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
2262         initialization, additionally we request the element_type vtable to be initialized as well.
2263
2264         This is fine and should not increase the working set in any meaningful way since it's reasonable
2265         to assume       that most code will create an array and eventually populate it, which will require the
2266         type's vtable to be initialized.
2267
2268         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
2269
2270 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
2271
2272         * normalization-tables.h : regenerated.
2273
2274 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
2275
2276         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
2277         a leb128 encoding can take up to 5 bytes.
2278
2279 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
2280
2281         * class.c (verify_class_overrides): Remove useless argument.
2282
2283         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
2284         before interface enumeration as this is no longer required.
2285
2286 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
2287
2288         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
2289         used under mono_class_init context. This functions avoid any code path that
2290         calls mono_class_init, which leads it to be slow as some things like the interface
2291         bitmap are not available.
2292
2293         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
2294         of it's own broken version. Fixes the verifier part of #538588.
2295
2296         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
2297         API.
2298
2299 2009-09-15  Mark Probst  <mark.probst@gmail.com>
2300
2301         * class.c (mono_class_init): Always set an exception in a class if
2302         vtable setup fails.  Fixes #538577.
2303
2304         * generic-sharing.c: Raise an exception if mono_class_vtable()
2305         returns NULL.
2306
2307 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
2308
2309         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
2310         methods of vtypes, as they could be incorrectly shared with static methods
2311         taking an IntPtr argument.
2312
2313 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
2314
2315         * domain.c:
2316         * object.c:
2317         * class-internals.h: renamed waithandle_class to
2318         manualresetevent_class.
2319         * marshal.c: propagate the exception if a remoting BeginInvoke call
2320         fails.
2321
2322 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2323
2324         * object.c: Properly handle vtable failures.
2325
2326 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2327
2328         * socket-io.c: Assert on vtable failure.
2329
2330         * mono-mlist.c: Assert on vtable failure.
2331
2332 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2333
2334         * marshal.c: Assert on vtable failure.
2335
2336 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2337
2338         * icall.c: Properly handle vtable failures.
2339
2340 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2341
2342         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
2343
2344 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2345
2346         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
2347
2348         * console-unix.c (do_console_cancel_event): Same.
2349
2350 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2351
2352         * class-internals.h: Add mono_class_vtable_full function that allows control
2353         if an exception should be raised or not.
2354
2355         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
2356         to do what its documentation say, that is to return NULL and set exception_type on
2357         failure.
2358
2359         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
2360         and change the code to honor it.
2361
2362 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2363
2364         * verify.c: Fix typo in error message.
2365
2366 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
2367
2368         * security-core-clr.c: Fix default_platform_check so it can run
2369         the runtime coreclr tests (without an infinite recursion when
2370         throwing an exception).
2371
2372 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2373
2374         object.c (mono_delegate_ctor_with_method): Guard against null method.
2375
2376 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2377
2378         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
2379         that should be replaced with error handling later.
2380
2381 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2382
2383         * marshal.c (mono_delegate_end_invoke): Fix warning.
2384
2385 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2386
2387         * loader.c (mono_field_from_token): Properly handle invalid
2388         dynamic tokens.
2389
2390 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2391
2392         * pedump.c (verify_image_file): Skip types that can't be
2393         decoded.
2394
2395 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2396
2397         * verify.c: Look for recursive valuetypes only against the
2398         type been initialized as this is a lot simpler and works.
2399
2400 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2401
2402         * verify.c: Ensure that fields are properly loaded before
2403         checking them.
2404
2405 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
2406
2407         * object.c (mono_object_get_virtual_method) : Call 
2408           mono_cominterop_get_invoke if the object is a COM object.
2409
2410         Code is contributed under MIT/X11 license.
2411
2412 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
2413
2414         * verify.c: Check for recursive valuetype definitions.
2415
2416 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
2417
2418         Use inheritance-aware interface offsets. Inherited types use the same offsets
2419         of their parents. This reduce offset duplication in case more than one type in
2420         the inheritance tree explicitly implements the same interface.
2421
2422         This also removes a source of vtable bubbles found in #532409. An abstract type
2423         isn't required to provide abstract methods to all interfaces it implements, which
2424         resulted in a bubble with the previous scheme as the child would get a non-full
2425         vtable from its parent. We fail all concrete types with vtable bubbles, so this
2426         should be fixed.
2427
2428         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
2429         it's expected to not cause any significant increase beyond that.
2430
2431         * class.c (setup_interface_offsets): Compute super class iface offsets
2432         first to force sharing.
2433
2434         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
2435         dumping only the relevant ones.
2436
2437         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
2438         methods a new slot regardless if they belong to an interface or not. This allows
2439         an inherited type to override the iface method separately from the class one.
2440
2441 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2442
2443         * threadpool.c: make the Sleep() alertable to prevent delays exiting
2444         applications that take less than 2s to execute.
2445         Bug #524984 fixed.
2446
2447 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
2448
2449         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
2450
2451         * object.c (mono_get_runtime_callbacks): New helper function to return
2452         the runtime callbacks.
2453
2454         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
2455         mono_get_runtime_build_info () as the display name.
2456         
2457 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
2458
2459         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
2460         argument, since NEWARR expects a native int. Fixes #481559.
2461
2462 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2463
2464         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
2465         against broken SRE methods.
2466
2467 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2468
2469         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
2470         a NULL variable. Abort early on failure.
2471
2472 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2473
2474         * class.c (can_access_type): Fail visibility test for non nested
2475         types with nested visibility.
2476
2477 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
2478
2479         * assembly.c (parse_public_key): Avoid allocating (and not 
2480         freeing) the public key array when it's not requested by the 
2481         caller.
2482         * threads.c (mono_thread_manage, mono_thread_create_internal, 
2483         ves_icall_System_Threading_Thread_Thread_internal): Free 
2484         allocated memory on error.
2485
2486 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2487
2488         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
2489
2490 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2491
2492         * class.c (mono_class_setup_fields): Remove duplicated local variable
2493         named gklass.
2494         Rename gklass to gtd to reflect the fact that it points to the generic
2495         type definition.
2496         Remove the duplicated call to mono_class_setup_fields on gtd and move
2497         the error check to the beginning.
2498
2499 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2500
2501         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
2502         Remove cruft of the previous patch.
2503
2504 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2505
2506         * metadata-verify.c (verify_method_table): Check for abstract + final.
2507         Fixes #534175.
2508
2509 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2510
2511         * verify.c (verify_class_fields): Check for duplicate fields.
2512
2513 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2514
2515         * metadata-verify.c: Verify the typeref table for duplicates.
2516
2517 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2518
2519         This reverts r140936 and properly handles interfaces with static methods. The
2520         right fix is to ensure vtables without bubles which is an easier to verify
2521         constraint. We should avoid such special cases as of the reverted patch as those
2522         only make the runtime more brittle.
2523
2524         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
2525         static methods on interfaces.
2526
2527         * class.c (setup_interface_offsets): Use the number of virtual methods when
2528         calculating interface offsets instead of the number of methods. This way we
2529         avoid bubles on the layout.
2530
2531 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
2532
2533         * metadata-verify.c (verify_metadata_header): Some very smart
2534         obfuscators like to add extra stream headers. Ignore them.
2535
2536 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
2537
2538         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
2539         methods correctly.
2540
2541 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
2542
2543         * metadata-verify.c: Verify for duplicated types.
2544
2545 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
2546
2547         * metadata-verify.c (verify_typedef_table): Verify for nested types
2548         without an entry on the nested class table.
2549
2550 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
2551
2552         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
2553         <tom_hindle@sil.org>. Add locking around hash table accesses.
2554
2555 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2556
2557         * verify.c (mono_verifier_verify_class): Verify all interface if
2558         really are interfaces. Fixes #534184.
2559
2560 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
2561
2562         * pedump.c: Initialize all types during metadata validation so we report
2563         errors only detected as part of class initialization.
2564
2565 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
2566
2567         * metadata-verify.c (verify_method_table): PInvoke requires method to
2568         be static. Fixes #534189
2569
2570 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
2571
2572         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
2573         being NULL.
2574
2575 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2576
2577         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
2578         for holes or bad methods. Fixes #525314.
2579
2580 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2581
2582         * class.c (setup_interface_offsets): Don't allocate slot
2583         for the same interface multiple times. This creates bubbles
2584         that waster space and make vtable verification harder.
2585
2586         The same interface get a slot multiple times since we need
2587         to get the closure of all implemented interfaces, which means
2588         the same interface is reported multiple times.
2589
2590 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2591
2592         * verify.c (mono_verifier_verify_class): Don't check the fields
2593         of generic instances since the context on which they got expanded
2594         might lead to false positives.
2595
2596         Such thing happens when a generic type is inflated in the context
2597         of a generic method and the inflated type of a field turns into a
2598         generic method argument, which causes the checking code to think
2599         it's an invalid class when it's not.
2600
2601 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2602
2603         * verify.c (mono_type_is_valid_in_context): Verify if type
2604         is NULL and remove duplicate test.
2605
2606 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2607
2608         * verify.c (mono_verifier_verify_class): Check fields for
2609         invalid generic arguments.
2610
2611 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2612
2613         * class.c (verify_class_overrides): Verify if for static
2614         and non virtual methods.
2615
2616 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2617
2618         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
2619         Check for errors after retrieving the vtable.
2620
2621 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2622
2623         * class.c (mono_class_setup_vtable_general): Verify
2624         if method overrides are valid before processing them.
2625
2626 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2627
2628         * marshal.c (mono_array_to_lparray): Fix minimal build with
2629         cominterop disabled.
2630
2631         * marshal.c (mono_free_lparray): Same.
2632
2633 2009-08-21  Mark Probst  <mark.probst@gmail.com>
2634
2635         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
2636         the hash function for the ares_htable.
2637
2638 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
2639
2640         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
2641         bit for assembly flags. MS is ok with it but there is no spec anywhere
2642         on its mean
2643
2644 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2645
2646         * class.c (mono_class_create_from_typedef): Emit profiler events
2647         in all cases.
2648
2649 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2650
2651         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
2652         Release memory on failure.
2653
2654 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2655
2656         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
2657         to the internal API.
2658
2659         * metadata.c (get_constraints): Use a single-linked table as we don't
2660         traverse it backward. Fail and return FALSE if only of the contraint types
2661         is not found.
2662
2663         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
2664         to mono_metadata_load_generic_param_constraints except for having a return value.
2665         This has to be done since the later is part of the public API.
2666
2667         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
2668         and fail the type.
2669
2670         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
2671         and fail the method.
2672
2673 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2674
2675         * metadata-verify.c (is_valid_method_header): Add work-around to deal
2676         with MS broken behavior of emmitting EH section sizes without the
2677         header size added.
2678
2679 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2680
2681         * metadata.c (mono_type_create_from_typespec): Don't allocate image
2682         memory until we're sure that we'll need it. This avoids leaking for
2683         broken types or duplicated instantiation.
2684
2685 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2686
2687         * metadata-verify.c (is_valid_method_header): Fix stupid formating
2688         mistake.
2689
2690 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2691
2692         * metadata-verify.c (is_valid_method_header): Fix number of clauses
2693         and expected size calculation.
2694
2695 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2696
2697         * class.c (mono_class_get_field_idx): Add fixme for broken
2698         behavior for types with multiple fields with the same name.
2699         I would rather fix it, but have no idea on how to generate
2700         such artifact for testing.
2701
2702 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2703
2704         * verify.c (verifier_load_field): We should allow references to
2705         fields to be made using the generic type definition. It's up to
2706         the loader system to fail invalid ops.
2707
2708         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
2709         are invalid.
2710
2711 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2712
2713         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
2714
2715         * metadata-internals.h: Fix declaration of 
2716         mono_metadata_interfaces_from_typedef_full.
2717
2718         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
2719         heap_alloc_result parameter that controls if the result should be
2720         g_malloc'd.
2721
2722         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
2723         array be g_malloc'd and properly document this public API function.
2724
2725 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2726
2727         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
2728         remove METHOD_HEADER_TINY_FORMAT1.
2729
2730         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
2731
2732         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
2733
2734         Both spec and MS uses only 2 bits to enumerate the kind of header.
2735         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
2736         is superfluous, only used for tiny headers with odd code lengths.
2737
2738         This change also make sure that mono doesn't wronly interpret bit 2
2739         of fat header flags, which is currently reserved.
2740
2741 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2742
2743         * metadata.c (do_mono_metadata_parse_type): Do error
2744         checking for element types. Don't abort if presented
2745         with a broken type kind.
2746
2747 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2748
2749         * metadata.c (mono_metadata_parse_method_signature_full):
2750         Gracefully fail bad vararg signatures.
2751
2752 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2753
2754         * profiler.c:
2755         * class.c: Fix warnings for uninitialized variables.
2756
2757 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2758
2759         * icall.c: Fix _NSGetEnviron method declaration warning.
2760
2761 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2762
2763         * icall.c:
2764         * reflection.c: Make bitwise checks explicit.
2765
2766 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2767
2768         * debug-helpers.c:
2769         * marshal.c: Fix printf warnings.
2770
2771 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
2772
2773         * reflection.c (encode_cattr_value): Fix a warning.
2774
2775 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2776
2777         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
2778         of array bounds.
2779
2780 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2781
2782         * loader.c (mono_method_signature): Don't assert on broken
2783         signature. Print a more useful error message.
2784
2785 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2786
2787         * loader.c (mono_method_get_marshal_info): Assert if
2788         signature is invalid. Bounds check stores to the
2789         mspecs array;
2790
2791 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2792
2793         * loader.c (field_from_memberref): Fix warning.
2794
2795 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2796
2797         * loader.c (mono_method_get_param_names): Check if signature
2798         is null. Don't store beyond the size of the name array.
2799
2800 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2801
2802         * loader.c (mono_get_method_constrained): Check if signature
2803         is null.
2804
2805 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2806
2807         * loader.c (mono_loader_set_error_bad_image): Improve
2808         error messages.
2809
2810 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2811
2812         * loader.c (mono_get_method_full): Convert an assertion
2813         into a loader error.
2814
2815 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2816
2817         * class-internals.h, class.c: Better naming and documentation.
2818
2819 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
2820
2821         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
2822         obj is NULL.
2823
2824 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2825
2826         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
2827         parsing fails.
2828
2829 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2830
2831         * loader.c (mono_loader_error_prepare_exception): Handle missing field
2832         errors with no class set.
2833
2834         * loader.c (field_from_memberref): If the field signature is of the wrong
2835         type fail with a MissingFieldException instead of a BadImageException as
2836         this is the behavior observed on MS. 
2837
2838 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2839
2840         * loader.c (field_from_memberref): Don't crash if either the field
2841         signature or the typespec class are invalid.
2842
2843 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2844
2845         * verify.c (verifier_load_field): Don't allow field related
2846         ops to reference fields on generic type definition.
2847
2848 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2849
2850         * metadata-verify.c: Add new warning level for errors specified
2851         by ECMA 335 but that MS ignores.
2852
2853         * metadata-verify.c (verify_method_table): Make compiler controled
2854         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2855         this check is safe because the end result will only be some visibility
2856         exceptions been thrown.
2857
2858 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2859
2860         * verify.c (get_boxable_mono_type): Don't allow the
2861         use of the generic type definition on boxed type positions.
2862
2863         Fixes #531237.
2864
2865 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2866
2867         * threadpool.c: Make sure no cross-domain references remain in
2868         ares_htable or the arrays that are thrown away when resizing.
2869
2870 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2871
2872         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2873         list of classes for which we have to unregister reflection_info
2874         with the GC and which are not in the namespace cache.
2875
2876         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2877         the class to the list.
2878
2879 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2880
2881         * domain.c (mono_domain_free): Unregister the GC roots in
2882         MonoDomain.
2883
2884 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2885
2886         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2887
2888 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2889
2890         * class.c: Add mono_class_get_field_from_name_full which does
2891         the same as mono_class_get_field_from_name but does check field
2892         signature as well.
2893
2894         * class-internals.h: Export mono_class_get_field_from_name_full as
2895         part of the internal API.
2896
2897         * loader.c (field_from_memberref): Search fields by name and signature
2898         as it's valid to have two fields with same name but different types.
2899
2900         Fixes #528055.
2901
2902 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2903
2904         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2905
2906         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2907
2908         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2909         System.Type.
2910
2911 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2912
2913         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2914
2915         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2916
2917 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2918
2919         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2920         to sgen-scan-object.h, which can be included and parameterized via
2921         macros.
2922
2923         * Makefile.am: sgen-scan-object.h added.
2924
2925 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2926
2927         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2928
2929 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2930
2931         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2932         before clearing a domain in the GC.
2933
2934 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2935
2936         * exception.c (mono_exception_from_name_domain): Actually create
2937         the exception in the specified domain.
2938
2939         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2940         OutOfMemoryException a bit later so that the domain is inialized
2941         "enough" that it works.
2942
2943 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2944
2945         * threads.c (thread_cleanup): Clean up the cached_culture_info
2946         array to prevent cross-domain references.
2947
2948 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2949
2950         * metadata.c: more documentation for MonoType accessors.
2951
2952 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2953
2954         Fix incorrect size definitions where the tail array isn't a list
2955         of pointers
2956         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2957         define size.
2958         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2959         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2960         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2961
2962 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2963
2964         * reflection.h:
2965         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2966
2967 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2968
2969         * metadata.c:
2970         * loader.c:
2971         * metadata-internals.h:
2972         * method-builder.c:
2973         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2974
2975 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2976
2977         * cominterop.c:
2978         * metadata.c:
2979         * metadata.h:
2980         * loader.c:
2981         * marshal.c:
2982         * reflection.c: #define for sizeof in MonoType and
2983         MonoMethodSignature.
2984
2985 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2986
2987         * domain.c:
2988         * domain-internals.h: add and use #define's instead of sizeof()
2989         for MonoJitInfo and MonoJitInfoTable.
2990
2991 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2992
2993         * object.c:
2994         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2995
2996 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2997
2998         * metadata.c:
2999         * metadata.h:
3000         * object.c:
3001         * class-internals.h:
3002         * generic-sharing.c:
3003         * marshal.c: use a #define instead of sizeof() for a few
3004         structures that use a zero-length array.
3005
3006 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
3007
3008         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
3009         to handle inflated generic methods.
3010
3011         * appdomain.c: Bump corlib version.
3012
3013         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
3014         instances.
3015
3016         * reflection.c (fixup_method): Same
3017
3018         * reflection.c (resolve_object): Same.
3019
3020         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
3021         g_error and a decent message.
3022
3023 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
3024
3025         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
3026         from the object because it could not yet be available globally
3027         (it happens if the profiler tries to create a gchandle on the
3028         MonoThread object of a thread that is still registering itself
3029         with the runtime).
3030
3031 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
3032
3033         * reflection.c (mono_generic_class_get_object): Initialized the
3034         managed type arguments array.
3035
3036         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
3037
3038         * appdomain.c: Bump corlib version.
3039
3040 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
3041
3042         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
3043         #527902.
3044
3045 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
3046
3047         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3048         Avoid a crash if synch_cs is not set.
3049         
3050         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3051         Handle the case when the handle is 0.
3052
3053         * appdomain.c: Bump corlib version.
3054
3055 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
3056
3057         * reflection.c (mono_type_get_object): Fix a warning.
3058
3059 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3060
3061         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
3062         descriptor here.  We assume it's already been computed.
3063
3064         * generic-sharing.c (instantiate_other_info): Compute the GC
3065         descriptor for info type MONO_RGCTX_INFO_KLASS.
3066
3067 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3068
3069         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
3070         type, so don't use MONO_OBJECT_SETREF to set a field.
3071
3072 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3073
3074         * gc.c: We were missing one case where invoking a finalizer would
3075         not reset the domain.  Also, in the finalizer thread loop, assert
3076         that we're in the root domain.
3077
3078 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3079
3080         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
3081         if the type is not an array.
3082
3083 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3084
3085         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
3086         method bound to the declaring type of the method. Raise an exception
3087         if the type is not a generic param.
3088
3089 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3090
3091         * class.c (print_unimplemented_interface_method_info): Print the
3092         full type name.
3093
3094         * class.c (mono_class_setup_vtable_general): When dealing with a
3095         generic instance first check if the generic type definition is
3096         not broken.
3097
3098 2009-02-11 Tom Hindke <tom_hindle@sil.org>
3099
3100         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
3101
3102         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
3103
3104         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
3105
3106         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
3107
3108         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
3109
3110         Code is contributed under MIT/X11 license
3111
3112 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
3113
3114         * verify.c: Fix naming of stelem and ldelem.
3115
3116 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3117
3118         * generic-sharing.c: Replace the templates lock with the loader
3119         lock because of very hard to resolve deadlock issues.
3120
3121 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
3122
3123         * icall.c (ves_icall_Type_GetMethodsByName): Use 
3124         mono_class_get_vtable_size () instead of accessing klass->vtable_size
3125         directly. Fixes #525338.
3126
3127         * class.c (mono_class_get_vtable_size): New helper function.
3128
3129         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
3130         the field belongs to the type. Fixes #525733.
3131
3132 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3133
3134         * sgen-gc.c: When we stop a thread and its stack top is not within
3135         its allocated stack (because it's in an altstack signal handler),
3136         restart it and stop it again, until it is.
3137
3138 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3139
3140         * sgen-gc.c: Take a thread's stack top and registers from the
3141         sigcontext in the suspend signal handler.
3142
3143         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
3144         stuff to sgen-archdep.h.
3145
3146         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
3147         caller, because have code in sgen-archdep.h to acquire that data.
3148
3149 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
3150
3151         * profiler.c, profiler.h, profiler-private.h:
3152         Added support for keeping track of code chunks and buffers.
3153
3154 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
3155
3156         * metadata-verify.c: Fix endianness problems on decoding functions.
3157         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
3158
3159 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
3160
3161         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
3162         schema for vectors and one dimension SZARRAY.
3163
3164 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
3165
3166         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
3167         schema for vectors and one dimension SZARRAY.
3168
3169 2009-07-27  Mark Probst  <mark.probst@gmail.com>
3170
3171         * icall-def.h, thread-types.h, threads.c: New separate icalls for
3172         Interlocked.(Compare)Exchange with object arguments, which invoke
3173         write barriers.
3174
3175 2009-07-26  Miguel de Icaza  <miguel@novell.com>
3176
3177         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
3178         passed invalid arguments.   Fixes another crasher in the
3179         Silverlight test suite.
3180
3181         * class.c (mono_class_array_element_size): Return 0 for the size
3182         of the class;  This fixes the crasher exposed by :
3183
3184         typeof (void).MakeArrayType ();
3185
3186         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
3187         if there is no method to dereference.    Put all the code that
3188         depends on this inside the if (method) block.
3189
3190         This fixes the crasher exposed by Microsoft's Silvelright CLR test
3191         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
3192
3193         With this change, we pass the test.
3194         
3195         * reflection.c (mono_reflection_sighelper_get_signature_local):
3196         Only dereference the assembly if it has been set.    Fixes a
3197         crasher exposed by #525328
3198
3199 2009-07-25  Mark Probst  <mark.probst@gmail.com>
3200
3201         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
3202         don't perform the store in mono_gc_wbarrier_generic_nostore().
3203         Remove the second argument (value), which is not needed.
3204
3205 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
3206
3207         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
3208         the build.
3209
3210         * boehm-gc.c: Ditto.
3211         
3212 2009-07-24  Mark Probst  <mark.probst@gmail.com>
3213
3214         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
3215         not perform the store itself.  Introduce
3216         mono_gc_wbarrier_generic_nostore(), which is the same as
3217         mono_gc_wbarrier_generic_store(), except it doesn't perform the
3218         store.
3219
3220 2009-07-24  Mark Probst  <mark.probst@gmail.com>
3221
3222         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
3223         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
3224         we still need the memcpy().
3225
3226 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3227
3228         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
3229         so that big arrays are handled correctly.  Always use
3230         safe_object_get_size() to calculate array object sizes, which
3231         takes bounds into account.
3232
3233 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3234
3235         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
3236         GC descriptor is computed before we use it.
3237
3238 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3239
3240         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
3241         write barrier if necessary.
3242
3243 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3244
3245         * icall-def.h, icall.c, thread-types.h: New separate icall for
3246         VolatileWrite(object&,object) that uses a write barrier.
3247
3248         * console-unix.c, file-io.c, icall.c, threads.c: Use write
3249         barriers in icalls which write to "ref" or "out" arguments.
3250
3251 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
3252
3253         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
3254         handler in a separate icall, to reduce the size of the wrappers.
3255
3256 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3257
3258         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
3259
3260 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3261
3262         * metadata-verify.c (parse_field): Allow byref field.
3263
3264         * metadata-verify.c (parse_locals_signature): Allow byref locals.
3265
3266         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
3267
3268 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3269
3270         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
3271         Fixes #522784.
3272
3273 2009-07-20  Robert Jordan  <robertj@gmx.net>
3274
3275         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
3276         Fix invalid IL in valuetype handling (STOBJ must push the
3277         corresponding class). Fixes bug #523149.
3278
3279         Code is contributed under MIT/X11 license.
3280
3281 2009-07-20  Geoff Norton  <gnorton@novell.com>
3282
3283         * gc.c: Use proper semaphores where available on posix and darwin.
3284
3285 2009-07-19  Geoff Norton  <gnorton@novell.com>
3286
3287         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
3288
3289 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
3290
3291         * refletion.c (is_sre_usertype): Change name to is_usertype and
3292         invert it's result so it returns true if the type is an user type
3293         and not the opposite.
3294
3295         * reflection.c (is_*_type): Change all of those to use new macro
3296         check_corlib_type_cached that cached the type lookup so we don't
3297         need to do string comparisons all the type. Changed the signature
3298         to take a MonoClass instead.
3299
3300         * reflection.c: Change mono_image_create_token and resolve_object
3301         to use is_sre_* functions.
3302
3303 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3304
3305         * sgen-gc.c: Check for writes to the stack in the managed
3306         wbarrier as well.
3307
3308 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3309
3310         * sgen-gc.c: When a thread is unregistered, don't free its remsets
3311         but put them on a list which is processed with the other thread's
3312         remsets.
3313
3314 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3315
3316         * sgen-gc.c: Fix and enable the internal allocator instead of
3317         using malloc/free (which causes deadlocks).
3318
3319 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
3320
3321         * refletion.c: Fix builds with SRE disabled by adding a minimal
3322         implementation of mono_reflection_type_get_handle.
3323
3324 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3325
3326         * refletion.c: Make mono_reflection_type_get_handle non static.
3327
3328         * object-internals.h: Export mono_reflection_type_get_handle.
3329
3330         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
3331         unmanaged handle using mono_reflection_type_get_handle.
3332
3333 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3334
3335         * refletion.c: Replace all reads of MonoReflectionType::type with
3336         calls to mono_reflection_type_get_handle. Only the functions that
3337         deal with constructing TypeBuilder::type have not been changed
3338         because they have to deal with NULL values.
3339
3340         This is a first step into supporting reflection types that don't
3341         map directly into their unmanaged counterpart.
3342
3343 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3344
3345         * metadata-verify.c (parse_locals_signature): Don't complain
3346         on signature with zero locals since MS generates it and doesn't
3347         bother with.
3348
3349 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3350
3351         * reflection.c (mono_image_get_array_token): Resolve return
3352         type using mono_reflection_type_get_handle.
3353
3354         * reflection.c (mono_image_get_array_token): Resolve array method
3355         parent type using mono_reflection_type_get_handle.
3356
3357 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
3358
3359         * reflection.c (mono_image_basic_init): Applied patch from
3360         <Dax@daxxfiles.net>. Set the public key token from the assembly
3361         builder. Fixes #518909.
3362
3363         * appdomain.c: Bump corlib version.
3364
3365 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
3366
3367         * class.c (mono_class_needs_cctor_run): Make this return false if
3368         the class has no cctor.
3369
3370 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3371
3372         * sgen-gc.c: When the minor GC needs to allocate a new section,
3373         invoke the major GC afterwards.
3374
3375 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
3376
3377         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
3378           Applying the window_style field to the SHELLEXECUTEINFO struct.
3379
3380         Code is contributed under MIT/X11 license.
3381
3382 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3383
3384         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
3385         locking earlier.  Fix it in the managed allocator by making sure
3386         that no thread is stopped there before the GC runs.  If we do stop
3387         a thread there, we restart it and let it run a but, until it stops
3388         somewhere else.
3389
3390         * gc-internal.h, gc.c: Function for getting the IP from a signal
3391         context via a function registered by mini.
3392
3393 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
3394
3395         * object-internals.h (MonoIntPtr): New structure describing a boxed
3396         IntPtr.
3397
3398         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
3399         returns. Fixes #519953.
3400
3401         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
3402
3403 2009-07-09  Mark Probst  <mark.probst@gmail.com>
3404
3405         * class-internals.h, generic-sharing.c: New RGCTX info type for
3406         getting a remoting invoke with check wrapper.
3407
3408 2009-07-07  Geoff Norton  <gnorton@novell.com>
3409
3410         * icall-def.h: Fix the enable-minimal build.
3411
3412 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3413
3414         * object-internals.h: Add MonoReflectionDerivedType.
3415
3416         * reflection.c: Implement support for PointerType.
3417         Fixed tons of warnings.
3418
3419 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3420
3421         * object-internals.h: Add MonoReflectionByRefType.
3422
3423         * reflection.c: Implement support for ByRefType.
3424
3425 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3426
3427         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
3428
3429         * object-internals.h: Add MonoReflectionArrayType and
3430         mono_reflection_create_unmanaged_type.
3431
3432         * reflection.c: Implement support for ArrayType.
3433
3434 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3435
3436         * metadata-verify.c (is_valid_method_header): Parse EH block
3437         flags correctly.
3438
3439 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3440
3441         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
3442         processing the disappearing links, and process disappearing links
3443         in a loop until no new objects are copied.
3444
3445 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3446
3447         * object.c (handle_enum): Invoke the write barrier when copying
3448         value type instances.
3449
3450         * sgen-gc.c: Register remsets for unmanaged write barriers only
3451         when the address written to is actually on the heap.  This makes
3452         set_value() in object.c work without requiring that the result be
3453         on the heap.
3454
3455 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
3456
3457         The runtime wrappers are all bound to a given type that must
3458         exist in the same image. For regular images we use the <Module>
3459         type, which is required to exist for all images.
3460
3461         The <Module> type can't be used for dynamic images because it
3462         might not exist at the time the wrapper is required, so we create
3463         a synthetic type to use instead.
3464
3465         The current code works because of the 2 stage setup of MonoClass,
3466         but once this is gone it will no longer work.
3467
3468         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
3469
3470         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
3471
3472         * object-internals.h: Export mono_image_set_wrappers_type icall
3473         as part of the internal API.
3474
3475         * marshal.c (get_wrapper_target_class): If the image is dynamic,
3476         use MonoDynamicImage::wrappers_type instead of the <Module> type.
3477
3478         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
3479         image wrappers_type to the provided value.
3480
3481 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
3482
3483         * appdomain.c (deregister_reflection_info_roots): No need
3484         to use the image lock here.
3485
3486 2009-07-02  Mark Probst  <mark.probst@gmail.com>
3487
3488         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
3489
3490 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
3491
3492         * threads.c: Store the thread start argument in a hash table instead of
3493         registering it as a root, as libgc doesn't support unregistering roots
3494         under windows, leading to 'too many root sets' errors when many threads
3495         are created.
3496
3497         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
3498         shutdown, they can still be referenced by the other dying objects.
3499         Fixes #514506.
3500
3501 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3502
3503         * socket-io.c: DontLinger does not allow LingerOptions.
3504
3505 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3506
3507         * metadata-verify.c: The spec doesn't mention that it's possible to add
3508         custom attribute to a generic parameter. Fixed.
3509
3510 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3511
3512         * class.c (inflate_generic_type): Don't crash while trying to output a message
3513         on why we're aborting.
3514
3515 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3516
3517         * socket-io.c: DontLinger can take an int or a boolean too.
3518
3519 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
3520
3521         * gc.c: check for a null argument to SuppressFinalize () and
3522         ReRegisterForFinalize ().
3523
3524 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3525
3526         * loader.c (method_from_methodspec): Call into the verifier to check
3527         the signature.
3528
3529         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
3530
3531         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
3532         part of the internal API.
3533
3534 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3535
3536         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
3537         the signature.
3538
3539         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
3540
3541         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
3542         part of the internal API.
3543
3544 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3545
3546         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
3547         the signature.
3548
3549         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
3550         blob verification.
3551
3552         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3553         part of the internal API.
3554
3555 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3556
3557         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
3558         when doing basic verification. 
3559
3560         This check must be done since the runtime peeks into signatures in much
3561         more places than it does decoding so it makes sense to ensure that all
3562         pointers to blob objects are well formed.
3563
3564 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3565
3566         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
3567         Use proper overflow dectection. Fix usage of it.
3568
3569 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3570
3571         * loader.c (field_from_memberref): Call into the verifier to check
3572         the signature.
3573
3574         * loader.c (mono_method_get_signature_full): Same.
3575
3576         * loader.c (method_from_memberref): Same.
3577
3578         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
3579
3580         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3581         part of the internal API.
3582
3583 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3584
3585         * threadpool.c (mono_thread_pool_add): If the domain is unloading
3586         or unloaded, still return an AsyncResult, but don't add it to the
3587         threadpool.
3588
3589 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3590
3591         * threads.c: fix missing colon when DEBUG is defined.
3592
3593 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3594
3595         * threadpool.c: Don't add new calls to a threadpool if the domain
3596         of the call is unloading or unloaded.  When dequeuing a job, null
3597         the reference in the queue.
3598
3599 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3600
3601         * sgen-gc.c (null_link_in_range): Add the dislink for the old
3602         generation if an object was moved.
3603
3604 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
3605
3606         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
3607           parameters of type SAFEARRAY[VARIANT].
3608
3609         * reflection.c (encode_marshal_blob): Properly generate element type
3610           (SafeArraySubType marshal attribute option).
3611
3612         Code is contributed under MIT/X11 license.
3613
3614 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
3615
3616         * reflection.c: in mono_method_clear_object () really ensure all the
3617         objects are removed.
3618
3619 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3620
3621         * loader.c (mono_method_signature): Call into the verifier to check
3622         the method signature.
3623
3624         * metadata-verify.c (verify_method_table): Move signature verification
3625         to verify_method_table_full.
3626
3627         * metadata-verify.c: Add mono_verifier_verify_method_signature.
3628
3629         * verify-internals.h: Export mono_verifier_verify_method_signature as
3630         part of the internal API.
3631
3632 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3633
3634         * loader.c (mono_method_get_header): Call into the verifier to
3635         check the method header.
3636
3637         * metadata-verify.c: Add mono_verifier_verify_method_header.
3638
3639         * verify-internals.h: Export mono_verifier_verify_method_header as
3640         part of the internal API.
3641
3642 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3643
3644         * class.c (mono_class_find_enum_basetype): Call into the verifier to
3645         check the field signature. Replace an assert with an explicit check.
3646
3647         * class.c (mono_class_setup_fields): Call into the verifier to check
3648         the field signature.
3649
3650         * metadata-verify.c: Add mono_verifier_verify_field_signature.
3651
3652         * verify-internals.h: Export mono_verifier_verify_field_signature as
3653         part of the internal API.
3654
3655 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3656
3657         * class.c (mono_class_find_enum_basetype): Simplify this function
3658         by moving code outside of the loop and not decoding static fields.
3659
3660 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3661
3662         * metadata-verify.c (verify_typedef_table): Check the extends
3663         token here. Move to here a flags check from verify_typedef_table_full.
3664
3665 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
3666
3667         * metadata-verify.c (is_valid_method_header): Fix a warning.
3668
3669         * metadata-internals.h (MonoImage): Remove the unused 
3670         static_rgctx_invoke_wrapper_cache.
3671
3672         * image.c marshal.c: Ditto.
3673
3674 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3675
3676         * image.c (do_mono_image_load): Enable table data verification.
3677
3678 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3679
3680         * metadata-verify.c (is_valid_constant): Fix nullref check.
3681
3682 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3683
3684         * metadata-verify.c (is_valid_constant): Fix string bounds check.
3685
3686 2009-06-22  Mark Probst  <mark.probst@gmail.com>
3687
3688         * sgen-gc.c: Managed allocation with pthreads TLS.
3689
3690         * threads.c, threads-types.h: Functions for the JIT to tell the
3691         runtime whether it supports the MONO_TLS opcode.
3692
3693 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3694
3695         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
3696         without methods.
3697
3698 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3699
3700         * metadata-verify.c (is_valid_constant): Fix the string length check.
3701         Use safe overflow checking. Add decent error messages.
3702
3703 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3704
3705         * metadata-verify.c: Move remaininh blob checks to the offline
3706         verification path.
3707
3708 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3709
3710         * metadata-verify.c: Move more blob checks to the offline verification
3711         path.
3712
3713 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
3714
3715         * object-internals.h : Adding interrupt_on_stop field.
3716
3717         * threads.c (mono_thread_request_interruption) : On Windows exit the
3718           thread if interrupt_on_stop is set.
3719
3720         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
3721          Removing old interrupt logic and setting the interrupt_on_stop for the
3722          thread when calling accept.
3723
3724         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
3725          setting the interrupt_on_stop for the thread when calling accept.
3726
3727         Contributed under MIT/X11 license.
3728
3729 2009-06-20  Martin Baulig  <martin@ximian.com>
3730
3731         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
3732
3733 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
3734
3735         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
3736         running in no-exec mode.
3737
3738 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3739
3740         * metadata-verify.c (verify_method_table): Move header
3741         checking to verify_method_table_full.
3742
3743         * metata-verify.c (mono_verifier_verify_full_table_data):
3744         Call verify_method_table_full.
3745
3746 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3747
3748         * metadata-verify.c (verify_field_table): Move signature
3749         checking to verify_field_table_full.
3750
3751         * metata-verify.c (mono_verifier_verify_full_table_data):
3752         Call verify_field_table_full.
3753
3754 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3755
3756         * metadata-verify.c (verify_typedef_table): Move remaining
3757         stuff to verify_typedef_table_full.
3758
3759 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3760
3761         * metadata-verify.c: Kill is_corlib from VerifyContext.
3762         It is only used by the offline mode.
3763         So we better remove it from the runtime path.
3764
3765 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3766
3767         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
3768         function that perform the offline metadata verification steps.
3769
3770         * metadata-verify.c (verify_typedef_table): Move some checks to
3771         verify_typedef_table_full and make it been called by new function
3772         mono_verifier_verify_full_table_data.
3773
3774         * pedump.c: Call mono_verifier_verify_full_table_data.
3775
3776         * verify-internals.h: Export mono_verifier_verify_full_table_data as
3777         part of the internal API.
3778
3779 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3780
3781         * metadata-verify.c (typedef_is_system_object): Fix System.Object
3782         check.
3783
3784         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
3785         flags bits. SupportLastError was confused as bit 7 instead of 6.
3786
3787         * metadata-verify.c (verify_implmap_table): Fix import scope verification
3788         to check against the module ref table instead of module.
3789
3790         * metadata-verify.c (verify_implmap_table): Fix corlib check.
3791
3792         * pedump.c: Call mono_image_load_names.
3793
3794 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3795
3796         * image.c: Extract mono_image_load_names from do_mono_image_load.
3797
3798         * metadata-internals.h: Export mono_image_load_names as part of
3799         the internal API.
3800         
3801 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
3802
3803         * metadata.c (mono_metadata_cleanup): Free the generic method cache
3804         first, as it could reference data in the other caches.
3805
3806 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3807
3808         * metadata-verify.c: Finished with method header verification.
3809
3810 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3811
3812         * metadata-verify.c: Added more header verification code.
3813         Now only EH clauses are missing.
3814
3815 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
3816
3817         * marshal.c (get_runtime_invoke_type): Don't share primitive types
3818         for return values.
3819
3820 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3821
3822         * metadata-verify.c: Initial method header verification.
3823
3824 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3825
3826         * metadata-verify.c (verify_import_table): The IAT contents
3827         might end been patched by the windows DL when running with
3828         coree enabled.
3829
3830 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
3831
3832         * class.c (mono_class_from_typeref): If the enclosing type is not
3833         found return null instead of crashing. Fixes #508487.
3834
3835 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3836
3837         * normalization-tables.h : updated to the latest unicode charcter
3838           data.
3839         * appdomain.c : bump corlib version.
3840
3841 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3842
3843         * class.c (mono_class_from_name): Fix support for assembly references
3844         in the EXPORTEDTYPE table. Fixes #511704.
3845
3846 2009-06-13  Geoff Norton  <gnorton@novell.com>
3847
3848         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3849         assembly in the target domain.
3850
3851 2009-06-12  Robert Jordan  <robertj@gmx.net>
3852
3853         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3854         because "this" of the managed signature has become an
3855         ordinary parameter in the unmanaged signature.
3856
3857 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3858
3859         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3860         field for owner-less generic containers.
3861
3862         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3863         image field of the owner-less generic containers created here.
3864
3865         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3866         contain is ownerless until the caller sets its owner.
3867
3868         * metadata.c (type_in_image): Handle owner-less generic containers
3869         correctly.
3870         
3871 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3872
3873         * image.c (mono_image_close): Support debug_assembly_unload for
3874         dynamic images too.
3875
3876 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3877
3878         * class.c: Fix some typos in comments.
3879
3880 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3881
3882         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3883
3884         * threads.c (mono_thread_execute_interruption): Avoid creating the
3885         abort exception object while holding the synch_cs lock.
3886
3887 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3888
3889         * metadata-verify.c: Verify basic cattr content.
3890
3891 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3892
3893         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3894         nested types.
3895         
3896         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3897         support for nested types. Fixes #511704.
3898
3899 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3900
3901         * metadata-verify.c: Verify methodspec signatures.
3902
3903 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3904
3905         * metadata-verify.c: Verify typespec signatures.
3906
3907 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3908
3909         * metadata.c (free_inflated_method): Call 
3910         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3911
3912 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3913
3914         * mono-config.c: Small change to report the PPC64/ILP32 model.
3915
3916 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3917
3918         * metadata-verify.c (parse_type): Check szarray.
3919
3920 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3921
3922         * metadata-verify.c (parse_type): Check fnptr.
3923
3924 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3925
3926         * metadata-verify.c (parse_type): Check generic instances.
3927
3928 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3929
3930         * metadata-verify.c (parse_type): Check array shape.
3931
3932 2009-06-05  Robert Jordan  <robertj@gmx.net>
3933
3934         * class.c (mono_class_create_from_typedef): Check only for
3935         mscorlib's System.Array.
3936
3937 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3938
3939         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3940         and generic params. 
3941
3942         * metadata-verify.c (parse_field): Check the signature.
3943
3944 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3945
3946         * metadata-verify.c: Implement locals signature check.
3947
3948 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3949
3950         * domain.c: Add .NET 4.0 Beta 1 version.
3951
3952 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3953
3954         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3955           For QueryInterface on CCWs consider the base class
3956           interfaces as well.
3957
3958         Code is contributed under MIT/X11 license.
3959
3960 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3961
3962         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3963
3964         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3965         used.
3966
3967         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3968         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3969
3970         * generic-sharing.c (inflate_other_data): Ditto.
3971         
3972 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3973
3974         * metadata-verify.c: Implement property signature check.
3975
3976 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3977
3978         * sgen-gc.h: Register saving support for PPC.
3979
3980 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3981
3982         * sgen-gc.c: Fixed a pthread TLS screwup.
3983
3984 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3985
3986         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3987         supported.
3988
3989 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3990
3991         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3992         keyword is not supported.
3993
3994 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3995
3996         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3997         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3998         the inflated method is freed. Fixes #508389.
3999
4000         The code is contributed under the MIT/X11 license.
4001         
4002 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
4003
4004         * marshal.c (get_wrapper_target_class): New helper function.
4005         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
4006         the <Module> class of the image. Fixes #509049.
4007
4008 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4009
4010         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
4011         Check if the thread was interrupted and proccess it straight away.
4012         Makes abortion much more responsive.
4013
4014 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4015
4016         * threads.c (mono_thread_execute_interruption): Use atomic cas with
4017         MonoThread::interruption_requested to match it's counterpart.
4018
4019         Fixes a hang in abort-stress-1 on a 2 core x86.
4020
4021         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4022         Fix warning.
4023
4024 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4025
4026         Change MonoImage::name_cache to be protected by the image lock
4027         instead of the loader lock.
4028
4029         * appdomain.c (deregister_reflection_info_roots): Protect access
4030         to name_cache.
4031
4032         * class.c (mono_image_init_name_cache): Change from the loader lock
4033         to the image lock. Check if the cache wasn't already created.
4034
4035         * class.c: Change from the loader to the image lock.
4036
4037         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
4038         the code to hold the image lock while iterating over name_cache and
4039         not go into mono_array_new holding it.
4040
4041         * metadata-internals.h: Add a comment about this change.
4042
4043 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4044
4045         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
4046         Under the 2.0 profile raise the loader error.
4047
4048         Fixes #508532.
4049
4050 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4051
4052         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
4053         of ldind opcode for generic instances so we don't fail for direct wrappers.
4054         This only affect direct calls.
4055
4056 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
4057
4058         * reflection.c (create_dynamic_mono_image): Fix warnings.
4059
4060         * generic-sharing.c (other_info_equal): Ditto.
4061         
4062 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4063
4064         * metadata-verify.c: Implement field signature check.
4065
4066 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4067
4068         * metadata-verify.c: Implement standalone signature check.
4069
4070 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
4071
4072         * metadata-verify.c: Implement methodref signature check.
4073
4074 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
4075
4076         * object-internals.h (MonoRuntimeCallbacks): New structure containing
4077         callbacks supplied by the runtime.
4078
4079         * object.c (mono_install_callbacks): New internal function to install
4080         the callbacks.
4081
4082         * object.c (mono_create_ftnptr): Move the implementation of this to
4083         mini/.
4084
4085         * object.c (mono_get_addr_from_ftnptr): Ditto.  
4086
4087 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
4088
4089         * metadata-verify.c (parse_return_type): Proper byref check.
4090         * metadata-verify.c (is_valid_method_signature): Check for zero arity
4091         generic signatures and method params.
4092
4093 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
4094
4095         * metadata-verify.c (decode_signature_header): Fix bounds check.
4096
4097         * metadata-verify.c (parse_custom_mods): Check custom mods.
4098
4099         * metadata-verify.c (parse_type): Do initial basic verification
4100         of valid values.
4101         
4102         * metadata-verify.c (is_valid_method_signature): Parse the generic
4103         param count.
4104
4105 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
4106
4107         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
4108         discarded based on their most specific definition so we set the method_slots
4109         array before checking if the method is acceptable or not.
4110
4111         Fixes #506757.
4112
4113 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4114
4115         * icall.c: Free the old array when resizing a mono_ptr_array.
4116
4117 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4118
4119         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
4120         for the hashes whose keys are managed objects.
4121
4122 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4123
4124         * object-internals.h, threads.c: Set the execution context on
4125         thread start here, not in corlib.
4126
4127         * appdomain.c: Bump corlib version.
4128
4129 2009-05-27  Martin Baulig  <martin@ximian.com>
4130
4131         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
4132         if `_mono_debug_using_mono_debugger' is set to make things work
4133         properly when embedding Mono.
4134
4135 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4136
4137         * class.c (mono_class_setup_fields): Don't mark simd types as having
4138         16 bytes alignment as the whole runtime doesn't support.
4139
4140 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4141
4142         * metadata-verify.c (safe_read): Use endian safe read macros.
4143
4144 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
4145
4146         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
4147         it is read-only when using full aot.
4148
4149 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
4150
4151         * metadata-verify.c (is_valid_method_signature): Verify parts
4152         of the return type. Provide an error message in case of failure.
4153
4154 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
4155
4156         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
4157
4158 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
4159
4160         * metadata-verify.c: Include the size prefix in the bounds check.
4161
4162 2009-05-22  Miguel de Icaza  <miguel@novell.com>
4163
4164         * icall.c: Remove warnings.
4165
4166         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
4167         prevent auto-detection based on GCC defines.
4168
4169         Add PS3
4170
4171         * metadata-verify.c: Do not include signal.h
4172
4173         * generic-sharing.c, marshal.c: Add returns to avoid some warning
4174         messages.  Not sure why the g_assert_not_reached is not enough to
4175         quiet the compiler.
4176         
4177
4178         * appdomain.c: Remove code that is not used when
4179         DISABLE_SHADOW_COPY is set.
4180
4181         * image.c: use g_getenv
4182
4183 2009-05-21  Miguel de Icaza  <miguel@novell.com>
4184
4185         * reflection.c: Remove code that it not used with
4186         DISABLE_REFLECTION_EMIT is defined.
4187
4188 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
4189
4190         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
4191         invoke wrappers.
4192
4193 2009-05-20  Miguel de Icaza  <miguel@novell.com>
4194
4195         * socket-io.c
4196         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
4197         the ifdef here and instead put that on io-layer
4198
4199 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4200
4201         * metadata-verify.c: Verify the generic param constraint table.
4202
4203 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4204
4205         * metadata-verify.c (verify_generic_param_table): Fix
4206         thinko on the valid flags bits for generic params.
4207
4208 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4209
4210         * metadata-verify.c: Verify the methodspec table.
4211
4212 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4213
4214         * metadata-verify.c: Verify the generic param table.
4215
4216 2009-05-19  Mark Probst  <mark.probst@gmail.com>
4217
4218         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
4219
4220 2009-05-19  Mark Probst  <mark.probst@gmail.com>
4221
4222         * sgen-gc.c: Use generation enum more consistently and use the
4223         correct generation in mono_gc_register_for_finalization().
4224
4225 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
4226
4227         * metadata-verify.c: Verify the nested class table.
4228
4229 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
4230
4231         * metadata-verify.c: Verify the manifest resource table.
4232
4233 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
4234
4235         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
4236
4237 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
4238
4239         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
4240         wrappers, this is now done in the JIT.
4241         
4242         * class.c (mono_set_generic_sharing_supported): New internal function.
4243         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
4244
4245 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4246
4247         * metadata-verify.c: Verify the exported type table.
4248
4249 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4250
4251         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
4252
4253 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4254
4255         * metadata-verify.c: Verify the file table.
4256
4257 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4258
4259         * metadata-verify.c (verify_assembly_table): Fix an error message.
4260
4261         * metadata-verify.c: Verify the assemblyref table.
4262
4263 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4264
4265         * metadata-verify.c (verify_assembly_table): Fix the valid
4266         bits mask for flags.
4267
4268 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4269
4270         * debug-helpers.c (mono_method_full_name): Print generic parameters of
4271         generic methods as well.
4272
4273 2009-05-15  Geoff Norton  <gnorton@novell.com>
4274
4275         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
4276         use-case and is significantly more performant than the wapi layer.
4277
4278 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4279
4280         * metadata-verify.c: Verify the assembly table.
4281
4282 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4283
4284         * metadata-verify.c: Fix rows limit check.
4285
4286 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4287
4288         * metadata-verify.c: Verify the fieldrva table.
4289
4290 2009-05-13  Mark Probst  <mark.probst@gmail.com>
4291
4292         * sgen.c: Speed up weak links and finalizers by grouping them by
4293         generation.
4294
4295 2009-05-13  Mark Probst  <mark.probst@gmail.com>
4296
4297         * marshal.c (delegate_hash_table_add): When overwriting an entry,
4298         free the old GCHandle (only applies to SGen).
4299
4300 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
4301
4302         * loader.c (mono_get_method_from_token): Avoid the expensive call to
4303         mono_metadata_load_generic_params () for non-generic methods.
4304
4305 2009-05-12  Mark Probst  <mark.probst@gmail.com>
4306
4307         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
4308         New function for returning a monitor's weak link if it has one.
4309
4310         * sgen-gc.c: Remove an object's monitor's weak link (if it has
4311         one) when clearing a domain.  These can still be around because
4312         the object might not have been collected.
4313
4314 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
4315
4316         * gc.c: Fix a warning.
4317
4318 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
4319
4320         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
4321         prevous wait that resulted in a deadlock on Windows when initializing
4322         the runtime form DllMain. Also results in improved startup time.
4323         (finalizer_thread): Get rid of thread_started_event.
4324         * threads.c, threads-types.h (mono_thread_create_internal): Return the
4325         resulting MonoThread.
4326
4327         Contributed under MIT/X11 license.
4328
4329 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
4330
4331         * metadata-verify.c: Verify the implmap table.
4332         Don't require that #US and #Strings be present.
4333
4334 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
4335
4336         * security-core-clr.c: Delegate checks are done at creation time,
4337         not a invocation time. Fix exception for Telerik Silverlight demo
4338
4339 2009-05-11  Mark Probst  <mark.probst@gmail.com>
4340
4341         * sgen-gc.c (need_remove_object_for_domain): Remove the special
4342         case for the Thread class.
4343
4344         * threads.c: Do clean-up of abort exception/state in
4345         thread_cleanup() instead of Thread.free_internal().  Also clean up
4346         current_appcontext.  The reason we have to do that is because
4347         those references might point into another domain and if that
4348         domain is unloaded before the thread is finalized, they point to
4349         invalid data.
4350
4351 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
4352
4353         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
4354         stub signatures.
4355         
4356         Contributed unter MIT/X11 license.
4357
4358 2009-05-09  Miguel de Icaza  <miguel@novell.com>
4359
4360         * verify.c, metadata-verifier.c: Add support for disabling the
4361         verifier in some builds.
4362
4363         [ Sorry, my previous commit accidentally commited some work in
4364         progress ]
4365
4366 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
4367
4368         * class.c (mono_class_setup_fields): Set class->field.first for
4369         generic instances.
4370
4371 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4372
4373         * metadata-verify.c: Verify the typespec table.
4374
4375 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4376
4377         * metadata-verify.c: Verify the module table.
4378
4379 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4380
4381         * metadata-verify.c: Verify the methodimpl table.
4382
4383 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4384
4385         * metadata-verify.c: Verify the property table.
4386
4387 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
4388
4389         * debug-helpers.c (mono_method_desc_match): Add support for generic
4390         glob patterns.
4391
4392 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
4393
4394         * metadata-verify.c: Verify the propertymap table.
4395
4396 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
4397
4398         * metadata-verify.c: Verify the event table.
4399
4400         * metadata-verify.c (search_sorted_table): Fix offset
4401         calculation.
4402
4403 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
4404
4405         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
4406
4407 2009-05-01  Mark Probst  <mark.probst@gmail.com>
4408
4409         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
4410         because mono_delegate_free_ftnptr() needs it.
4411
4412 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4413
4414         * metadata-verify.c: Verify the eventmap table.
4415
4416 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4417
4418         * metadata-verify.c: Verify the standalonesig table.
4419
4420 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4421
4422         * metadata-verify.c: Verify the field layout table.
4423
4424 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4425
4426         * class.c (mono_type_get_name_recurse): Don't crash
4427         for ownerless generic params.
4428
4429         * debug-helpers.c (mono_type_get_desc): Correct the format
4430         for ownerless generic params.
4431
4432 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4433
4434         * metadata-verify.c: Verify the class layout table.
4435
4436 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4437
4438         * metadata-verify.c: Verify the decl security table.
4439
4440 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4441
4442         * domain.c (mono_domain_set_internal_with_options): Don't do
4443         anything if the old domain is the same as the old one.  Fixes
4444         #499326.
4445
4446 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4447
4448         * appdomain.c: Deregister the reflection_info roots when unloading
4449         a domain.
4450
4451         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
4452         memory allocated by a domain and frees its disappearing links.
4453
4454         * boehm-gc.c, null-gc.c: Empty implementation of
4455         mono_gc_clear_domain().
4456
4457 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4458
4459         * appdomain.c (clear_cached_vtable): Free the static fields memory
4460         block.
4461
4462 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4463
4464         * gc.c: Set the correct domain when invoking finalizers.
4465
4466         * appdomain.c: Set the correct domain when creating threads.
4467
4468 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4469
4470         * sgen-gc.c: Fix skip size for vectors.
4471
4472 2009-05-03  Martin Baulig  <martin@ximian.com>
4473
4474         * mono-debug-debugger.c
4475         (mono_debugger_check_breakpoints): Check class init handlers even
4476         if we don't have any method load handers.
4477
4478 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
4479
4480         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
4481         returning refonly assemblies if refonly is FALSE. Fixes #499013.
4482
4483 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4484
4485         * metadata-verify.c: Verify the field marshal table.
4486
4487 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4488
4489         * metadata-verify.c: Verify the custom attribute table.
4490
4491 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4492
4493         * metadata-verify.c: Verify the constant table.
4494
4495 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4496
4497         * metadata-verify.c: Verify the memberef table.
4498
4499 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4500
4501         * metadata-verify.c (get_coded_index_token): Remove
4502         dead argument.
4503
4504 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4505
4506         * metadata-verify.c: Verify the interfaceimpl table.
4507
4508 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4509
4510         * verify.c: Improve error message.
4511
4512         * debug-helpers.c (mono_type_get_desc): Harden the code that
4513         deals with VAR and MVAR.
4514
4515 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
4516
4517         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
4518         part of #498692.
4519
4520 2009-04-23 Tom Hindle <tom_hindle@sil.org>
4521
4522         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
4523         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
4524
4525 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
4526
4527         * security-core-clr.c: Avoid redundant checks for platform code, 
4528         e.g. check for method and for class (very common) and check
4529         for class and outer class (less common)...
4530
4531 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
4532
4533         * reflection.c: Avoid returning random cattrs for synthetic methods.
4534         Fixes #498545.
4535
4536 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4537
4538         * assembly.c: assemblies in the GAC should never be shadow-copied.
4539
4540 2009-04-26  Mark Probst  <mark.probst@gmail.com>
4541
4542         * domain.c, domain-internals.h: Disable
4543         track_resurrection_{objects,handles}_hash in MonoDomain if using
4544         SGen.
4545
4546 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4547
4548         * metadata-verify.c: Verify the param table.
4549
4550 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4551
4552         * metadata-verify.c (verify_typedef_table): Range check FieldList and
4553         MethodList.
4554
4555         * metadata-verify.c (verify_method_table): Proper check the ParamList
4556         field.
4557
4558 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4559
4560         * metadata-verify.c (verify_method_table): Check for runtime
4561         implemented functions such as delegate .ctors. Remove spurious
4562         printf.
4563         
4564 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4565
4566         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
4567
4568 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4569
4570         Don't allocate MonoGenericInfo for ownerless generic params.
4571         * class-internals.h (MonoGenericParam::info): Move field to ...
4572         (MonoGenericParamFull): ... this.  New struct.
4573         (MonoGenericContainer::type_params): Change type to
4574         MonoGenericParamFull.
4575         (MonoGenericParam, MonoGenericContainer): Update accessors.
4576         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
4577         'info' field for ownerless generic param.
4578         (mono_metadata_load_generic_params): Update to changes.
4579         * reflection.c (mono_reflection_create_generic_class): Likewise.
4580         (reflection_methodbuilder_to_mono_method): Likewise.
4581         (mono_reflection_initialize_generic_parameter): Likewise.
4582
4583 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4584
4585         Don't use MonoGenericParamInfo for ownerless generic params.
4586         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
4587         use ParamInfo class at all.
4588         (mono_class_from_generic_parameter): Use them.
4589         (make_generic_param_class): Fix a couple of instances where 'pinfo
4590         == NULL' wasn't handle.
4591
4592 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4593
4594         * class.c (make_generic_param_class): Carve out of ...
4595         (mono_class_from_generic_parameter): ... here.
4596
4597 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4598
4599         Simplify mono_class_from_generic_parameter
4600         * class-internals.h (MonoGenericParamInfo::token): New field.
4601         * metadata.c (mono_metadata_load_generic_params): Initialize it
4602         from metadata.
4603         * class.c (mono_class_from_generic_parameter): Use it instead of
4604         searching through metadata.
4605
4606 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4607
4608         * metadata-verify.c: Add verification of the method table.
4609
4610 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4611
4612         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
4613         Delegate::Invoke optimization.
4614
4615 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4616
4617         * appdomain.c (mono_domain_create_appdomain_internal): Free the
4618         string returned by get_shadow_assembly_location_base.
4619
4620         * appdomain.c (get_shadow_assembly_location_base): Add a comment
4621         about caller's ownership.
4622
4623 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4624
4625         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
4626         reflection memory on domain unload.
4627
4628         * domain.c (mono_domain_free): Don't free refobject_hash, let the
4629         reflection cleanup code do it.
4630
4631         * domain-internals.h: Add mono_reflection_cleanup_domain.
4632
4633         This fixes a memory leak for managed mirrors of reflection objects
4634         on domain unload. 
4635
4636 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4637
4638         * metadata-verify.c: Implement more verification of the field table.
4639
4640 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4641
4642         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
4643         doesn't try to parse the input assembly, which can be broken.
4644
4645 2009-04-23  Mark Probst  <mark.probst@gmail.com>
4646
4647         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
4648         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
4649         by using the lowest bit in the link to store whether the link is
4650         tracked.  Move the track_resurrection hashes into boehm-gc.c.
4651
4652 2009-04-22  Miguel de Icaza  <miguel@novell.com>
4653
4654         * Makefile.am: Split the console support in platform specific code
4655         and put together a framework for making this easy in the future so
4656         that we can start splitting code instead of having a mess of PLATFORM_WIN32
4657
4658 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4659
4660         * pedump.c: Fix a warning.
4661
4662 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4663
4664         * verify.c (mono_delegate_type_equal): Compare valuetypes using
4665         mono_class_from_mono_type to avoid bad interactions with the dual representation
4666         of the generic type definition.
4667
4668 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4669
4670         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
4671         get the MonoClass for the call context type as it might be a generic
4672         instance.
4673
4674         Fixes #491483.
4675
4676 2009-04-21  Mark Probst  <mark.probst@gmail.com>
4677
4678         * object-internals.h: The Thread object has no execution_context
4679         member anymore.
4680
4681         * threads.c, threadpool.c, threads-types.h: Accessor functions for
4682         the execution context.
4683
4684         * appdomain.c: Bump corlib version.
4685
4686 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4687
4688         * verify.c (do_newobj): Improve error message.
4689
4690 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4691
4692         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
4693         is nested in the filter block.
4694
4695         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
4696         block is not fully nested.
4697
4698         Fixes #495656.
4699
4700 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4701
4702         * verify.c (verify_type_compatibility_full): Compare MonoClass and
4703         not MonoType to check for equality of valuetypes as the generic type
4704         definition allows for two different encodings: the generic type definition
4705         class or a generic instance over the GTD arguments.
4706
4707         Fixes #496175.
4708
4709 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4710
4711         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
4712
4713         * verify.c (do_initobj): Improve error message.
4714
4715 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4716
4717         * metadata-verify.c: Enable pe verification as the issue with #496453
4718         is that the authenticode data directory have a different unspecified
4719         format. Ignore it for now.
4720
4721         * pedump.c: Run the metadata verifier together with the IL verifier.
4722
4723         Fixes ##496453.
4724
4725 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4726
4727         * metadata-verify.c: Temporarily disable pe verification due to #496453.
4728
4729 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4730
4731         * class.c (can_access_type): Check visibility against
4732         the element type for pointers and arrays.
4733
4734         Fixes #496150.
4735
4736 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4737
4738         * metadata-verify.c: Fix cli and table verification to use information
4739         from the MonoImage. A lot of duplicated code got killed.
4740
4741 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4742
4743
4744         This patch starts to integrate the metadata verifier with the runtime code.
4745
4746         This patch causes major regression in functionality for the metadata verifier
4747         as cli and table verification are disabled since they require to be ported to
4748         use MonoImage information.
4749
4750         * image.c (do_mono_image_load): Split the code in this function
4751         into mono_image_load_pe_data and mono_image_load_cli_data.
4752         Add     care_about_pecoff parameter to not load pecoff data.
4753         Call into the metadata verifier for pecoff and cli verification.
4754
4755         * image.c (mono_image_open_raw): New function that doesn't perform
4756         any parsing of the image contents.
4757         
4758         The reason for the 3 new functions is to give pedump better control
4759         into the interaction with the verifier.
4760
4761         * metadata-internals.h: Add new functions from image.c as part of the
4762         internal mono API.
4763
4764         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
4765         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
4766         to make those functions work together with the runtime.
4767
4768         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
4769         true if the image needs to be verified.
4770
4771         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
4772
4773         * pedump.c: Use new metadata verifier API.
4774
4775 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
4776
4777         * object.c (mono_install_vtable_trampoline): Make this receive a
4778         trampoline creation function instead of trampoline, allowing the JIT
4779         to use a different trampoline for each vtable.
4780
4781 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4782
4783         * object.c (mono_raise_exception): Don't reset the thread abort
4784         exception state here.
4785
4786 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4787
4788         * icall-def.h: New icall for getting the thread abort exception
4789         state for a thread.
4790
4791         * object.c, thread.c, object-internals.h: A thread's abort
4792         exception state is now a GC handle.  To get the object it stands
4793         for, we must move it into the current app domain, if it's
4794         different than the one where it originated from.
4795
4796         * appdomain.c: Bump corlib version.
4797
4798         * domain.c, domain-internals.h: New function for setting the
4799         domain and migrate the thread abort exception or not.
4800
4801 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4802
4803         * metadata-verify.c: Add initial verification of the
4804         field table.
4805
4806 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4807
4808         * metadata-verify.c: Add a macro to conditionally enable
4809         dumping of verification information. Add  make_coded_token
4810         and search_sorted_table to enable search sorted tables
4811         by a given coded token.
4812
4813 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4814
4815         * metadata-verify.c: Add array mapping from table index
4816         to description offset. Add get_col_offset and get_col_size
4817         functions.
4818
4819 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4820
4821         * metadata-verify.c: Add remaining table descriptions offsets.
4822         Add remaining coded index descriptions.
4823
4824 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4825
4826         * metadata-verify.c: Fixed constant table description.
4827         Fixed calculation of HasCustomAttribute coded index size.
4828         Fixed calculation of size for many table indexes. 
4829
4830 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4831
4832         * pedump.c (dump_metadata): Dump table offset instead
4833         of useless pointer in memory.
4834
4835 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4836
4837         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4838
4839 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4840
4841         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4842         a missing of for interface types.
4843
4844 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4845
4846         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4847         the code is commented.
4848
4849         * metadata-verify.c (verify_resources_table): Remove spurious printf
4850         and don't fail if there are unmanaged resources. Gmcs generates a useless
4851         one     for all assemblies - I bet it's some MS compatibility junk.
4852
4853 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4854
4855         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4856
4857         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4858
4859         * verify-internals.h: Same.
4860
4861         * pedump.c: Fix for mono_image_verify new signature.
4862
4863 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4864
4865         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4866         flags combinations.
4867
4868 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4869
4870         * metadata-verify.c (verify_module_table): Ignore the generation field.
4871
4872 2009-04-15  Martin Baulig  <martin@ximian.com>
4873
4874         * debug-mono-symfile.c
4875         (mono_debug_symfile_lookup_location): Don't print a warning for
4876         unknown extended opcodes if they're within 0x40 and 0x7f.
4877
4878 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4879
4880         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4881         invoke signatures returning an enum. Fixes #494847.
4882
4883 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4884
4885         * metadata-verify.c: Initial code to verify the typedef table.
4886
4887 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4888
4889         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4890         with non empty stack happens before the beginning of a try block.
4891
4892         Fixes #494812.
4893
4894 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4895
4896         * metadata-verify.c: Verify typename and typenamespace fields of
4897         the typeref table.
4898
4899 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4900
4901         * metadata-verify.c: Initial code to verify the typeref table.
4902
4903 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4904
4905         * verify.c (verify_delegate_compatibility): Fix error message.
4906
4907 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4908
4909         * security-core-clr.c: Fix typo
4910
4911 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4912
4913         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4914         a MonoGHashTable to keep its values alive.
4915         (emit_marshal_boolean): Fix a warning.
4916
4917 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4918
4919         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4920         not have any interface configured for IPv4/IPv6.
4921
4922 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4923
4924         * assembly.c: fix typo in error message.
4925
4926 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4927
4928         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4929         allocating the location holding the this argument to prevent
4930         'too many root sets' errors.
4931
4932         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4933         to mark fields as special static.
4934         (mono_field_static_get_value): Handle special static fields.
4935         (mono_field_static_set_value): Ditto.
4936
4937         * class-internals.h (struct _MonoClassField): Document this.
4938
4939 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4940
4941         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4942           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4943           case.  This will handle when managed code returns null to native code.
4944
4945         Code is contributed under MIT/X11 license.
4946
4947 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4948
4949         * object.c (build_imt_slots): Changing a free to a g_free to match
4950           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4951
4952         Code is contributed under MIT/X11 license.
4953
4954 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4955
4956         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4957           the correct TRUE value is passed through the marshaling layer.
4958
4959         Code is contributed under MIT/X11 license.
4960
4961 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4962
4963         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4964         correctly. Fixes #492330.
4965         
4966         * marshal.c: Fix the embedding of object pointers into JITted code in
4967         the native-to-managed wrappers by allocating some GC tracked memory, and
4968         embedding the address of that.
4969
4970 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4971
4972         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4973         pointers into the vtable.
4974
4975 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4976
4977         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4978
4979         * verify.c (verify_ldftn_delegate): Improve error message.
4980
4981 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4982
4983         * reflection.c (my_mono_class_from_mono_type): Remove.
4984
4985 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4986
4987         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4988         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4989         and constraints fields into ...
4990         (MonoGenericParamInfo): ... this.
4991         (mono_generic_param_info, mono_generic_container_get_param_info):
4992         New accessors.
4993         * class.c, debug-helpers.c, icall.c: Update to changes.
4994         * metadata.c, reflection.c, verify.c: Likewise.
4995
4996 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4997
4998         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4999
5000         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
5001         
5002         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
5003         booleans with sbytes.
5004
5005 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5006
5007         * class.c (can_access_instantiation): Verify accesibility of element types
5008         for arrays and pointers.
5009
5010         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
5011
5012         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
5013
5014         Fixes #493068.
5015
5016 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5017
5018         * verify.c (do_invoke_method): Improve error messages.
5019
5020 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
5021
5022         * verify.c:  Fixing the MSVC build.
5023
5024         Code is contributed under MIT/X11 license.
5025
5026 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
5027
5028         * security-core-clr.c: Simplify get_reflection_caller not to call
5029         mono_method_get_last_managed (another stack walk) and adjust the
5030         callers to handle a (should not happen) NULL return value.
5031
5032 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5033
5034         Add accessors to some MonoGenericParam fields
5035         * class-internals.h (mono_generic_param_owner): New accessor.
5036         (mono_generic_param_num): Likewise.
5037         (mono_type_get_generic_param_owner): New helper.
5038         (mono_type_get_generic_param_num): New helper.
5039         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
5040
5041 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5042
5043         * class-internals.h (mono_generic_container_get_param): New wrapper.
5044         * class.c, icall.c, metadata.c, verify.c: Use it.
5045
5046 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5047
5048         Fix gtest-252.cs
5049         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
5050         the standard case/loop.  In particular, don't complain about
5051         references to generic type definitions.
5052
5053 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
5054
5055         * debug-helpers.c (dis_one): Decode string arguments.
5056
5057 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5058
5059         * pedump.c (dump_verify_info): Dump type name correctly.
5060
5061 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5062
5063         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
5064         are larger than code size.
5065
5066         This can happen in valid code if the try/catch block is not followed by any instruction
5067         and do a backward branch on the leave instruction.
5068
5069         Fixes #492494.
5070
5071 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
5072
5073         * security-core-clr.c: Fix typo while comparing second method names
5074         in can_avoid_corlib_reflection_delegate_optimization
5075
5076 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5077
5078         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
5079
5080         Fixes #487738.
5081
5082 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5083
5084         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
5085         a MVAR using a class context.
5086
5087         Fixes #490335.
5088
5089 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
5090
5091         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
5092
5093         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
5094
5095         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
5096         functions supplied by the JIT for the SGEN GC.
5097
5098         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
5099         
5100 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
5101
5102         monitor.c (mono_monitor_try_enter_internal):
5103         Added calls to profile monitor contentions.
5104         Also duplicated a small piece of code (the "get the monitor" logic)
5105         from the fast path to the slow path, and changed the relevant goto
5106         statements, so that monitor acquisition events can be emitted from the
5107         slow path (this is by Paolo Molaro).
5108
5109 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
5110
5111         * profiler.c, profiler.h, profiler-private.h:
5112         Added support for profiling monitor contentions.
5113
5114 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
5115
5116         * metadata-verify.c: Verify the modules table.
5117
5118 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
5119
5120         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
5121         using the context of the method been verifier and not of the method been called.
5122
5123         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
5124         safely inflate generic types. 
5125
5126 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5127
5128         * security-core-clr.c: Change the strategy for checking the 
5129         "reflection using delegates optimization" to avoid unneeded 
5130         attributes in multiple class libraries.
5131
5132 2009-04-02  Mark Probst  <mark.probst@gmail.com>
5133
5134         * sgen-gc.c: Remove object element in the disappearing link struct
5135         by storing the object pointer in the link.
5136
5137 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
5138
5139         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
5140
5141 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
5142
5143         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
5144
5145         * verify.c (mono_method_verify): Do proper bounds checking of exception
5146         clause ranges.
5147
5148 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
5149
5150         * loader.c (mono_field_from_token): Don't crash if the field parent could
5151         not be decoded.
5152
5153 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5154
5155         * sgen-gc.c: Execute critical finalizers after ordinary
5156         finalizers.
5157
5158         * class-internals.h, domain.c: Add CriticalFinalizerObject to
5159         mono_defaults.
5160
5161 2009-03-31 Jb Evain <jbevain@novell.com>
5162
5163         * verify.c (do_ldstr): don't check if a string is in the user strings
5164         heap if the current image is dynamic.
5165
5166 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5167
5168         * sgen-gc.c: Wait until the last finalizer has executed when
5169         returning from WaitForPendingFinalizers.
5170
5171 2009-03-31  Martin Baulig  <martin@ximian.com>
5172
5173         * mono-debug-debugger.h (MonoDebuggerEvent): Add
5174         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
5175         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
5176         (mono_debugger_event_create_appdomain): New function.
5177         (mono_debugger_event_unload_appdomain): New function.
5178
5179         * appdomain.c (mono_domain_create_appdomain_internal): Call
5180         mono_debugger_event_create_appdomain().
5181
5182 2009-03-31  Martin Baulig  <martin@ximian.com>
5183
5184         * mono-debug-debugger.c
5185         (mono_debugger_register_class_init_callback): Also register the
5186         class init callback if the class is already initialized to make
5187         things work with shadow copied assemblies.
5188
5189 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
5190
5191         * security-core-clr.c
5192         (mono_security_core_clr_ensure_reflection_access_field): Let 
5193         critical code access the field (just like we do for methods). Use
5194         check_field_access helper.
5195         (mono_security_core_clr_ensure_reflection_access_method): Use 
5196         check_field_access helper.
5197
5198 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5199
5200         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
5201         call the run-finalize function directly.
5202
5203         * gc.c, gc-internal.h: Make run_finalize() non-static.
5204
5205 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5206
5207         * sgen-gc.c: Use a separate struct for disappearing links.
5208
5209 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
5210
5211         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
5212         * MaxIOVectorLength enabled, just ignore them.
5213         Fixes bug #349688.
5214
5215 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
5216
5217         * metadata-verify.c: Fix eglib build.
5218
5219 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
5220
5221         * threads-types.h: Fix the win32 build.
5222
5223 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
5224
5225         * class.c: move coreclr inheritance/override checks to 
5226         security-core.clr.c
5227         * security-core.clr.c|h: add code from class.c with additional
5228         documentation. Fix override check when the method is not critical.
5229
5230 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
5231
5232         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
5233         (match_class): Ditto.
5234
5235 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
5236
5237         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
5238
5239         * metadata-verify.c: Implement table layout row size calculation. Verify
5240         the total size of the tables.
5241
5242 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
5243
5244         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
5245
5246 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5247
5248         * appdomain.c:
5249         * console-io.[ch]: added new mono_console_init() to make sure that
5250         file descriptors 0, 1 and 2 are opened.
5251         Bug #489019 fixed.
5252
5253 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
5254
5255         * appdomain.h: Export a new callback type and a new function to
5256         set this callback. This allow a mono host to provide it's own
5257         definition for "platform code".
5258         * metadata-internals.h: Add a core_clr_platform_code flag on 
5259         _MonoImage to (cache and) know if it is representing platform 
5260         code.
5261         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
5262         on platform code images.
5263         * security-core-clr.c|h 
5264         (mono_security_set_core_clr_platform_callback): Allow the host
5265         to provide it's own platform check definition.
5266         (mono_security_core_clr_determine_platform_image): Detect if an 
5267         image is platform code (using the specified callback).
5268         (mono_security_core_clr_is_platform_image): Return cached value 
5269         for platform code.
5270
5271 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
5272
5273         * threads.c (mono_create_thread): New helper function to wrap CreateThread
5274         which has different parameter types for the 'tid' argument in windows and
5275         the io-layer.
5276
5277         * appdomain.c attach.c threads.c: Use the new helper.
5278
5279 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
5280
5281         * metadata-verify.c: Verify valid table bits.
5282
5283 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
5284
5285         * metadata-verify.c (verify_metadata_header): Store size in the size field.
5286
5287         * metadata-verify.c: Add initial table schema verification.
5288
5289 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5290
5291         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
5292         obtain the refclass argument needed by mono_param_get_objects (). Fixes
5293         #488383.
5294
5295         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
5296
5297         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
5298
5299 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
5300
5301         * security-core-clr.c: Add/update documentation
5302
5303 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5304
5305         * marshal.c (emit_marshal_object): Generate code to throw an exception
5306         instead of throwing it. Fixes #488670.
5307
5308 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
5309
5310         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
5311         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
5312         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
5313         and add a call to mono_security_core_clr_ensure_delegate_creation
5314         to do the extra checks required by CoreCLR.
5315         * security-core-clr.c|h: Add function to check delegate creation,
5316         both in the binding and accessibility, under CoreCLR.
5317
5318 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
5319
5320         * reflection.c (mono_reflection_create_dynamic_method): when 
5321         coreclr is enabled make sure that every resolved object are
5322         checked (e.g. field and method access).
5323         * security-core-clr.c|h: Add function to check objects resolved
5324         when a dynamic method is created.
5325
5326 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5327
5328         * metadata-verify.c: Cache directory rva translations.
5329
5330         * metadata-verify.c: Add cli-header and streams verification.
5331
5332 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5333
5334         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
5335         the wrong offset (8 instead of 6).
5336
5337 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
5338
5339         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
5340         methods, return the native function address itself. Fixes
5341         #487758.
5342
5343 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
5344
5345         * console-io.c: some of the values for control characters might not be
5346         present.
5347
5348 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
5349
5350         * exception.c|h: Add helpers to create [Field|Method]AccessException
5351         * icall.c: Add required coreclr check calls for field reflection.
5352         Move the existing (method) check logic into security-core-clr.c
5353         * security-core-clr.c: Add functions to check if the access of a
5354         field or method is allowed when reflecting under coreclr. This is
5355         mostly done using a stack walk to find the "real" caller: i.e. the
5356         code that is calling the reflection
5357
5358 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
5359
5360         * gc-internal.h: Change location of gc_wrapper.h
5361
5362 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
5363
5364         * class.c: Simplification to coreclr checks for overrides that
5365         makes it easier to set breakpoints.
5366
5367 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
5368
5369         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
5370         mono_security_core_clr_method_level): Avoid potential 
5371         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
5372         user/application code) and make it easier to set breakpoints
5373
5374 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5375
5376         * metadata-verify.c: Reject cli header tables that mono don't handle.
5377
5378 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5379
5380         * pedump.c: Fix CLI header dumping.
5381
5382 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5383
5384         * metadata-verify.c: More CLI header verification.
5385
5386 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5387
5388         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
5389
5390 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5391
5392         * metadata-verify.c: Initial verification of the CLI header.
5393
5394 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5395
5396         * metadata-verify.c (verify_resources_table): Fix verification of zero
5397         sized resource section and id entries count.
5398
5399 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
5400
5401         * icall.c: Handle user types in many Type icalls. Fixes #486303.
5402
5403 2009-03-17  Jb Evain  <jbevain@novell.com>
5404
5405         * profiler.c: call mono_gc_base_init from mono_profiler_load.
5406
5407 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
5408
5409         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
5410         (mono_gc_make_descr_for_array): Ditto.
5411
5412 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5413
5414         * verify.c (mono_verifier_is_class_full_trust): Add support for
5415         CoreCLR security mode where trusted assemblies are defined as
5416         "platform code".
5417
5418 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5419
5420         * metadata-verify.c: Add minimal PECOFF resource verification.
5421
5422 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5423
5424         * metadata-verify.c: Be less restrictive with some coff fields.
5425
5426 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5427
5428         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
5429         params as boxed values on stack. Fixes #485706.
5430
5431 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5432
5433         * console-io.c: the termios values may vary in different flavors of unix.
5434
5435 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5436
5437         * console-io.[ch]: return the entire set of control characters when
5438         initializing the terminal.
5439         * appdomain.c: bump corlib version.
5440
5441 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
5442
5443         * mono-perfcounters.c: added support for in-process custom
5444         performance counters.
5445
5446 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5447
5448         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
5449
5450 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5451
5452         * metadata-verify.c: Verify the data pointed by the import table. 
5453
5454 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5455
5456         * metadata-verify.c (load_data_directories): Store data
5457         directory contents.
5458
5459         * metadata-verify.c: Verify the import table. 
5460
5461 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5462
5463         * metadata-verify.c: Verify data directories.
5464
5465 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5466
5467         * metadata-verify.c: Check section header flags.
5468
5469 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5470
5471         * appdomain.c: if the assembly name is a shadow-copied file, return
5472         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
5473         in mono_make_shadow_copy.
5474         * icall.c: if the assembly name is a shadow-copied file, replace it
5475         with the original assembly path.
5476
5477         Bug #484244 fixed. NUnit tests for corlib can be run without
5478         --noshadow now.
5479
5480 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
5481
5482         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
5483         entries when the table is reallocated.
5484
5485         * icall.c: Allocate the memory used by the mono_ptr_array macros using
5486         mono_gc_alloc_fixed () since it contains GC refs.
5487
5488 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
5489
5490         * reflection.c (ensure_complete_type): New helper function to call
5491         type resolve handlers for unfinished dynamic types.
5492         (resolve_object): Call it for MonoClassFields. Fixes #483852.
5493
5494 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
5495
5496         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
5497         #483247.
5498
5499 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
5500
5501         * appdomain.c (get_shadow_assembly_location): Fix memleak.
5502
5503 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
5504
5505         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
5506         between GCHandles of type WeakTrackResurrection and the objects they
5507         point to.
5508
5509         * gc.c: Partly implement the sematics of GCHandles of type 
5510         WeakTrackResurrection: these handles should only be cleared after the
5511         finalizer of the object they are pointing to has ran.
5512
5513 2009-03-06  Mark Probst  <mark.probst@gmail.com>
5514
5515         * icall.c: Partially revert r126631 because using the jump
5516         trampolines for generic shared methods makes it superfluous.
5517
5518 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
5519
5520         * threads.c (handle_store): Create the 'threads' hash table with the proper
5521         MONO_HASH_VALUE_GC type.
5522
5523 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
5524
5525         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
5526         FIRST_GC_TRACKED.
5527
5528         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
5529         and LAST_GC_TRACKED as a GC root.
5530
5531         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
5532
5533         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
5534         the static data even if it consists of 1 reference.
5535
5536         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
5537         if there is a GC descriptor.
5538
5539         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
5540         instead of through the GC since they contain no object references.
5541
5542 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5543
5544         * generic-sharing.c (instantiate_other_info): Always return a jump
5545         trampoline for method code.
5546
5547 2009-03-05  Marek Habersack  <mhabersack@novell.com>
5548
5549         * culture-info-tables.h: generated to include the en-tt culture.
5550
5551 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5552
5553         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
5554         capture the thread context.
5555
5556         * object.c (mono_async_result_new): Cache the invoke wrappers to
5557         ExecutionContext::Capture.
5558
5559 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5560
5561         * marshal.h: Add a prototype for what mono_compile_method returns
5562         for invoke wrappers.
5563
5564         * gc.c: Use the new prototype declaration.
5565
5566 2009-03-04  Geoff Norton  <gnorton@novell.com>
5567
5568         * boehm-gc.c: Add some MONO_LOG tracing for the GC
5569         * gc-internal.h:
5570         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
5571
5572 2009-03-04  Martin Baulig  <martin@ximian.com>
5573
5574         * mono-debug.h
5575         (mono_debugger_runtime_invoke): Removed.
5576
5577         * mono-debug-debugger.c
5578         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
5579
5580 2009-03-02  Martin Baulig  <martin@ximian.com>
5581
5582         * mono-debug.h
5583         (mono_debugger_unhandled_exception): Removed.
5584         (mono_debugger_handle_exception): Removed.
5585         (mono_debugger_throw_exception): Removed.
5586
5587         * mono-debug.c
5588         (mono_debug_debugger_version): Bump to 5.
5589
5590         * mono-debug-debugger.c: Moved the exception handling code to
5591         ../mini/debug-mini.c
5592
5593 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5594
5595         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
5596         finalize_objects_hash.
5597
5598         * gc.c: Use the separate lock to access the finalize_objects_hash field.
5599         
5600         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
5601         field.
5602
5603         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
5604         cache.
5605
5606         * image.c (mono_image_close): Free it.
5607         
5608         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
5609         allowing a creation of a wrapper which invokes its method using a CALLVIRT
5610         on the this argument.
5611
5612         * gc.c (run_finalize): Optimize the calling of the finalizers.
5613
5614 2009-03-03  Martin Baulig  <martin@ximian.com>
5615
5616         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
5617         of the `MonoGenericInst' changes.
5618
5619 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
5620
5621         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
5622         mono_array_class_get_cached to reduce locking contention. Extract
5623         a domain var.
5624
5625         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
5626         intermediary managed arrays. Use caching version of mono_array_new
5627         to allocate the result array.
5628
5629         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
5630
5631         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
5632
5633         * locales.c (create_names_array_idx):  Use mono_array_new_cached
5634         to reduce locking contention.
5635
5636 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5637                 
5638         * object.c (mono_method_add_generic_virtual_invocation): Put back the
5639         thunk builder code for the non-interface case.
5640
5641 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
5642
5643         * object.c (get_generic_virtual_entries): New helper function to collect
5644         the virtual generic method instances which need to be added to an IMT
5645         thunk.
5646         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
5647         Instead of creating a new IMT thunk, reset the vtable slot to the
5648         trampoline, the thunk will be created the next time the trampoline is called.
5649         (build_imt_slots): Add support for virtual generic methods in interfaces by
5650         adding to the IMT thunk all the methods registered using 
5651         mono_method_add_generic_virtual_invocation ().
5652
5653         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
5654         (struct _MonoIMTCheckItem): Ditto.
5655
5656         * object.c (mono_method_add_generic_virtual_invocation): Take a
5657         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
5658         the IMT thunk to include all items.
5659         
5660         * object.c (mono_class_create_runtime_vtable): Add a missing
5661         mono_loader_unlock ().
5662
5663 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5664
5665         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5666
5667         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
5668
5669 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5670
5671         * object-internals.h: Rename _MonoReflectionEvent to
5672         MonoReflectionMonoEvent so it reflects the right managed type.
5673         Add a MonoReflectionEvent that correctly represents System.EventInfo.
5674
5675         * icall.c:
5676         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
5677         type.
5678
5679 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5680
5681         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
5682         intermediary managed arrays. Use caching version of mono_array_new
5683         to allocate the result array.
5684
5685 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5686
5687         * reflection.c: Use cached version of mono_array_new alongside
5688         the mono_reflection_get_custom_attrs_by_type call path.
5689
5690 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5691
5692         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
5693         intermediary managed arrays. Use caching version of mono_array_new
5694         to allocate the result array.
5695
5696         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
5697
5698 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5699
5700         * icall.c: Add small implementation of a growable stack bound array.
5701
5702         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
5703
5704         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
5705         intermediary managed arrays. Use caching version of mono_array_new
5706         to allocate the result array.
5707
5708 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
5709
5710         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
5711         helps Enum::CompareTo to be implemented without reboxing all enums
5712         to their underlying type.
5713 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
5714
5715         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
5716         since it acquires a global lock leading to scalability problems.
5717
5718         * profiler.c: Make the stat profiler work with multiple appdomains, this
5719         currently only works when no appdomains are unloaded.
5720
5721 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5722
5723         * appdomain.c: make the check to avoid copying when the assembly is
5724         already shadow copied actually work.
5725
5726 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
5727
5728         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5729
5730         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
5731         changes to the managed side.
5732
5733 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
5734
5735         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
5736         classes + a separate lock for it, as it is used frequently at runtime, not
5737         just during metadata loading/JIT compilation.
5738
5739         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
5740         for szarrays.
5741         
5742         * object-internals.h (mono_class_from_name_cached): New macro to cache
5743         the results of the lookup locally without having to declare a static
5744         variable to hold it.
5745         (mono_class_get_field_from_name_cached): Ditto.
5746         (mono_array_class_get_cached): Ditto.
5747
5748         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
5749         the new macros.
5750         
5751         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
5752         slower search in metadata.
5753
5754         * pedump.c: Fix a warning.
5755
5756 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
5757
5758         * reflection.c (encode_locals): Add checks for user types.
5759         (method_encode_clauses): Ditto.
5760         (method_encode_code): Ditto.
5761         (mono_image_create_token): Ditto.
5762
5763         * object-internals.h: Change the type of more fields from MonoReflectionType*
5764         to MonoObject*.
5765
5766 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
5767
5768         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
5769         the a thread does not suspend within 100ms.
5770
5771         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
5772         in addition to StopRequested as well.
5773
5774         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
5775
5776         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
5777         search the method_hash before inserting a new entry, to avoid crashes when
5778         the same method is inserted multiple times, causing the old 
5779         MonoDebugMethodInfo structure to be freed by the value dtor function.
5780
5781 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5782
5783         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
5784         SO_EXLUSIVEADDRUSE where available.
5785
5786 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
5787
5788         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
5789         runtime invoke wrappers, this time it is string ctor wrappers, which
5790         pass a dummy string as 'this' instead of their obj argument. Fixes
5791         #478473.
5792
5793 2009-02-21  Jb Evain  <jbevain@novell.com>
5794
5795         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5796         only get create_culture once.
5797
5798 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
5799
5800         * reflection.c (mono_reflection_setup_internal_class): Move the user type
5801         check before the locking.
5802         
5803         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
5804         (mono_reflection_create_runtime_class): Ditto.
5805         (mono_reflection_sighelper_get_signature_local): Ditto.
5806         (mono_reflection_sighelper_get_signature_field): Ditto.
5807
5808         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
5809         is a System.MonoType object or similar.
5810         (monotype_cast): New helper function to cast a MonoObject to a 
5811         MonoReflectionType object.
5812
5813         * object-internals.h: Change MonoReflectionType* members in structures to
5814         MonoObject* members to force the usage of the monotype_cast () function.
5815
5816         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
5817         structures/arrays. This causes us to assert instead of crashing when 
5818         instances of user defined subclasses of System.Type are encountered.
5819
5820 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5821
5822         * cil-coff.h:
5823         * icall-def.h:
5824         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
5825         win32 resource loaded from a PE file.
5826
5827         * image.c: fix mono_image_lookup_resource.
5828
5829 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5830
5831         * icall-def.h:
5832         * threads-types.h:
5833         * threads.c: added internal call for WaitHandle.SignalAndWait.
5834
5835 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5836
5837         * cominterop.c : Adding cominterop_type_from_handle and 
5838           registering it as an icall.  Replacing all references
5839           to type_from_handle.
5840
5841         Code is contributed under MIT/X11 license.
5842
5843 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5844
5845         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5846
5847         * appdomain.c: Call the tracer init function.
5848
5849         * domain-internals.h: Enable the tracer for the domain locks.
5850
5851         * image.c: Enable the tracer for image locks.
5852
5853         * loader.c: Enable the trace for the loader lock.
5854
5855         * lock-tracer.h:
5856         * lock-tracer.c: Initial implementation of the lock trace utility.
5857         The tracer requires a compile time define to be enabled and a env var
5858         to be enabled at runtime.
5859
5860 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5861
5862         * domain.c (mono_domain_code_foreach): Improve documentation.
5863
5864 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5865
5866         * appdomain.c:
5867         * generic-sharing.c:
5868         * object.c:
5869         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5870         comes first.
5871
5872 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5873
5874         * domain.c: Add mono_domain_code_* functions that perform locking
5875         around the domain codeman.
5876
5877         * domain-internals.h: Export those functions.
5878
5879         * object.c: Use new functions instead of acquiring the domain lock.
5880
5881 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5882
5883         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5884         delegate. Fixes #477396.
5885
5886 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5887
5888         * reflection.c (create_custom_attr): Get rid of alloca.
5889
5890 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5891
5892         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5893           Adding exception handling for all CCW calls.
5894
5895         Code is contributed under MIT/X11 license.
5896
5897 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5898
5899         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5900
5901         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5902         native->managed marshalling code. Fixes #476247.
5903
5904 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5905
5906         * class.c (mono_class_get_vtable_entry): Move the addition of
5907         static rgctx invoke wrappers for vtable methods here, this simplifies
5908         a lot of code and causes fewer rgctx wrappers to be created.
5909
5910         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5911         name of the statistics to begin with an uppercase.
5912
5913 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5914
5915         * reflection.c: Revert previous change as it breaks the build.
5916         
5917 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5918
5919         * verify.c: Properly handle SZARRAY element type.
5920
5921         Fixes #474271.
5922
5923 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5924
5925         * reflection.c (mono_image_create_method_token): Correctly encode
5926         MethodDef MemberRefParent token.
5927
5928         Fixes #472845.
5929
5930 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5931
5932         * image.c (mono_image_close): Delete the critical section before
5933         freeing the memory holding it.
5934
5935 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5936
5937         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5938         Fixes #476257.
5939
5940 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5941
5942         * pedump.c (main): Call mono_marshal_init so pedump
5943         doesn't crash.
5944
5945 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5946
5947         * loader.c (method_from_memberref): Properly fix #474271 and
5948         don't break the runtime bad.
5949
5950 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5951
5952         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5953         (mono_domain_alloc0): Ditto.
5954
5955 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5956
5957         * loader.c (method_from_memberref): Don't abort if the array
5958         method is not found. A regular loader failure is more informative
5959         and correct.
5960
5961         Fixes #474271.
5962
5963 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5964
5965         *loader.c: Guard MonoImage::method_cache/methodref_cache
5966         using the image lock instead of the loader lock.
5967
5968         * metadata.h: Add comments about which fields are protected by
5969         the image lock.
5970
5971 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5972
5973         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5974
5975         * generic-sharing.c (mono_method_construct_object_context): Remove the
5976         wrapper_type == NONE assert, it is not needed.
5977
5978 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5979
5980         * reflection.c (clear_cached_object): New helper function.
5981         (mono_method_clear_object): New function to clear the cached reflection
5982         objects for a dynamic method.
5983
5984         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5985         Partly fixes # 463323.
5986         
5987 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5988
5989         * class.c:
5990         * loader.c:
5991         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5992
5993 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5994
5995         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5996         take the image lock instead of the loader lock.
5997
5998         * metadata-internals.h: Export new functions.
5999
6000 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6001
6002         * domain.c (app_config_parse): Remove another use of stat that is
6003         not necessary as g_file_get_contents already does the presence
6004         check. 
6005
6006 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6007
6008         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
6009
6010         * marshal.c: Move the bstr handling code to cominterop.c.
6011
6012         * marshal.c: Remove some COM interop code missed previously.
6013
6014 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6015
6016         More Paolo patches from the Wii port:
6017         
6018         * security.c: Remove ves_icall_System_Environment_get_UserName
6019         from here.
6020
6021         * icall.c: And put ves_icall_System_Environment_get_UserName
6022         here. 
6023
6024         * appdomain.c (mono_set_private_bin_path_from_config): Remove
6025         redundant call to stat that was only used to test for the file
6026         existence.   Patch from Paolo.
6027
6028         * gc.c (run_finalize): If COM is disabled, do not link in
6029         mono_marshal_free_ccw.
6030
6031         * generic-sharing.c: Use alloca.h here as well.
6032
6033 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
6034
6035         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
6036
6037 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6038
6039         * cominterop.c cominterop.h: New files.
6040
6041         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
6042         function/typedefs which are needed by cominterop.c global.
6043
6044 2009-02-12  Mark Probst  <mark.probst@gmail.com>
6045
6046         * generic-sharing.c: Don't take the loader lock to guard image
6047         mempool allocs.
6048
6049 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6050
6051         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
6052         called without the loader lock which is required to guard MonoImage:tokens.
6053
6054 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6055
6056         * class.c:
6057         * metadata.c:
6058         * method-builder.c:
6059         * marshal.c:
6060         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
6061
6062 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6063
6064         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6065         Rework the code to use regular mono_image_alloc/0.
6066
6067         * loader.c: Rework the code to use regular mono_image_alloc/0.
6068
6069         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6070
6071 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
6072
6073         * object-internals.h : Fixing a typo in the 
6074           MonoReflectionComVisibleAttribute struct.
6075
6076         * marshal.c (cominterop_com_visible): Check the implemented 
6077           interfaces for ComImport.
6078
6079         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
6080           assume that bools should be treated as VARIANTBOOLs.
6081
6082         * marshal.c (emit_marshal_boolean): Adding cases for 
6083           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
6084
6085         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
6086           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
6087
6088         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
6089           should be treated as VARIANTBOOLs.    
6090
6091         Code is contributed under MIT/X11 license.
6092
6093 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6094
6095         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
6096         allocation with the image lock.
6097
6098 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6099
6100         This patch is the last of a series to remove explicit reference of MonoImage::mempool
6101         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
6102
6103         * object.c: Add mono_string_to_utf8_image.
6104
6105         * object-internals.h: Export mono_string_to_utf8_image.
6106
6107         * reflection.c: Rework all explicit references to the the image mempool to go thought
6108         the mono_image_alloc set of functions.
6109
6110 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6111
6112         This patch is the third of a series to remove explicit reference of MonoImage::mempool
6113         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
6114         and generics-sharing.c.
6115
6116         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
6117         as first argument. Note that this function remains broken as it doesn't perform locking around the
6118         mempool allocation.
6119
6120         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
6121
6122         * image.c: Add g_slist_append_image.
6123
6124         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
6125         the supplied image for allocation. Move code into mono_metadata_field_info_full.
6126
6127         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
6128         Fix all related code to do the same.
6129
6130         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
6131
6132         * metadata-internals.h: Fix the signatures.
6133
6134 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6135
6136         This patch is the second of a series to remove explicit reference of MonoImage::mempool
6137         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
6138         and similar to work using MonoImage.
6139
6140         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
6141         MonoMemPool.
6142
6143         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
6144
6145         * class.c (mono_metadata_signature_deep_dup): Same.
6146
6147         * class.c (inflate_generic_type): Same.
6148
6149         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
6150
6151         * metadata.c (mono_metadata_signature_dup_full): Same.
6152
6153         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
6154         mono_metadata_signature_dup_full.
6155
6156         * metadata.c (mono_metadata_type_dup): Same.
6157
6158         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
6159
6160         * reflection.c: Same.
6161
6162         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
6163
6164         * metadata-internals.h: Fix the signatures.
6165
6166         * class-internals.h: Same.
6167
6168 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
6169
6170         This patch is the first of a series to remove explicit reference of MonoImage::mempool
6171         and use mono_image_alloc set of functions instead. 
6172
6173         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
6174         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
6175         of a MonoMemPool.
6176
6177         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
6178
6179         * class.c (g_list_prepend_mempool): Removed.
6180
6181         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
6182
6183         * image.c: Add g_list_prepend_image.
6184
6185         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
6186
6187         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
6188
6189
6190 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
6191
6192         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
6193         mono_image_unlock.
6194
6195         * image.c (mono_image_init): Init the lock field.
6196  
6197         * image.c (mono_image_init): Cleanup the lock field.
6198
6199         * image.c: Add mono_image_(un)lock functions.
6200
6201 2009-02-11  Mark Probst  <mark.probst@gmail.com>
6202
6203         * class.c, class-internals.h: mono_method_get_context_general()
6204         combines the functionality of mono_method_get_context() and
6205         mini_method_get_context().
6206
6207         * generic-sharing.c, domain-internals.h:
6208         mono_method_construct_object_context() and
6209         mono_domain_lookup_shared_generic() moved from mini.
6210
6211         * icall.c (ves_icall_InternalInvoke): Handle the case where the
6212         method doesn't have the correct instantiation because it's shared
6213         generic code.  Fixes #473999.
6214
6215 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
6216
6217         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
6218
6219         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
6220         
6221 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
6222
6223         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
6224
6225         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
6226
6227         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
6228         and recheck the cache for dups after it.
6229
6230         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
6231
6232         Fixes one of the deadlocks found in #473150.
6233
6234 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
6235
6236         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
6237           For Win32, add additional break conditions for accept.
6238
6239         Code is contributed under MIT/X11 license.
6240
6241 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
6242
6243         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
6244         lazily initialize the native wrapper cache.
6245         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
6246         cache, since they are different from the normal wrappers.
6247
6248         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
6249
6250         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
6251         AOT compiled native wrappers.
6252
6253 2009-02-09  Geoff Norton  <gnorton@novell.com>
6254
6255         * appdomain.h:
6256         * security-core-clr.c: Allow enabling core-clr from the embedding
6257         API.
6258
6259 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6260
6261         * socket-io.c: when requesting all the local ips, if there are no
6262         interfaces up and running, MS returns 127.0.0.1.
6263
6264 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6265
6266         * mono-perfcounters-def.h: processor time is an inverse time.
6267         Fixes bug #468625.
6268
6269 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6270
6271         * socket-io.c: an empty host name returns the list of local IPs.
6272         Fixes bug #386637 part 1/2.
6273
6274 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
6275
6276         * verify.c (mono_class_interface_implements_interface): Call
6277         mono_class_setup_interfaces ().
6278         (merge_stacks): Ditto.
6279
6280 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6281
6282         * class.c (mono_class_setup_interfaces): New function to lazily initalize
6283         klass->interfaces.
6284         (mono_generic_class_get_class): Don't initalize klass->interfaces.
6285         (mono_generic_class_get_class): Ditto.
6286
6287 2009-02-06  U-QUACK\miguel  <miguel@quack>
6288
6289         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
6290         they live in security.c
6291
6292         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
6293         another bit from Paolo's code.
6294
6295 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6296
6297         * object.c (build_imt_slots): Add a small optimization to avoid inflating
6298         methods which will be discarded by add_imt_builder_entry ().
6299
6300         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
6301         need to be boxed.
6302
6303         * loader.c: Add a statistics for the size of the memberref signature cache.
6304         
6305         * loader.c (find_cached_memberref_sig): New helper function.
6306         (cache_memberref_sig): Ditto.
6307
6308         * loader.c: Cache the result of parsing memberref signatures, since otherwise
6309         they will be parsed again for every generic instantiation, leading to unbounded
6310         memory growth.
6311
6312 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6313
6314         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
6315         parameters of generic methods.
6316
6317         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
6318         after the original method is copied to the inflated method.
6319         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
6320
6321         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
6322         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
6323
6324         * class.c metadata.c: Update after the changes above.
6325
6326 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6327
6328         * metadata-verify.c: Simplified error handling and added
6329         section table validation.
6330
6331 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6332
6333         * class-internals.h (MonoClassExt): New structure containing rarely used
6334         fields of MonoClass.
6335         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
6336         through a new 'ext' field.
6337
6338         * class.c (mono_class_alloc_ext): New helper function to allocate 
6339         class->ext.
6340
6341         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
6342
6343 2009-02-05  Mark Probst  <mark.probst@gmail.com>
6344
6345         * object.c (mono_object_get_virtual_method): Properly inflate
6346         generic methods.  Fixes #472692.
6347
6348 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6349
6350         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
6351         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
6352         for the parent type, the created type must be ready to be used on a generic
6353         instantiation.
6354         We fill this_arg/byval_arg if the parent is a generic instance to make sure
6355         we won't have duplicated entries in generic_inst_cache.
6356
6357         Fixes #469553.
6358
6359 2009-02-05  Miguel De Icaza  <miguel@novell.com>
6360
6361         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
6362         replace with plain BSD per the comments on the bug MONO77637.
6363
6364 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6365
6366         * class.c (mono_class_get_generic_class): New accessor function.
6367         (mono_class_get_generic_container): Ditto.
6368
6369         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
6370         fields, similar to the ones in MonoMethod.
6371
6372         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
6373         (mono_class_create_from_typedef): Set klass->is_generic if needed.
6374
6375         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
6376         
6377         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
6378         the same information as element_class->byval_arg.
6379
6380         * class.c reflection.c: Remove references to class->byval_arg.
6381
6382         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
6383         klass->enum_basetype directly.
6384
6385         * verify.c metadata.c object.c icall.c reflection.c: Use 
6386         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
6387         directly.
6388
6389 2009-02-04  Miguel de Icaza  <miguel@novell.com>
6390
6391         * icall-def.h: Remove internal calls for sockets when
6392         DISABLE_SOCKET is defined, file system writing features when the
6393         OS only support reading and not writing data and Policy support if
6394         the Policy is disabled.
6395         
6396         * image.c (do_mono_image_open): Apply Paolo's patches for using
6397         mono_file_map_ APIs here.
6398
6399         * assembly.c: Add support for platforms to avoid prefix
6400         auto-detection. 
6401
6402 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6403
6404         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
6405         warning.
6406
6407         * class.c (mono_class_inflate_generic_class): New helper function.
6408
6409         * class.c: Use mono_class_inflate_generic_class in a few places. Add
6410         statistics for inflated methods/classes.
6411
6412         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
6413
6414         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
6415         the call is made from Delegate.CreateDelegate () for the invoke method of
6416         a delegate.
6417
6418         * loader.c: Add a statistics for the memory occupied by inflated signatures.
6419
6420         * metadata.c (mono_metadata_signature_size): New helper function.
6421
6422         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
6423         generic instances.
6424
6425         * metadata.c (inflated_method_in_image): Avoid calling 
6426         mono_method_signature () if the method does not already have a signature.
6427
6428 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6429
6430         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
6431         valuetype is compatible with target type, check by inheritance as a
6432         VT is not really compatible with System.ValueType, for example.
6433
6434         * verify.c (do_invoke_method): Improve error message.
6435
6436         * verify.c (do_box_value): If boxing a nullable, use the type argument
6437         on stack instead.
6438
6439         * verify.c (do_newobj): Improve error message.  
6440
6441         Fixes #469549.
6442
6443 2009-02-03  Miguel de Icaza  <miguel@novell.com>
6444
6445         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
6446
6447 2009-02-03  Mark Probst  <mark.probst@gmail.com>
6448
6449         * generic-sharing.c: Don't hold domain lock when calling
6450         instantiate_other_info().  Fixes #471958.
6451
6452         * domain-internals.h, loader.c: Describe locking policy of domain
6453         lock vs loader lock.
6454
6455 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6456
6457         * verify.c (mono_delegate_signature_equal): Make it possible to check
6458         first-arg-bound delegates to static method.
6459
6460         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
6461         static methods with the first arg bound.
6462
6463         Fixes #469529.
6464
6465 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6466
6467         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
6468         errors.
6469
6470         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
6471         under strict mode. Any type, when boxed can be seen as a reference type.
6472
6473         Fixes #469528.
6474
6475 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6476
6477         * object.h: The lower bound of an array is a signed integer value.
6478         Introduce mono_array_lower_bound_t typedef. It should be used instead of
6479         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
6480
6481         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
6482         calculate the upper bound.
6483         
6484         Fixes #471252.
6485
6486 2009-02-02  Miguel de Icaza  <miguel@novell.com>
6487
6488         From Paolo's work, refactored, cleared up:
6489         
6490         * threadpool.c, icall.c: ifdef code that requires a working socket
6491         stack.
6492
6493         * metadata.c (mono_metadata_field_info): Do not attempt to return
6494         a value from a function declared as void.
6495
6496         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
6497         from the console stack.
6498
6499         * assembly.c: use strrchr instead of rindex.
6500
6501         * class.c, object.c, marshal.c, icall.c, reflection.c: include
6502         alloca.h on systems that have it.
6503
6504         * environment.c: Avoid code that uses stuff from
6505         HAVE_SYS_UTSNAME_H
6506         
6507         * appdomain.c: Include sys/time.h.
6508
6509         * console-io.c: include sys/ioctl.h if it is available.
6510
6511 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
6512
6513         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
6514
6515         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
6516         the method builder.
6517
6518         * marshal.c: Set mb->skip_visibility instead of setting it on the method
6519         after it was created and cached, as the later is not thread safe.
6520         
6521 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6522
6523         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
6524         called while the debugging module is not initialized. Fixes #471669.
6525
6526 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
6527
6528         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
6529
6530         Fixes #471255.
6531
6532 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6533
6534         * generic-sharing.c (lookup_or_register_other_info): Make sure the
6535         loader lock is not taken while the templates lock is held.  Fixes
6536         #471089.
6537
6538 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6539
6540         * metadata.c (type_in_image): Added a check to fix a monodis
6541         crash.
6542
6543 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6544
6545         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
6546         nullable arguments.
6547
6548         * object.c (mono_runtime_invoke_array): Ditto.
6549         
6550         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
6551         freeing wrappers of dynamic methods.
6552
6553         * loader.c (mono_free_method): Call it. Fixes #463323.
6554         
6555         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
6556         methods taking vtype/byref arguments, to fix yet another bug caused by
6557         the sharing of runtime invoke wrappers. Partly fixes #471259.
6558
6559 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
6560
6561         * debug-mono-symfile.c (check_line): Return NULL instead of returning
6562         <first file in file table>:1 when the IL offset does not have an associated
6563         line number.
6564
6565 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
6566
6567         * mono-debug.c (mono_debug_lookup_locals): New function to return local
6568         variable info for a method.
6569
6570         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
6571         
6572 2009-01-30  Jb Evain  <jbevain@novell.com>
6573
6574         * pedump.c: reuse code from monodis to make sure pedump honors
6575         MONO_PATH, which is needed to verify net_2_1 assemblies.
6576
6577 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6578
6579         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
6580         there is no line number info.
6581
6582 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
6583
6584         Avoid some MonoType allocations
6585         * reflection.c (mono_reflection_initialize_generic_parameter):
6586         Reuse MonoType from param->pklass rather than allocating one.
6587         (mono_dynamic_image_free): Update to changes.
6588
6589 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6590
6591         Rearrange some code to improve consistency
6592         * reflection.c (mono_reflection_setup_generic_class): Move body ...
6593         (mono_reflection_initialize_generic_parameter): ... here.
6594
6595 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
6596
6597         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
6598         with type constraints as an experiment.
6599
6600         * boehm-gc.c (on_gc_notification): Update mono_stats.
6601
6602 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6603
6604         Avoid some allocations
6605         * class-internals.h (_MonoGenericInst::type_argv): Convert from
6606         pointer to tail array to avoid extra allocation.
6607         * metadata.c (free_generic_inst): Update to changes.
6608         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
6609         on-stack struct.
6610
6611 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
6612
6613         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
6614         return TRUE if the two type objects are the same.
6615
6616 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6617
6618         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
6619         (mono_class_native_size): Use klass->marshal_info->min_align instead of
6620         klass->min_align, since klass->min_align contains the managed alignment,
6621         while the native alignment can be different, like for longs on x86.
6622         Fixes #469135.
6623
6624         * class-internals.h (MonoMarshalType): Add a min_align field.
6625
6626 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
6627
6628         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
6629         the 1.0 format.
6630
6631 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6632
6633         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
6634         some comments about the usage of the used_regs field.
6635
6636         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
6637         Fixes #469217.
6638
6639 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
6640
6641         * appdomain.c: return NULL instead of throwing FileNotFoundException
6642         when LoadAssembly() fails.
6643
6644 2009-01-23  Mark Probst  <mark.probst@gmail.com>
6645
6646         * metadata.c (mono_metadata_generic_param_equal): Only compare the
6647         image if the owner is NULL.  Fixes the AOT failures.
6648
6649 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
6650
6651         * metadata.c (mono_metadata_load_generic_params): Initialize the 
6652         MonoGenericParam structure using memset so the image field is initialized
6653         as well.
6654
6655 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6656
6657         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
6658         a plain store.
6659
6660 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6661
6662         * class.c (mono_class_setup_vtable_general): In the generic instance
6663         optimization, set method->slot for abstract virtual methods. Fixes part of
6664         #467834.
6665
6666 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6667
6668         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
6669         which signals that the unloading has started but all appdomain services must
6670         remain operational.
6671
6672         * appdomain.c (mono_domain_unload): The initial state for unloading now
6673         is unloading_start and we switch to unloading after the managed call to
6674         AppDomain::DomainUnload has finished.
6675
6676         The new unloading state has to be created because managed code in the
6677         DomainUnload event can depend on things like the threadpool still working.
6678         The domain must remain fully functional while the event executes.
6679
6680         This shown as an issue due to Process::WaitForExit, which waits for
6681         async reads of stdout and stderr to complete. Since those are processed
6682         in the threadpool the code deadlocks because the DomainUnload callback 
6683         waits for the async read finished event, which should have been set by a
6684         threadpool job but has been discarded due to the domain been in unload
6685         state.
6686
6687 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6688
6689         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
6690         image must match.
6691
6692 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6693
6694         * reflection.c (resolve_object): For fields, inflate the class and
6695         then get the field in the inflated class.
6696
6697 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6698
6699         * object-internals.h (struct _MonoException): Added a comment
6700         explaining the new use of trace_ips.
6701
6702 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6703
6704         * generic-sharing.c (inflate_other_data): Inflate array methods
6705         correctly.
6706
6707         * loader.c, class-internals.h: Rename search_in_array_class() to
6708         mono_method_search_in_array_class() and make it non-static.
6709
6710 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6711
6712         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
6713         Hopefully fixes #458168.
6714
6715 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6716
6717         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
6718         as it is performed elsewhere.
6719
6720         Code is contributed under MIT/X11 license
6721
6722 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6723
6724         * mono-perfcounters-def.h: Add counters for asp.net requests total and
6725         requests queued.
6726         * object.c (mono_raise_exception): Increment the exceptions total
6727         counter when an exception is thrown.
6728         * class-internals.h: Add a location for storing the total number of
6729         asp.net requests served.
6730         * mono-perfcounters.c: Implement update support for asp.net counters
6731         from the class libraries. Implement read support for asp.net counters
6732         and exceptions total counter.
6733
6734 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6735
6736         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
6737         accessing klass->methods. Fixes #467385.
6738
6739 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6740
6741         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
6742         for byval arguments without an [Out] attribute. Fixes #467212.
6743
6744         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
6745         Fix compilation under android.
6746         
6747         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
6748         processed, scan them directly after they are copied, to achieve better locality
6749         and cache usage.
6750
6751         * socket-io.c: Applied patch from Koushik Dutta
6752         (koush@koushikdutta.com). Disable IPV6 when running under android.
6753
6754 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6755
6756         * icall.c (ves_icall_InternalExecute): Add write barriers.
6757
6758         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
6759         the GC code.
6760
6761         * sgen-gc.c: Implement write barriers in IL code.
6762
6763 2009-01-17  Geoff Norton  <gnorton@novell.com>
6764
6765         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
6766
6767 2009-01-17  Geoff Norton  <gnorton@novell.com>
6768
6769         * image.c: When unloading the image->references table, there can be gaps
6770         in it.  Ensure that we iterate every entry to avoid leaking assembly references
6771         when unloading an appdomain.
6772
6773 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
6774
6775         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
6776         speed up ptr-in-nursery checks.
6777
6778         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
6779         threads_lock () to prevent deadlocks.
6780
6781         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
6782         does not need to be scanned during minor collections, since writes to it
6783         must use write barriers.
6784
6785 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
6786
6787         * metadata-verify.c: Add pe nt header verification.
6788         
6789 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6790
6791         * gc.c: Fix a few warnings when using SGEN.
6792
6793 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
6794
6795         * metadata-verify.c: Add pe optional header verification.
6796
6797 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6798
6799         * sgen-gc.c: Add support for user defined marker functions, used by
6800         MonoGHashTable to avoid registering a GC root for every hash node.
6801
6802 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6803
6804         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
6805         non-pinned roots into separate hashes to avoid having to traverse them
6806         in functions which are only interested in one kind.
6807
6808 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6809
6810         * metadata-verify.c: Add pe header machine field verification.
6811         
6812 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6813
6814         * metadata-verify.c: Add pe header size verification.
6815
6816 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6817
6818         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
6819         using the GC, they don't contain references.
6820
6821         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
6822
6823 2009-01-13  Geoff Norton  <gnorton@novell.com>
6824
6825         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
6826         AppDomains created on the native side can be cleaned up on the native side.
6827
6828 2009-01-13  Geoff Norton  <gnorton@novell.com>
6829
6830         * appdomain.c: Ensure that we call mono_context_init for the embedding api
6831         as well as the managed api.
6832
6833 2009-01-13  Geoff Norton  <gnorton@novell.com>
6834
6835         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6836         with a MonoAppDomain initialized against it.
6837
6838 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6839
6840         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6841         
6842         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6843
6844         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6845         into the wrapper caches. Fixes #465700.
6846
6847         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6848         method builder.
6849         (mono_mb_create_method): Set the clauses from the method builder.
6850
6851 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6852
6853         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6854         Patch from Makoto Kishimoto.
6855
6856 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6857
6858         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6859         encoding them as ROOT_DESC_COMPLEX.
6860         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6861
6862 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6863
6864         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6865         no longer point to the nursery.
6866
6867         * sgen-gc.c: Add a few comments/FIXMEs.
6868         
6869         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6870
6871         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6872         initialization of the various _method variables thread safe. Fixes
6873         #465377.
6874
6875 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6876
6877         * domain.c, domain-internals.h: Remove the shared_generics_hash
6878         and its lookup functions.
6879
6880 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6881
6882         * socket-io.c:  Fixing the MSVC build. 
6883
6884         Code is contributed under MIT/X11 license.
6885
6886 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6887
6888         * metadata-verify.c: Add pe header watermark verification.
6889
6890 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6891
6892         * metadata-verify.c: Add lfanew verification.
6893
6894 2009-01-12  Jb Evain  <jbevain@novell.com>
6895
6896         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6897         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6898
6899 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6900
6901         * socket-io.c: Fix the build.
6902
6903         * environment.c: Fix an #ifdef.
6904
6905 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6906
6907         * threadpool.c (async_invoke_thread): Handle the wait function returning
6908         WAIT_IO_COMPLETION as well.
6909         (async_invoke_io_thread): Ditto.
6910
6911 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6912
6913         * threads.c: Fixing the Windows build.
6914
6915         Code is contributed under MIT/X11 license.
6916
6917 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6918  
6919         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6920         interrupt a wait.
6921         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6922         the thread to wait again.
6923
6924 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6925
6926         * metadata-verify.c: Initial skeleton of the metadata verifier.
6927
6928         * pedump.c: Add support for the metadata verifier.
6929
6930         * verify-internal.h: Export the whole assembly metadata verifier function.
6931
6932 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6933
6934         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6935
6936 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6937
6938         * Makefile.am: Upgrade dtrace-prelink.sh location.
6939
6940 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6941
6942         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6943         well. Otherwise the shutdown deadlock that happens on unix will can happen
6944         as well.
6945         If the main thread code finishes too fast it's possible that the finalizer
6946         thread won't have executed yet, won't record itself as the finalizer thread
6947         and the shutdown sequence will wait on it forever.
6948
6949 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6950
6951         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6952         with MSVC.
6953
6954 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6955
6956         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6957         Robert Jordan for pointing this out.
6958
6959 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6960
6961         * icall.c
6962         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6963         ves_icall_System_IO_DriveInfo_GetDriveType.
6964
6965 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6966
6967         * icall.c: Wrap calls to mono_strtod in CriticalSection
6968         invocations when using eglib, to work around #464316.
6969
6970 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6971
6972         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6973         return value of GetCurrentDirectory to never access unitialized memory.
6974
6975 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6976
6977         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6978         return value of GetCurrentDirectory and expand the buffer if needed.
6979
6980         Fixes #459094.
6981
6982 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6983
6984         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6985           Adding a call to mono_init_com_types.
6986
6987         Code is contributed under MIT/X11 license.
6988
6989 2009-01-07  Geoff Norton  <gnorton@novell.com>
6990
6991         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6992         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6993         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6994         be the value of the ip buffer.
6995
6996 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6997
6998         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6999         interfaces_packed here.
7000
7001         Fixes part of #463294.
7002
7003 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7004
7005         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
7006
7007         Fixes part of #463294.
7008
7009 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7010
7011         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
7012         is a boxed complex as well.
7013
7014         Fixes part of #463294.
7015
7016 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7017
7018         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
7019         control if a methodspec should be created for the generic method definition from external assemblies.
7020         Caching of methodspec is done using the handleref hash table.
7021
7022         Fixes #462592.
7023
7024 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
7025
7026         * loader.c (find_method): When searching the interfaces of a class
7027         check the transitive closure of implemented interfaces.
7028
7029         Fixes #463303.
7030
7031 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7032
7033         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
7034         
7035 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7036
7037         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
7038         interfaces calculation to fill_valuetype_array_derived_types.
7039
7040         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
7041         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
7042         for example.
7043
7044         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
7045         interfaces for valuetypes if needed.    
7046
7047         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
7048         for their basetype as well. Types are array expanded if rank is > 0.
7049
7050         Fixes #400716.
7051
7052 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
7053
7054         * socket-io.h : Changing the signature of
7055           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
7056           the blocking state.
7057
7058         * icall-def.h :  Changing the signature of
7059           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
7060
7061         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
7062           For Windows only.  Avoid blocking when calling accept by
7063           querying for a connection via select.  The loop also queries
7064           the thread state every 1000 micro seconds for the thread
7065           stop state.  This will avoid the process hanging on shutdown
7066           when using a TcpChannel that is never connected to.
7067
7068         Code is contributed under MIT/X11 license.
7069
7070 2008-12-30  Marek Safar  <marek.safar@gmail.com>
7071
7072         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
7073
7074 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7075
7076         * class.c (get_implicit_generic_array_interfaces): Extract common
7077         code to a helper function making it a lot easier on the eyes.
7078
7079 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7080
7081         * class.c (get_implicit_generic_array_interfaces): If the internal
7082         enumerator is an interface inflate System.Object instead of itself.
7083
7084         Fixes #461261.
7085
7086 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
7087
7088         * object.c (mono_runtime_invoke_array): Don't assert with
7089         byref nullable types.
7090
7091         * marshal.c (mono_marshal_get_runtime_invoke): To handle
7092         byref nullables we unbox the object and store it on the
7093         stack. 
7094         We can't use the boxed object since it is the T of Nullable<T>
7095         and the boxed representation of a nullable it's underlying type
7096         or null.
7097         We could cheat and create a boxed nullable and use the same
7098         machinery of other byref VTs but this feels like a hack and
7099         using the stack has the bonus of reducing heap pressure.
7100
7101         Fixes #461941.
7102
7103 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
7104
7105         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
7106         return value.
7107
7108         Fixes #461867.
7109
7110 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
7111
7112         * icall-def.h : Adding an internal call definition for 
7113           System.Environment.internalBroadcastSettingChange.
7114
7115         * icall.c : Adding a Windows only implementation to broadcast a 
7116           WM_SETTINGCHANGE when an environment variable has changed.
7117
7118         Code is contributed under MIT/X11 license.
7119
7120 2008-12-19  Mark Probst  <mark.probst@gmail.com>
7121
7122         * class.c, class-internals.h: Made
7123         mono_class_has_parent_and_ignore_generics() non-static.
7124
7125 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
7126
7127         * image.c: deal with the mmap failing when loading an image.
7128
7129 2008-12-17  Geoff Norton  <gnorton@novell.com>
7130
7131         * threadpool.c: Ensure that the io_queue_lock is initialized
7132         in all circumstances, as we always attempt to cleanup against it.
7133
7134 2008-12-17  Miguel de Icaza  <miguel@novell.com>
7135
7136         * icall.c (ves_icall_System_Environment_get_Platform): For
7137         compatibility reasons for existing client code we will keep
7138         returning 4 for a while.   
7139
7140         For how long will depend on the documentation being updated, and
7141         for us to give client code a chance to be updated.
7142
7143         This reverts the original decison on #433108 since we did not
7144         catch roughly 33 instances of the broken code in our own source
7145         code base, we did not catch failures on the buildbots, and QA did
7146         not bring this as a problem.
7147
7148         Only today I found some customer's code breaking due to our own
7149         class libraries not being fully updated and tracked it down to
7150         this change.  I am reverting it because if we could not even get
7151         our story straight in our own code base, how can we hope that our
7152         end user code be fixed?
7153
7154         As of this morning, our Wiki page that documents how to detect
7155         Unix had not been fixed.    
7156
7157 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
7158
7159         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
7160
7161         * class.c (mono_class_get_fields): Handle loading errors.
7162
7163 2008-12-12 Mark Mason <mmason@upwardaccess.com>
7164
7165         * metadata.c (mono_type_stack_size_internal): If SIZEOF_REGISTER > SIZEOF_VOID_P then use SIZEOF_REGISTER as the size and alignment of the stack slots.
7166         
7167 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7168
7169         * mono-perfcounters.c: avoid warning.
7170
7171 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
7172
7173         * reflection.c (ensure_runtime_vtable): Work on generic instances and
7174         make sure all interfaces have MonoClass::interface_id set.
7175
7176         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
7177         method table is property set.
7178
7179 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
7180
7181         * class.c: New function mono_class_setup_interface_id that setup
7182         MonoClass::interface_id if needed.
7183
7184         * class-internals.h: Export new function.
7185
7186 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
7187
7188         * class.c: Add code to sanity check the vtable after setup_vtable_general
7189         has done it's work.
7190
7191 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
7192
7193         * icall.c: make Assembly.GetExecutingAssembly work properly when
7194         reflection is used to invoke the method.
7195         Bug #321781 fixed.
7196
7197 2008-12-11  Mark Probst  <mark.probst@gmail.com>
7198
7199         * metadata/generic-sharing.c: Look for constraints in all type
7200         arguments, not just the first one.
7201
7202 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7203
7204         * appdomain.c: return the correct CodeBase for an Assembly instance
7205         that was loaded from the shadow-copy directories.
7206         Bug #458190 fixed.
7207
7208 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
7209
7210         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
7211
7212         * sgen-gc.c (check_object): New debugging helper function.
7213
7214         * object.c: Fix calls to mono_value_copy_array ().
7215
7216 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
7217
7218         * class.c (mono_class_setup_fields): If working on an inflated class
7219         first check if the generic definition did init with success.
7220
7221         Fixes #445361.
7222
7223 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
7224
7225         pedump.c (main): Fix a warning.
7226
7227 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
7228
7229         * object-internals.h : Adding a definition for 
7230           MonoReflectionComVisibleAttribute.
7231
7232         * marshal.c (cominterop_com_visible) :  Method added to check the 
7233           ComVisible attribute of a class.
7234
7235         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
7236           cominterop_raise_hr_exception added to consolidate common code 
7237           to raise hr exceptions.
7238
7239         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
7240           if a managed class should support IDispatch.
7241
7242         * marshal.c 
7243           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
7244           Added additional checks for managed object when getting 
7245           an IDispatch interface.
7246
7247         Code is contributed under MIT/X11 license.
7248
7249 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
7250
7251         pedump.c (main): Handle mono_get_method () returning NULL. 
7252
7253 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7254
7255         * marshal.h: Fix a warning.
7256
7257 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
7258
7259         * marshal.c : Adding cominterop_release_all_rcws to release all
7260           runtime callable wrappers held by the runtime.
7261
7262         * marshal.h : Adding declaration for cominterop_release_all_rcws.
7263           
7264         Code is contributed under MIT/X11 license.
7265
7266 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7267
7268         * metadata.c (mono_image_alloc_lock): New helper function.
7269         (mono_image_alloc0_lock): Ditto.
7270
7271         * metadata.c: Use the alloc_lock () helper functions for allocating
7272         memory from the image mempool.
7273
7274 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
7275
7276         * class.c (mono_class_from_generic_parameter): Document it's
7277         locking behavior. Fix double checked locking here, we stored in
7278         param->pklass a partially initialized MonoClass and no membar was used.
7279
7280 2008-12-05  Marek Habersack  <mhabersack@novell.com>
7281
7282         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
7283         (3) functions are present in the C library use them to do the
7284         job. If they are absent, make sure that the sum of int_part and
7285         dec_part is rounded before returning. This is necessary due to the
7286         division of dec_part by the power of 10 before the final addition
7287         is performed - if the result is not rounded in some cases it will
7288         yield invalid results.
7289
7290 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
7291
7292         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
7293         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
7294         instruction instead of a pointer constant.
7295
7296 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
7297
7298         * loader.c (mono_method_get_header): Do most of the work outside the
7299         loader lock, to avoid assembly load hook deadlocks.
7300
7301         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
7302         (mono_metadata_parse_type_full): Ditto.
7303
7304 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
7305
7306         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
7307         Make the stack depth fixed. Ensure proper argument passing to the backtrace
7308         funtions. Finally, use a lock to produce well ordered output.
7309
7310         The lock looks silly, as all calls to the corlib mempool should be guarded
7311         with the loader lock, but for some reason this fact doesn't help. 
7312
7313         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
7314
7315 2008-12-02  Mark Probst  <mark.probst@gmail.com>
7316
7317         * socket-io.c: 64 bit big-endian fixes.
7318
7319 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
7320
7321         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
7322         targets that require strict compatibility between the types.
7323
7324         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
7325         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
7326         Kill the strict argument and create a new one valuetype_must_be_boxed.
7327
7328         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
7329         state that all valuetypes must be boxed.
7330
7331         Fixes #448560.
7332
7333 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
7334
7335         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
7336         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
7337
7338         Contributed under MIT/X11 license.
7339
7340 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
7341
7342         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
7343         the inflate_generic_type machinery should handle it.
7344
7345         This avoids a crash when the field's flags is zero and it's type is
7346         a primitive.
7347         What happens is that mono_metadata_parse_type_full will see that opt_attrs
7348         is zero and will return one of the cached built-in primitive types. Since
7349         those types live in read-only memory, the code that copies it crashes.  
7350
7351 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7352
7353         * object.c: Don't put function descriptors into generalized IMT
7354         thunks.
7355
7356 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7357
7358         * class.c: Enable generic code sharing on PPC64.
7359
7360 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7361
7362         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
7363         from mini/mini.c.
7364
7365         * generic-sharing.c: Allocate the method template slists from the
7366         image mempool so it doesn't leak.
7367
7368 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
7369
7370         * class.c (generic_array_methods): Release the linked list.
7371
7372 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7373
7374         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
7375         invocation to g_utf16_to_utf8().
7376
7377 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7378
7379         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
7380         arguments on big endian archs.
7381
7382 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7383
7384         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
7385         the type name (test added in corlib).
7386
7387 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7388
7389         * pedump.c: initialize perf. counters. Fixes a segv.
7390
7391 2008-11-25  Martin Baulig  <martin@ximian.com>
7392
7393         * mono-debug-debugger.c
7394         (mono_debugger_runtime_invoke): Return the exception object if an
7395         exception was thrown.  Visual Studio displays the exception object
7396         in the locals window.
7397
7398 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7399
7400         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
7401         ftnptr.
7402
7403 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7404
7405         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
7406         MONO_TYPE_U are sizeof (gpointer), too.
7407
7408 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7409
7410         * marshal.c (mono_type_native_stack_size): Fixed size and
7411         alignment for reference types.
7412
7413 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7414
7415         * class.c (mono_class_generic_sharing_enabled): Disable generic
7416         code sharing for PPC64.
7417
7418 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
7419
7420         * icall.c (mono_method_get_equivalent_method): Make sure
7421         method->klass->methods is inited before looping over it.
7422
7423 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7424
7425         * object.c: when calling ExecuteAssembly in a newly created domain,
7426         the configuration file and application base are already set up.
7427         Bug #446353 take 2 fixed.
7428
7429 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
7430
7431         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
7432         Fixes #444715. Fix a warning.
7433
7434 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
7435
7436         * appdomain.c: write the full path of the assembly to the .ini file
7437         created when "shadow-copying"
7438         Bug #446353 fixed.
7439
7440 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
7441
7442         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
7443         if signature==FALSE.
7444
7445 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7446
7447         * marshal.h : Fix the cygwin build.
7448            marshal.c:12442: undefined reference to `_IID_IMarshal'
7449           
7450         Code is contributed under MIT/X11 license.
7451
7452 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7453
7454         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
7455           free threaded marshaler when QueryInterface is called on a COM callable
7456           wrapper requesting the IMarshal interface.
7457           
7458         Code is contributed under MIT/X11 license.
7459
7460 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
7461
7462         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
7463
7464         * reflection.c (mono_type_get_object): Special case the very common
7465         void type.
7466
7467         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
7468         hold typeof(void).
7469
7470 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
7471
7472         * process.h : Adding method declaration for
7473           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7474           
7475         * process.c : Adding implementation for
7476           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7477           
7478         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
7479           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7480
7481         Code is contributed under MIT/X11 license.
7482
7483 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
7484
7485         * appdomain.c (unload_thread_main): Clean up threadpool by
7486         calling mono_thread_pool_remove_domain_jobs.
7487
7488         * domain-internals.h (struct _MonoDomain): Add new fields to
7489         help coordinate the cleanup of the threadpool.
7490
7491         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
7492         that cleans up the threadpool of all jobs associated with an appdomain.
7493         It does that by cleaning up the queues and making sure all active
7494         threads are accounted.
7495
7496         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
7497         unloaded or in the process of. Take this is such way that there is
7498         no race condition between another thread starting the unload and the
7499         current thread acknowledging it.
7500
7501         * threadpool.c (async_invoke_thread): Same.
7502
7503         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
7504         firing the new thread.
7505
7506         * threadpool.c (start_tpthread): Same.
7507
7508         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
7509
7510         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
7511
7512 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
7513
7514         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7515         Add support for DuplicateHandle.
7516         
7517         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7518         Add support for DuplicateHandle.
7519         
7520         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7521         Add support for DuplicateHandle.
7522
7523         Code is contributed under MIT/X11 license.
7524
7525 2008-11-06  Mark Probst  <mark.probst@gmail.com>
7526
7527         * class-internals.h: Make min_align into a whole byte.
7528
7529         * class.c: Set min_align for SIMD types to 16.
7530
7531 2008-11-05  Geoff Norton  <gnorton@novell.com>
7532
7533         * attach.c: Default the attacher to enabled for all cases including
7534         embedded.
7535
7536 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
7537
7538         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
7539         change r117650.
7540
7541 2008-11-04  Mark Probst  <mark.probst@gmail.com>
7542
7543         * monitor.c, monitor.h: New function for querying offsets of
7544         members of MonoThreadsSync.
7545
7546 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
7547
7548         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
7549         to speed up this function and to avoid the boundless memory growth caused by
7550         the signature_dup () calls.
7551
7552 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
7553
7554         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
7555         wrapper.
7556
7557         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
7558         by 1 bit.
7559
7560         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
7561
7562 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7563
7564         * appdomain.c:
7565         * domain-internals.h: made mono_set_private_bin_path_from_config()
7566         "internal".
7567         * object.c: call the above function after setting the configuration
7568         file path for the root domain.
7569         Fixes bug #314478.
7570
7571 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7572
7573         * assembly.c: when the assembly is loaded from an absolute path, end
7574         basedir with a directory separator.
7575         Bug #440781 fixed.
7576
7577 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7578
7579         * monitor.c (mono_monitor_get_fast_enter_method): If
7580         CompareExchange is not available, don't create the fastpath
7581         instead of asserting.  (The method is missing in the 1.1 profile.)
7582
7583 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7584
7585         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
7586
7587         * monitor.c, monitor.h: Code for generating Monitor.Enter and
7588         Monitor.Exit IL fastpaths.
7589
7590 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7591
7592         * class.c (mono_class_create_from_typedef): Added Vector2ul.
7593
7594 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7595
7596         * class.c (mono_class_create_from_typedef): Added Vector2l.
7597
7598 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
7599
7600         * class.c (mono_class_create_from_typedef): Added Vector2d.
7601
7602 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7603
7604         * appdomain.c: translate \ into / for cache_path.
7605         * domain-internals.h: new mono_is_shadow_copy_enabled().
7606         * icall.c: (fill_reflection_assembly_name) do the same path
7607         manipulations that get_code_base does.
7608         (get_code_base) use mono_is_shadow_copy_enabled.
7609
7610 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7611
7612         * appdomain.c: shadow-copied assemblies go to CachePath +
7613         ApplicationName when both are set. DynamicBase has nothing to do with
7614         shadow copies.
7615         Bug #406877 fixed.
7616
7617 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
7618
7619         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
7620         STANDALONESIG table.
7621
7622         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
7623         standalone signatures.
7624
7625         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
7626         comparison code: instead of comparing the signatures using a custom
7627         equals function, transform them to a common signature and compare that. This
7628         works better with AOT.
7629
7630 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
7631
7632         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
7633
7634         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
7635         call for generic instances.
7636         (mono_class_setup_properties): Call setup_properties () before accessing
7637         gklass->properties.
7638
7639         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7640         over the virtual methods of a class using metadata if possible, avoiding the
7641         creation of MonoMethod's for non-virtual methods.
7642         
7643         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7644         get_virtual_methods () to iterate over the virtual methods of classes.
7645
7646 2008-10-25  Martin Baulig  <martin@ximian.com>
7647
7648         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
7649
7650 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7651
7652         * class.c (mono_class_create_from_typedef): Added Vector4i.
7653
7654 2008-10-24  Mark Probst  <mark.probst@gmail.com>
7655
7656         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
7657         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
7658         special-casing applies to eliminate the call completely.
7659
7660 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7661
7662         * class.c (mono_class_create_from_typedef): Added Vector8s.
7663
7664 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
7665
7666         * class.c (mono_class_create_from_typedef): Added Vector16sb.
7667
7668 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7669
7670         * icall.c: get rid of annoying warning.
7671
7672 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7673
7674         * threadpool.c: in 1.x, if you change the background status of the
7675         threadpool thread, it's not reset.
7676         Remove unnecessary calls to SetState.
7677
7678 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7679
7680         * threadpool.c: asynchronously create a set of idle threads upon first
7681         use of the threadpool. SetMinThreads will now start the appropriate
7682         number of idle threads if they are not already running. The default is
7683         1 threadpool thread per CPU. Increased the maximum number of threads
7684         per CPU to 10.
7685
7686 2008-10-22  Martin Baulig  <martin@ximian.com>
7687
7688         Revert r116521 from Zoltan, it breaks the debugger:
7689
7690         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7691         over the virtual methods of a class using metadata if possible, avoiding the
7692         creation of MonoMethod's for non-virtual methods.
7693         
7694         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7695         get_virtual_methods () to iterate over the virtual methods of classes.
7696
7697 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7698
7699         * threads.c: when creating a threadpool thread, set its state to
7700         'background'.
7701         * threadpool.c: reset the background state of a threadpool thread
7702         after finishing each work item
7703         Bug #437888 fixed.
7704
7705 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7706
7707         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
7708         
7709         * class.c (mono_class_setup_vtable_general): Add an optimized version for
7710         generic instances which works by inflating the methods in the container
7711         class's vtable.
7712
7713         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
7714         variant which doesn't make a copy if no inflation was done.
7715         (mono_class_setup_fields): Use it.
7716
7717         * metadata.c (mono_metadata_get_shared_type): New helper function to
7718         return a shared instance of a given MonoType.
7719
7720         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
7721         a copy of most non-generic types.
7722
7723 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
7724
7725         * threadpool.c: remove one more GetSystemInfo () call.
7726
7727 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7728
7729         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
7730         use the code in mono-proclib.h to get processor information.
7731
7732 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7733
7734         * appdomain.c: fixed the logic that determines whether assemblies in a
7735         directory are "shadow-copied" or not. Bug #433483 fixed.
7736
7737 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7738
7739         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
7740         warning.
7741
7742 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7743
7744         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
7745         returning a vtype.
7746
7747         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
7748         reflection.c: Use mono_field_get_name () for accessing a field's name.
7749
7750         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
7751         class.c
7752
7753         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
7754         field.
7755
7756         * loader.c (find_method_in_class): Reenable the metadata optimization by
7757         not using it for generic instances.
7758
7759         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
7760         data/def_type fields from MonoClassField into a separate structure.
7761         (struct MonoClassField): Remove data/def_type fields.
7762         (struct _MonoClass): Add a 'field_def_values' array to store the default
7763         values/RVA for fields.
7764
7765         * class.c reflection.c: Update after the changes.
7766         
7767         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
7768         for accessing field->data.
7769
7770         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
7771
7772         * loader.c (find_method_in_class): Revert the last change for now as
7773         it breaks Mono.C5 unit tests.
7774
7775         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
7776         'field_generic_types' and 'field_objects' which contain the information
7777         previously stored in MonoInflatedField.
7778         (MonoInflatedField): Delete.
7779         (struct _MonoClassField): Delete 'generic_info' field.
7780
7781         * reflection.c: Store the information which was previously in 
7782         field->generic_info in MonoDynamicGenericClass instead.
7783
7784         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
7785         MonoClassField changes.
7786
7787 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
7788
7789         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
7790         store the value inside the data array of the MonoMethodWrapper.
7791         This saves memory, is faster and fixes the lifetime issues (methods
7792         were never removed from the hash previously). May also fix bug#436996.
7793
7794 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7795
7796         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
7797         generic instances, compute the type from the generic definition instead of
7798         looking in field->generic_info.
7799
7800         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
7801         for inflated fields, the only user was get_fieldref_token () which no
7802         longer needs it.
7803
7804         * class.c (mono_class_init): Revert the last change as it seems to cause
7805         crashes.
7806
7807         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
7808         bytes on 64 bit platforms.
7809
7810         * object.c (mono_class_create_runtime_vtable): Fix a warning.
7811         
7812         * object.c (mono_class_create_runtime_vtable): Don't initalize
7813         field->data/field->def_type here, it is done lazily by 
7814         mono_class_get_field_default_value ().
7815
7816         * icall.c (ves_icall_get_enum_info): Call 
7817         mono_class_get_field_default_value () instead of directly accessing
7818         field->data and field->def_type.
7819
7820         * object.c (get_default_field_value): Ditto.
7821
7822         * class.c (mono_field_get_data): Ditto.
7823         
7824         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
7825         call for generic instances.
7826
7827         * loader.c (find_method_in_class): If klass != from_class, then inflate
7828         the method with the context of from_class, since the caller assumes this.
7829
7830 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
7831
7832         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
7833         for accessing method->slot.
7834
7835 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7836
7837         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7838
7839 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7840
7841         * class.c (mono_method_get_vtable_index): Use
7842         mono_method_get_vtable_slot () for accessing method->slot.
7843
7844         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7845         accessing klass->methods.
7846
7847         * class.c (mono_method_get_vtable_slot): New helper function.
7848         (mono_class_get_vtable_entry): Ditto.
7849         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7850         accessing method->slot.
7851
7852         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7853         method to get_inflated_method ().
7854
7855         * class.c (mono_class_get_inflated_method): New helper method to obtain
7856         a method of an inflated class without calling setup_methods ().
7857         (mono_class_get_cctor): Use get_inflated_method.
7858
7859         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7860         
7861         * marshal.c image.c: Lazily create all the marshal caches.
7862
7863         * image.c (mono_image_init): Move initialization of runtime_invoke
7864         caches to marshal.c.
7865
7866         * marshal.c (get_cache): New helper function to lazily initialize a 
7867         wrapper cache.
7868         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7869
7870         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7871
7872 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7873
7874         * loader.c: fixed check for interface type.
7875
7876 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7877
7878         * appdomain.c: check for NULL setup before it's referenced.
7879
7880 p
7881 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7882
7883         * class.c: remove the unused old vtable setup code.
7884
7885 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7886
7887         * class.c: don't depend on interface order in
7888         setup_interface_offsets (bug #435777).
7889         * reflection.c: sort the InterfaceImpl table (patch from
7890         Jb Evain  <jbevain@novell.com>).
7891
7892 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7893
7894         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7895         the low level assemblies lock.
7896
7897 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7898
7899         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7900         object.c, reflection.c, socket-io.c, threads.c: introduced
7901         mono_framework_version () to return the major framewrok version,
7902         changed the code that was using more complex patterns to use it.
7903         Return the correct value for PlatformID for OSX.
7904
7905 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7906
7907         * icall-def.h, process.h, process.c: added an icall to get info about
7908         processes using mono-proclib.
7909
7910 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7911
7912         * mono-perfcounters.c: use the mono-proclib functions to
7913         access process information.
7914
7915 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7916
7917         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7918         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7919         reflection.c: remove rawbuffer usage: mmap support is more sanely
7920         provided by utils/mono-mmap.
7921
7922 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7923
7924         * gc.c: use posix semaphores when possible so that
7925         mono_gc_finalize_notify() is signal safe.
7926
7927 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7928
7929         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7930         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7931         be #ifdef-ed out, the linker will remove the rest.
7932
7933         * marshal.c: Implement DISABLE_COM.
7934
7935         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7936
7937 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7938
7939         * locales.c (string_invariant_compare_char): Optimization: do not
7940         call g_unichar_type unless we actually need the information.
7941
7942 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7943
7944         * object.c, class-internals.h: Also create remoting trampolines
7945         for generic methods.  Pass the domain to the remoting trampoline
7946         creation function, too.
7947
7948 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7949
7950         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7951
7952 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7953
7954         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7955         Vector4ui.
7956
7957 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7958
7959         * assembly.c:
7960         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7961
7962 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7963
7964         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7965         for the least possible amount of time (extending the fix in r113458).
7966
7967 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7968
7969         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7970
7971 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7972
7973         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7974         as possible simd intrinsic types.
7975         Optimized the test to check for the common prefix first.
7976
7977 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7978
7979         * class.c: back out part of a broken optimization committed on
7980         May 23th (bug #433908).
7981
7982 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7983
7984         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7985         Win32.  Should fix #432388 for most cases until we have the new
7986         profiler on Win32.
7987
7988 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7989
7990         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7991         instead of using inst->id so the hash is stable for AOT.
7992
7993 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7994
7995         * appdomain.c:
7996         * icall.c: create a .ini file for shadow-copied assemblies that
7997         contains the location of the original assembly. Use this to return the
7998         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7999         Also fix the number of '/' for windows when returning the CodeBase.
8000         Fixes bug #430920.
8001
8002 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8003
8004         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
8005
8006         Code is contributed under MIT/X11 license.
8007
8008 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8009
8010         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
8011           if if the class vtable needs initialized.
8012
8013         Code is contributed under MIT/X11 license.
8014
8015 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8016
8017         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
8018           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
8019           STRING->BSTR, and CLASS->INTERFACE.
8020
8021         Code is contributed under MIT/X11 license.
8022
8023 2008-10-07  Marek Habersack  <mhabersack@novell.com>
8024
8025         * sysmath.h: changed the declaration of the
8026         ves_icall_System_Math_Round2 icall by adding an extra
8027         away_from_zero parameter.
8028
8029         * sysmath.c (ves_icall_System_Math_Round2): added support for
8030         away from zero rounding. The icall now takes an extra boolean
8031         parameter to signal that away from zero operation is requested.
8032
8033 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
8034
8035         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
8036         the delegate klass so it can work with full-aot.
8037         (mono_marshal_get_delegate_end_invoke): Ditto.
8038         (mono_marshal_get_delegate_invoke): Ditto.
8039
8040 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
8041
8042         * gc.c, attach.h, attach.c: remove a bad pattern:
8043         add_finalizer_callback () is not implemented correctly, it can't
8044         without adding more overhead to the finalizer loop and it's not
8045         even needed, since we know exactly what we need to call, so there is
8046         no need to do so through an expensive function pointer.
8047
8048 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
8049
8050         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
8051         for the no-gc case.
8052         * attach.c (mono_attach_init): Remove the #ifdef.
8053
8054 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
8055
8056         * attach.c (mono_attach_init): Don't use
8057         mono_gc_add_finalizer_thread_callback when compiling without GC.
8058         Fixes #432306.
8059         
8060         Code is contributed under MIT/X11 license.
8061
8062 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
8063
8064         * class.c (mono_class_create_from_typedef): Remove the 
8065         #ifndef DISABLE_SIMD stuff.
8066
8067 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
8068
8069         * class-internals.h (MonoClass): Added simd_type bit field.
8070
8071         * class.c (mono_class_create_from_typedef): Check if type is a simd
8072         intrinsic.
8073
8074 2008-10-03  Mark Probst  <mark.probst@gmail.com>
8075
8076         * object.c (mono_method_add_generic_virtual_invocation): Only add
8077         instantiations to the thunk whose count is at least as large as
8078         the threshold.
8079
8080 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
8081
8082         * icall.c: changed the Type of the exception thrown when trying to
8083         invoke a constructor on an abstract class. Part of the fix for bug
8084         #324185.
8085
8086 2008-10-02  Mark Probst  <mark.probst@gmail.com>
8087
8088         * class.c, class-internals.h (mono_method_get_vtable_index): New
8089         function which returns the index into the vtable and properly
8090         handles inflated virtual generic methods.
8091
8092 2008-10-01  Mark Probst  <mark.probst@gmail.com>
8093
8094         * object.c, domain.c, object-internals.h, domain-internals.h:
8095         Generalize IMT thunk machinery to also handle thunks for virtual
8096         generic method invokes.  When a virtual generic method is invoked
8097         more than a number of times we insert it into the thunk so that it
8098         can be called without lookup in unmanaged code.
8099
8100         * generic-sharing.c, class-internals.h: Fetching a
8101         MonoGenericInst* for a method from an (M)RGCTX.
8102
8103 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
8104
8105         * marshal.c (emit_marshal_string): Applied a variant of a patch by
8106         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
8107         marshalling. Fixes #431304.
8108
8109 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
8110
8111         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
8112           handle when ref is specified without In or Out.
8113
8114         Code is contributed under MIT/X11 license.
8115
8116 2008-09-30  Mark Probst  <mark.probst@gmail.com>
8117
8118         * loader.c (mono_get_method_constrained): Don't expand method with
8119         the class's context, because it's already a method of that class.
8120
8121 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
8122
8123         * attach.c : should be correct build fix.
8124
8125 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
8126
8127         * attach.c: Fix the previous change.
8128
8129 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
8130
8131         * attach.c : quick w32 build fix.
8132
8133 2008-09-27  Miguel de Icaza  <miguel@novell.com>
8134
8135         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
8136         crashes MonoDevelop: #430455.
8137
8138 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
8139
8140         * domain-internals.h (struct _MonoDomain): Move most fields used only by
8141         the JIT do MonoJitDomainInfo in ../mini/mini.h.
8142
8143         * domain.c: Remove initialization/cleanup of the removed fields.
8144
8145 2008-09-27  Mark Probst  <mark.probst@gmail.com>
8146
8147         * class.c (mono_class_generic_sharing_enabled): Enable generic
8148         code sharing for PPC.
8149
8150 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
8151
8152         * attach.c : Fixing the Windows builds.
8153
8154         Code is contributed under MIT/X11 license.
8155
8156 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
8157
8158         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
8159         the default generic sharing mode to 'all'.
8160
8161 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8162
8163         * generic-sharing.c, class-internals.h: New function for checking
8164         whether a method needs a static RGCTX invoke wrapper.  A few
8165         funtions moved from mini/generic-sharing.c.
8166
8167         * icall.c: New function used.
8168
8169 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8170
8171         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8172         Static RGCTX invoke wrapping applies to value type methods, too.
8173
8174         * class.c (mono_class_setup_vtable_general): In generic-shared
8175         value types, wrap methods with a static RGCTX invoke wrapper.
8176
8177 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
8178
8179         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
8180         osx build.
8181
8182 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
8183
8184         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
8185         register a callback which is called when the finalizer thread is woken
8186         up.
8187         (finalizer_thread): Call the callback if it exists.
8188
8189         * attach.h attach.c: New files, implementing the attach mechanism.
8190
8191         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
8192         
8193         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
8194         by the previous change.
8195
8196 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
8197
8198         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
8199         loader.c, marshal.c, metadata-internals.h, metadata.c,
8200         method-builder.c, object.c, reflection.c: introduced specific functions
8201         to allocate from the domain and image mempools and cleaned up most of
8202         the code to use them (still missing a few in reflection.c).
8203         Keep the loader bytes counter updated.
8204
8205 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
8206
8207         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
8208         loader-related counters.
8209
8210 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
8211
8212         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
8213         added more MS-compatible counters.
8214
8215 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
8216
8217         * class.c (mono_class_setup_fields): Call setup_fields before accessing
8218         class->blittable. Fixes #428217.
8219
8220 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
8221
8222         * reflection.c (mono_image_get_field_on_inst_token): Call 
8223         field_encode_signature () since that handles custom modifiers too.
8224         Fixes #424663.
8225
8226 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
8227
8228         * reflection.c (add_custom_modifiers): New helper function to merge custom
8229         modifiers stored in objects to a MonoType.
8230         (fieldref_encode_signature): Encode custom modifiers.
8231         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
8232         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
8233
8234 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
8235
8236         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
8237         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
8238         64-bit IL only images because imports are not resolved for IL only images.
8239         Special thanks to Bill Holmes for finding this bug and testing the patch.
8240         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
8241
8242         Contributed under MIT/X11 license.
8243
8244 2008-09-19  Miguel de Icaza  <miguel@novell.com>
8245
8246         * mono-config.c (dllmap_start): Add support for the bits keyword
8247         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
8248
8249 2008-09-19  Mark Probst  <mark.probst@gmail.com>
8250
8251         * reflection.c (inflate_mono_method): When the class the method is
8252         to be inflated for is itself not inflated, just return the method.
8253
8254 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
8255
8256         * mono-perfcounters.c: use more user friendly process instance names.
8257
8258 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
8259
8260         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
8261           handle "[in] ref" and "[in][out] ref" cases.
8262
8263         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
8264           to mono_mb_create_method.  This was causing problems calling native to
8265           managed passing Variants by value.
8266
8267         Code is contributed under MIT/X11 license.
8268
8269 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
8270
8271         * class.c (can_access_internals): Call mono_assembly_load_friends ()
8272         before accessing the friend_assembly_names field.
8273
8274         * assembly.c (mono_assembly_load_friends): Make this callable multiple
8275         times.
8276         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
8277         called lazily when it is needed.
8278
8279         * metadata-internals.h (struct _MonoAssembly): Add 
8280         'friend_assembly_names_inited' flag.
8281
8282 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
8283
8284         * mono-perfcounters-def.h: fix the types of a few counters.
8285         * mono-perfcounters.c: implemented the instance names getter
8286         and a few bugfixes.
8287
8288 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
8289
8290         * culture-info-table.h : regenerated.
8291
8292 2008-09-17  Robert Jordan  <robertj@gmx.net>
8293
8294         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
8295         context bound objects. Fixes #415577.
8296
8297         Code is contributed under MIT/X11 license.
8298
8299 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
8300
8301         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
8302         implementation (bug #423582).
8303
8304 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
8305
8306         * object.c (mono_object_get_virtual_method): Handle the case method->slot
8307         is not set. Fixes #426309.
8308
8309 2008-09-16  Jb Evain  <jbevain@novell.com>
8310
8311         * class.c (mono_class_from_name): fix the exported type look up
8312         when the type is defined in a referenced assembly.
8313
8314 2008-09-16  Jb Evain  <jbevain@novell.com>
8315
8316         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
8317         increment the next index counter on each iteration to make that work
8318         for more than one type forwarder. Unmanaged part to fix #422929.
8319
8320 2008-09-15  Mark Probst  <mark.probst@gmail.com>
8321
8322         * object-internals.h: enum ComInterfaceType in
8323         MonoInterfaceTypeAttribute is guint32, not guint16.
8324
8325 2008-09-12  Mark Probst  <mark.probst@gmail.com>
8326
8327         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
8328         writing code.
8329
8330 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8331
8332         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
8333         not gboolean.
8334
8335 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8336
8337         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
8338         Endianness fixes for MonoSymbolFileOffsetTable.
8339
8340 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8341
8342         * process.c (complete_path) : Removing quotes from the 
8343           input path.  The glib file routines do not handle file paths
8344           that have quotes around them.
8345
8346         Code is contributed under MIT/X11 license.
8347
8348 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8349
8350         * socket-io.h : Adding a comment to provide locations where 
8351           changes to MonoSocketAsyncResult need to be synced.
8352
8353         Code is contributed under MIT/X11 license.
8354
8355 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
8356
8357         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
8358         parameters as well. Fixes #425001.
8359
8360 2008-09-08  Miguel de Icaza  <miguel@novell.com>
8361
8362         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
8363         windows build.
8364
8365 2008-09-07  Miguel de Icaza  <miguel@novell.com>
8366
8367         * console-io.c: Add support for tracking the window size if it
8368         changes.
8369
8370         The setup is very simple: the TtySetup function will now return a
8371         pointer to a location in memory that tracks the current console
8372         size.  The managed code checks its current value every time its
8373         queried against the last value set, and updates accordingly.
8374
8375         With this setup we can work with multiple consoles, and we do not
8376         require to poke into managed code from a signal handler.
8377
8378         Additionally, the environment for COLUMNS and LINES is now handled
8379         in unmanaged code.
8380
8381         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
8382
8383 2008-09-07  Mark Probst  <mark.probst@gmail.com>
8384
8385         * marshal.c (mono_type_native_stack_size): Treat
8386         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
8387
8388 2008-09-04  Jb Evain  <jbevain@novell.com>
8389
8390         * class.c (mono_class_is_assignable_from): fix assignability of nullables
8391         to nullables.
8392
8393 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
8394
8395         * verify.c (verify_type_compatibility_full): Revert change
8396         to allow converting a native int to unmanaged pointer be verifiable
8397         under non-strict mode.
8398         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
8399
8400         * verify.c: Added some TODOs.
8401
8402 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
8403
8404         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
8405           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
8406           Changed to use GlobalAlloc for the memory returned on Windows platforms.
8407
8408         Code is contributed under MIT/X11 license.
8409
8410 2008-09-02  Jb Evain  <jbevain@novell.com>
8411
8412         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
8413
8414 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
8415
8416         reflection.c (typebuilder_setup_fields): Handle classes with
8417         explicit size.
8418
8419 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
8420
8421         class.c (mono_class_setup_events): Add memory barrier due to
8422         double checked locking.
8423         
8424         class.c (mono_class_setup_properties): Same.
8425
8426 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
8427
8428         * class.c (mono_class_is_assignable_from): Fix the build.
8429         
8430         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
8431         before accessing klass->interface_bitmap. Fixes #421744.
8432
8433 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
8434
8435         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
8436         the runtime into no-exec mode, useful when running the AOT compiler.
8437
8438         * appdomain.c gc.c object.c: Avoid executing managed code when running
8439         in no-exec mode.
8440         
8441         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
8442
8443         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
8444         special case when the mono_assembly_loaded () returns NULL because the 
8445         search hook is not installed.
8446
8447 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
8448
8449         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
8450         crashes in bstr marshalling on linux.
8451
8452 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8453
8454         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
8455         with more than one parameter.
8456
8457 2008-08-24  Miguel de Icaza  <miguel@novell.com>
8458
8459         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
8460         start/stop flow control as well when turning off ICANON (allows
8461         C-s and C-q to be read by Console.ReadKey).
8462
8463 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8464
8465         * class.c (mono_class_init): Move the initialization of nested classes
8466         into mono_class_get_nested_types (). Fixes #418433.
8467
8468         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
8469         flag.
8470
8471         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
8472         iterating tough the nested classes of a class.
8473
8474 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
8475
8476         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
8477         on arm.
8478
8479 2008-08-22  Miguel de Icaza  <miguel@novell.com>
8480
8481         * console-io.c (sigcont_handler): Support signal chaining for
8482         SIGCONT.
8483
8484         (console_set_signal_handlers): Use best practices with sigaction,
8485         clear the structure before using it. 
8486
8487 2008-08-22  Robert Jordan  <robertj@gmx.net>
8488
8489         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
8490         Fix the Windows build.
8491
8492 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
8493
8494         * class.c (mono_class_generic_sharing_enabled): Make the default
8495         sharing mode 'corlib'.
8496
8497 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
8498
8499         * console-io.c (console_set_signal_handlers): Fix a warning.
8500
8501         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
8502         method normally, the JIT will take care of avoiding recursion.
8503
8504 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8505
8506         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
8507
8508         Code is contributed under MIT/X11 license.
8509
8510 2008-08-20  Miguel de Icaza  <miguel@novell.com>
8511
8512         * console-io.c (sigcont_handler): We need to restore the entire
8513         termios state, not only the original settings, as things like echo
8514         can be controlled after this (Booish exposes this issue with its
8515         own ReadLine implementation).
8516
8517         Additionally, we need to set the terminal back into keypad_xmit
8518         mode.
8519         
8520         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
8521         string as a paramter as well.   Otherwise we get different
8522         keyboard sequences.
8523
8524 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
8525
8526         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
8527         delegates with byref out parameter passing. Fixes #351520.
8528
8529         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
8530         a generic context.
8531         (mono_type_get_desc): Add the type arguments for GENERICINST.
8532         (mono_method_full_name): Stringify the class name using mono_type_full_name
8533         so it picks up generic arguments.
8534
8535 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
8536
8537         * console-io.c: Removed debug output.
8538
8539 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
8540
8541         reflection.c (mono_reflection_create_runtime_class): Alloc
8542         the nested classes linked list using the dynamic image mempool.
8543         Fixes leak in corlib compilation.
8544
8545 2008-08-19  Miguel de Icaza  <miguel@novell.com>
8546
8547         * console-io.c: Fix incredibly annoying behavior on the console
8548         after resuming execution after control-z.   This affected every
8549         console application.
8550
8551 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
8552
8553         * mempool-internals.h: Header for mono private mempool functions. The first
8554         two function are for allocating glib linked lists using pools.
8555
8556         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
8557
8558         * Makefile.am: Added mempool-internals.h.
8559
8560 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
8561
8562         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
8563         (mono_domain_free): Ditto.
8564
8565         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
8566         be used by the JIT to store its domain-specific information, instead of putting
8567         it directly into MonoDomain.
8568
8569         * domain.c (mono_install_create_domain_hook): New helper function to install
8570         a hook which initializes domain->runtime_info.
8571
8572         * domain.c (mono_install_free_domain_hook): Ditto.
8573         
8574 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
8575
8576         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
8577         asserting if the ares parameter is null.
8578
8579         * mono-perfcounters.c: Fix warnings.
8580
8581         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
8582         is not needed, don't check for interruptions either.
8583         (mono_marshal_get_delegate_end_invoke): Ditto.
8584
8585 2008-08-15  Marek Habersack  <mhabersack@novell.com>
8586
8587         * mono-perfcounters.c (predef_readonly_counter): added support for
8588         reading the ASP.NET Requests Queued counter from another process.
8589
8590 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
8591
8592         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
8593         MonoImage to simplify the AOT code.
8594
8595 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
8596
8597         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
8598         marshalling. Fixes #416078.
8599
8600 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8601         
8602         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
8603         it is set, looking up the icall address is deferred to the JIT, since 
8604         in embedded scenarios, the icall might not be registered in the runtime
8605         doing the AOT compilation. Backported from the 2.0 branch.
8606
8607 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8608
8609         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
8610         Fixes #415621.
8611
8612 2008-08-05  Marek Habersack  <mhabersack@novell.com>
8613
8614         * Makefile.am: added support for cross-compilation.
8615
8616 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
8617
8618         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
8619
8620 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8621
8622         * mono-perfcounters.c: jitted methods and jitted bytes counters.
8623
8624 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
8625
8626         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
8627         mono-perfcounters.c: performance counters implementation.
8628
8629 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
8630
8631         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
8632         to gpointer, letting the AOT code decide what to store in it.
8633
8634 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
8635
8636         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
8637           mono_class_setup_methods if the methods are not initialized.
8638
8639         Code is contributed under MIT/X11 license.
8640
8641 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8642
8643         * verify.c: Remove some debug code I commited by accident.
8644
8645         * verify.c (mono_method_is_valid_in_context): Change the return value
8646         to make possible to distinguish between invalid and unverifiable.
8647
8648         * verify.c (verifier_load_method): Don't return NULL for unverifiable
8649         methods.
8650
8651 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8652
8653         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
8654         constraints. Fixes regression in gtest-253.
8655
8656 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8657
8658         * verify.c (mono_verifier_verify_class): Don't allow generic types
8659         with explicit layout.
8660
8661         * verify.c (mono_method_verify): Check locals and argument types.
8662
8663 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
8664
8665         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
8666         wait if the thread is in StopRequested state.
8667
8668         * class.c (mono_class_from_name): Refactor the module searching code into
8669         a separate function so it can be reused in the AOT case too.
8670
8671 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
8672
8673         * verify.c (mono_type_is_valid_in_context): Improve the error message.
8674         Check both the type and it's generic type definition for loader errors.
8675         
8676         * verify.c (mono_method_is_valid_in_context): Don't generate another
8677         error when a type errors occur, this leads to the wrong exception been
8678         thrown.
8679
8680 2008-07-28  Dick Porter  <dick@ximian.com>
8681
8682         * icall-def.h
8683         * process.c
8684         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
8685         New internal calls to duplicate and close a process handle.
8686
8687 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
8688
8689         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
8690
8691 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
8692
8693         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
8694
8695 2008-07-27  Robert Jordan  <robertj@gmx.net>
8696
8697         * class.c (mono_class_init): Don't compute class.has_finalize for
8698         valuetypes. Fixes #412477.
8699
8700 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
8701
8702         * verify.c: Implement constraint equivalence checking.
8703         This is required when a generic parameter is used as
8704         argument to a constrained one.
8705
8706         Fixes #410637.
8707
8708 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
8709
8710         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8711
8712         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
8713
8714         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
8715         synch with managed object layout.
8716
8717 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8718
8719         * verify.c (do_branch_op): Handle valuetypes and generic
8720         arguments properly.
8721
8722         * verify.c (do_cmp_op): Same.
8723
8724         Fixes #410383.
8725
8726 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8727
8728         * generic-sharing.c: Fix memory leaks.
8729
8730         * class.c, class-internals.h: Make
8731         mono_class_inflate_generic_type_with_mempool() non-static.
8732
8733 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8734
8735         * pedump.c (dump_verify_info): Dump full class name.
8736
8737 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8738
8739         * generic-sharing.c: Removed some old code that didn't do anything.
8740
8741 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
8742         * profiler.c: Added runtime_initialized_event,
8743         mono_profiler_install_runtime_initialized and
8744         mono_profiler_runtime_initialized. This new hook tells the profiler
8745         when the runtime is sufficiently initialized to be able to call
8746         mono_thread_attach on the root appdomain.
8747         * profiler.h, profiler-private.h: Likewise.
8748
8749 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8750
8751         * verify.c (do_cast): Do boxing for generic arguments as well.
8752
8753         * class.c (is_nesting_type): Drop generic instantiations before
8754         checking for nesting.
8755
8756         * class.c (can_access_instantiation): Allow access to generic
8757         arguments.
8758
8759 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8760
8761         * verify.c (verify_class_for_overlapping_reference_fields):
8762         On some cases, the field size might be zero, guard against that.
8763         Fix the explicit layout check to work as expected.
8764
8765 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
8766
8767         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
8768         mono_thread_resume () during shutdown, since the thread we want to abort
8769         might be suspended.
8770
8771 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
8772
8773         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
8774         warning.
8775
8776         * debug-mono-symfile.c: Fix a warning.
8777
8778         * mono-perfcounters.c (get_cpu_times): Fix a warning.
8779
8780         * object.c (mono_class_vtable): Check if exception_type is set, and return
8781         NULL as defined by the function comments.
8782
8783 2008-07-22  Mark Probst  <mark.probst@gmail.com>
8784
8785         * mempool.c: Use malloc for every single mempool allocation if the
8786         configure option is set.  This makes it easier to track mempool
8787         allocations with tools like Valgrind.
8788
8789 2008-07-22  Jb Evain  <jbevain@novell.com>
8790
8791         * reflection.c (create_dynamic_mono_image): emit the same
8792         metadata version that SL2 does when creating a SL2 image.
8793
8794 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
8795
8796         * icall-def.h:
8797         * icall.c: New icall System.Enum:get_hashcode. This function
8798         avoids the overhead of boxing the enum to the underlying type.
8799
8800 2008-07-21  Mark Probst  <mark.probst@gmail.com>
8801
8802         * reflection.c (mono_method_get_object): Don't let static RGCTX
8803         invoke wrappers get into MonoReflectionMethods.
8804
8805 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
8806
8807         * object-internals.h:
8808         * object.c: New mono_runtime_class_init_full function
8809         that makes throwing the exception optinal.
8810
8811         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
8812         for the case where the exception object is supplied.
8813
8814 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
8815
8816         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
8817         old ld versions.
8818
8819         Contributed under MIT/X11 license.
8820
8821 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8822
8823         * string-icalls.c (ves_icall_System_String_InternalSplit):
8824         Optimize array allocation by caching the MonoClass of the
8825         array type.
8826
8827         * icall.c (ves_icall_Type_GetMethodsByName): Same.
8828
8829         * reflection.c (mono_param_get_objects): Same.
8830
8831 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8832
8833         * icall-def.h:
8834         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8835         It inflates the given type using the class context.
8836
8837 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8838
8839         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8840         the vtable if it already exists.
8841
8842         * object-internals.h: Add mono_class_try_get_vtable as part of the
8843         internal API.
8844
8845         * reflection.c (mono_type_get_object): Use the MonoObject from the
8846         vtable when possible. Reduces locking contention on reflection heavy
8847         code.
8848
8849 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8850
8851         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8852         g_bit_nth_msf () since that macro is not implemented in eglib.
8853
8854 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8855
8856         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8857         on platforms which do not support it.
8858
8859 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8860
8861         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8862
8863 2008-07-11  Martin Baulig  <martin@ximian.com>
8864
8865         * mono-debug-debugger.h
8866         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8867
8868         * mono-debug-debugger.c
8869         (_mono_debugger_interruption_request): New global volatile variable.
8870         (mono_debugger_check_interruption): New public function.
8871
8872         * threads.c
8873         (mono_thread_current_check_pending_interrupt): Call
8874         mono_debugger_check_interruption().
8875         (mono_thread_interruption_checkpoint_request): Likewise.
8876
8877 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8878
8879         * verify.c: Add more type checks for loaded types. Verify the result
8880         handle from ldtoken.
8881
8882 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8883
8884         * loader.c (field_from_memberref): Don't crash if the field
8885         wasn't found.
8886
8887 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8888
8889         * verify.c: Verify if type and method instantiations
8890         don't have invalid VAR or MVAR arguments.
8891
8892 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8893
8894         * verify.c: Fix double free of function pointer list.
8895
8896 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8897
8898         * object.c (mono_string_to_utf8): Comment the new code as it
8899         breaks under eglib.
8900
8901 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8902
8903         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8904
8905 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8906
8907         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8908           is not throw too many times.
8909
8910         Code is contributed under MIT/X11 license.
8911
8912 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8913
8914         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8915         debugging is turned off.
8916
8917 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8918
8919         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8920
8921 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8922
8923         * class-internals.h, class.c: Added new generic sharing option:
8924         Share only stuff in System.Collections.Generic, which is now the
8925         default.
8926
8927 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8928
8929         * generic-sharing.c, class-internals.h: New function for getting a
8930         generic method in a generic class given the corresponding method
8931         for a different instantiation of the class.  Partly refactored
8932         from mini-trampolines.c.
8933
8934         * class.c: Make sure generic methods have a class_inst if they are
8935         part of a generic class.
8936
8937         * metadata.c (mono_type_stack_size_internal): Handle type
8938         variables.
8939
8940 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8941
8942         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8943         Signifies whether information on the this/vtable/mrgctx variable
8944         is available.
8945
8946 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8947
8948         * object.c, object-internals.h, icall.c: New function
8949         mono_delegate_ctor_with_method(), which does the same as
8950         mono_delegate_ctor(), but takes an explicit method argument
8951         instead of taking the method from the jit info.
8952
8953         * marshal.c: When creating a delegate with an inflated method take
8954         the "this" argument as the target class for the castclass.
8955
8956 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8957
8958         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8959         mono_jit_info_table_find() to perform very badly in some cases.
8960
8961 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8962
8963         * icall.c (type_from_typename): Handle 'string'.
8964
8965         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8966         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8967
8968 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8969
8970         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8971
8972         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8973         number of available managed allocator types.
8974
8975         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8976         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8977
8978 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8979
8980         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8981         which is a low level lock protecting just the 'jit_code_hash' hash table.
8982
8983         * domain.c: Initialize+cleanup jit_code_hash_lock.
8984         
8985 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8986
8987         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8988         after initialization.
8989
8990         * coree.h: Make MonoFixupExe internal.
8991
8992         Contributed under MIT/X11 license.
8993
8994 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8995
8996         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8997         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8998         as well.
8999         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
9000         image being loaded is a CLI image and _CorValidateImage gets called.
9001
9002         * coree.h: Add MonoLoadImage.
9003
9004         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
9005         instead of LoadLibrary.
9006
9007         Contributed under MIT/X11 license.
9008
9009 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
9010
9011         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
9012         for any primitive type.
9013
9014 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
9015
9016         * object.c (mono_array_new_specific): Optimize this and the other allocation
9017         functions a bit.
9018         
9019         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
9020         domains too if mono_dont_free_domains is set.
9021
9022         * domain-internals.h (mono_dont_free_domains): New internal option controlling
9023         whenever to free appdomain data after it has been unloaded.
9024
9025         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
9026         
9027 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
9028
9029         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
9030         (mono_method_get_equivalent_method): Fix a warning.
9031
9032         * object.c (mono_message_init): Avoid looking up array types for each call.
9033
9034 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
9035
9036         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
9037         call.
9038
9039         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
9040         even more.
9041
9042         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
9043         each iteration.
9044
9045         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
9046         fields of an enum.
9047
9048 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
9049
9050         * object.c (mono_value_box): Fix boxing of nullables.
9051
9052 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
9053
9054         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
9055         mono_module_handle that is defined by the linker; no initialization required.
9056         * coree.h: Remove mono_module_handle, add __ImageBase, update
9057         mono_image_open_from_module_handle.
9058         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
9059         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
9060         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
9061         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
9062         to 4 GB away from image base address. IA64 version is not tested but was very
9063         easy to implement and should work if we ever need it.
9064         * domain.c (mono_init_internal): Avoid system error message boxes.
9065         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
9066         with has_entry_point. Handle do_mono_image_load fauilre correctly.
9067         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
9068         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
9069         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
9070
9071         Contributed under MIT/X11 license.
9072
9073 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9074
9075         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
9076         as part of the private mono API.
9077         
9078         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
9079         Do proper argument checking for methods that belong to generic classes.
9080         Do proper type resolution for GMFH/2.
9081         Fixes #377324.
9082         
9083 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9084
9085         * verify.c (do_switch): Fix a memory corruption bug with
9086         the jump index is out of bound.
9087
9088 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9089
9090         * verify.c: Disable debug code.
9091
9092 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9093
9094         * reflection.c (mono_image_get_methodbuilder_token): Use
9095         mono_image_get_methodspec_token_for_generic_method_definition
9096         instead of mono_image_get_memberref_token. We cache more memberef
9097         entries now.
9098
9099 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9100
9101         * verify.c: Inflate exception clause types.
9102         Fixes #402606.
9103         
9104 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9105
9106         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
9107         name.
9108
9109         * reflection.c (mono_image_get_ctorbuilder_token): Same.
9110
9111         * reflection.c (mono_image_create_method_token): Same.
9112
9113 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9114
9115         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
9116         It does the same as mono_image_get_methodref_token but works on
9117         MethodBuilder.
9118
9119         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
9120         and always generate a methodspec. This follows the old behavior and fixes
9121         the regressions in System.Core. 
9122
9123 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
9124
9125         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
9126         don't event mono_class_get () succeeds. Fixes #402182.
9127
9128 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
9129
9130         * metadata-internals.h: Added MonoDynamicImage::methodspec
9131         hashtable to store methodspec tokens created for MethodBuilders.
9132
9133         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
9134         MethodBuilders as open instantiations if a methodspec was requested.
9135
9136         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
9137
9138         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
9139
9140         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
9141
9142         Fixes bug #349190.
9143
9144 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
9145
9146         * loader.c (method_from_methodspec): Avoid crashing if the
9147         method lookup fails.
9148
9149 2008-06-20  Dick Porter  <dick@ximian.com>
9150
9151         * socket-io.c (get_socket_assembly): Cope with Moonlight network
9152         classes being in a different assembly.  Fixes bug 399184.
9153
9154 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
9155
9156         * loader.c (mono_loader_init): Make this callable multiple times.
9157         (mono_dllmap_insert): Call mono_loader_init () so this works even before
9158         the runtime is initialized. Fixes #401755.
9159
9160 2008-06-19  Dick Porter  <dick@ximian.com>
9161
9162         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
9163         Fixes bug 349688.
9164
9165 2008-06-19  Dick Porter  <dick@ximian.com>
9166
9167         * socket-io.c:
9168         * icall-def.h: Implement Socket generic Send() and Receive()
9169         methods.  Fixes bug 395168.
9170
9171 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
9172
9173         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
9174
9175         Contributed under MIT/X11 license.
9176
9177 2008-06-18  Martin Baulig  <martin@ximian.com>
9178
9179         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
9180         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
9181         set to 80.0.  The debugger <-> runtime interface is now frozen as
9182         well.   
9183
9184         * mono-debug.c
9185         (mono_debug_debugger_version): Bump to 4.
9186
9187 2008-06-18  Martin Baulig  <martin@ximian.com>
9188
9189         * debug-mono-symfile.c
9190         (load_symfile): Don't check the minor version.
9191
9192         * debug-mono-symfile.h: Bump the version number to 50.0.
9193
9194 2008-06-18  Martin Baulig  <martin@ximian.com>
9195
9196         * debug-mono-symfile.c
9197         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
9198         minimum required version.
9199
9200 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
9201
9202         * reflection.c (mono_custom_attrs_from_property): Fix support for
9203         retriveving cattrs of dynamic inflated generic types.
9204
9205         * reflection.c (mono_custom_attrs_from_event): Same.
9206
9207         * reflection.c (mono_custom_attrs_from_field): Same;
9208
9209         * reflection.c (typebuilder_setup_events): Same cattrs of events.
9210
9211         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
9212         Moved to metadata.c.
9213
9214         * metadata.c: New functions to retrive the equivalent field, event
9215         of property from the generic type definition.
9216
9217         * metadata-internals.h: Added new functions from metadata.c.
9218
9219 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
9220
9221         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
9222         to cached in a mempool is used.
9223
9224         * metadata.c (free_generic_class): In some situations field generic_info type
9225         is not properly dup'ed and leads to double free'ing.
9226
9227         Fixes #400643.
9228
9229 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9230
9231         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
9232         this arguments (will be needed later for generic methods).
9233         Collect stats.
9234
9235 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9236
9237         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9238         Create a static RGCTX invoke wrapper for methods which require it.
9239
9240 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9241
9242         * object.c, class-internals.h: New function for checking whether
9243         an individual field is special static.
9244
9245 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
9246
9247         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
9248         linear search since the table is sorted.
9249
9250         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
9251         Fixes #324180.
9252
9253 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
9254
9255         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
9256         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
9257
9258         * gc.c (mono_domain_finalize): Allow an infinite timeout.
9259
9260         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
9261         
9262         * threads.c (mono_thread_request_interruption): Get rid of locking, use
9263         InterlockedCompareExchange to query and modify 
9264         thread->interruption_requested.
9265
9266         * object-internals.h (struct _MonoThread): Change interruption_requested
9267         to a gint32 so it can be modified by atomic operations. Add 
9268         'critical_region_level' from the managed side, change small_id to a guint32,
9269         add new set of 'unused' fields.
9270
9271         * appdomain.c: Bump corlib version.
9272
9273 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
9274
9275         * class.c (mono_class_from_name): Search modules as well. Fixes
9276         #322332.
9277
9278 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9279
9280         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
9281         templates.  Templates are generalized with an additional type_argc
9282         argument.  RGCTX templates have type_argc==0, MRGCTX templates
9283         have type_argc>0.
9284
9285         * domain-internals.h, domain.c: New hash table for looking up
9286         MRGCTXs.
9287
9288         * metadata.c, metadata-internals.h: Rename hash and equal
9289         functions for MonoGenericInst's and make them public.
9290
9291         * class-internals.h: New data structures for the MRGCTX.  Macros
9292         for distinguishing slots in the RGCTX and the MRGCTX.
9293
9294 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9295
9296         * object.c (mono_method_get_imt_slot): Put the same methods of
9297         different instantiations of the same generic interface in the same
9298         IMT slots, to make generic sharing simpler.
9299
9300 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9301
9302         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
9303
9304         * metadata.c (mono_metadata_field_info_with_mempool): Added.
9305         This function works just like mono_metadata_field_info, but
9306         accept a mempool as argument to be used allocating memory.
9307
9308         * marshal.c (mono_marshal_load_type_info): Use new function
9309         to load marshal data into image mempool.
9310
9311 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9312
9313         * class.c (mono_class_inflate_generic_type_with_mempool):
9314         This function allows to inflate a generic type using
9315         a mempool.
9316
9317         * class.c (inflate_generic_type): Take a mempool as argument
9318         and use it to do type dup'ing.
9319
9320         * class.c (mono_class_setup_fields): Field type for generic
9321         generic classes are allocated from the image mempool.
9322
9323         * metadata.c (free_generic_class): Inflated field type is
9324         now allocated in the image mempool.
9325
9326 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9327
9328         * threads.c (thread_cleanup): Free MonoThread::name.
9329
9330 2008-06-12  Marek Habersack  <mhabersack@novell.com>
9331
9332         * appdomain.c (ensure_directory_exists): avoid unnecessary
9333         mkdir(2) calls when the shadow directory already exists.
9334         (mono_make_shadow_copy): copy also satellite assemblies from the
9335         private bin directories.
9336
9337 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9338
9339         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
9340         
9341         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
9342         a page boundary. Fixes #396219.
9343
9344 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9345
9346         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
9347         due to double-checked locking.
9348
9349 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9350
9351         * assembly.c (build_assembly_name): Release memory on failure.
9352
9353         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
9354
9355 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9356
9357         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
9358         memory on failure.
9359
9360 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9361
9362         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
9363         memory on failure.
9364
9365 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9366
9367         * loader.c (field_from_memberref): Check if field signature type is equal
9368         to the non-inflated type of the field. Fixes #398980.
9369
9370 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9371
9372         * assembly.c (mono_assembly_load_from_full): Call 
9373         mono_assembly_load_friends () outside the assemblies lock, since it can
9374         acquire the loader lock. Fixes #323696.
9375
9376         * reflection.c (resolve_object): Inflate the inst with the context for
9377         FieldOnTypeBuilderInst. Fixes #399010.
9378
9379 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9380
9381         * reflection.c (mono_image_get_field_on_inst_token): Don't
9382         inflate the field to encode it's signature. If it's a
9383         VAR or MVAR it should stay that way in the signature.
9384         Fixes #399047.
9385
9386 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9387
9388         * reflection.c (resolve_object): Release memory of inflated types.
9389
9390 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9391
9392         * loader.c (mono_method_get_signature_full): Remove assert about
9393         loading a methodspec to a generic method. We have such methods, such as
9394         System.Threading.Interlocked::CompareExchange<T>.
9395         This assert was removed since it crashes the verifier when it checks
9396         methods calling CompareExchange<T>.
9397
9398 2008-06-10  Marek Safar  <marek.safar@gmail.com>
9399
9400         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
9401         of Type array and not MonoType.
9402
9403 2008-06-10  Marek Habersack  <mhabersack@novell.com>
9404
9405         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
9406         <lupus@ximian.com>
9407
9408 2008-06-10  Martin Baulig  <martin@ximian.com>
9409
9410         * debug-mono-symfile.h
9411         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
9412         changes to the file format, but we were generating incorrect
9413         source file indices in the line number table due to a bug, which
9414         made backtraces report an incorrect source file.
9415
9416 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9417
9418         * mono-debug.c: Moved mono_debug_free_method_jit_info from
9419         mini/debug-mini.c to here.
9420
9421         * mono-debug.c (il_offset_from_address): Free memory from find_method.
9422
9423         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
9424         use it to release structs returned by mono_debug_find_method.
9425
9426 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
9427
9428         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
9429         since it needs to set method->slot for all interface methods.
9430
9431 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9432
9433         * class-internals.h: Forgot to add.
9434
9435 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9436
9437         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
9438
9439         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
9440         Lookup the custom attributes from property_hash.
9441
9442         * reflection.c (mono_save_custom_attrs): Save the custom attributes
9443         in property_hash. Allocate all data using the image mempool.
9444
9445         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
9446         for dynamic_custom_attrs to checks if the image is dynamic.
9447
9448 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9449
9450         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
9451         assemblies array.
9452         
9453         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
9454         runtime functions while holding the domain assemblies lock.
9455
9456 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9457
9458         * verify.c: Reapplied the last bit of the reverted changes.
9459
9460 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9461
9462         * verify.c: Reapplied more of the reverted changes.
9463
9464 2008-06-09  Martin Baulig  <martin@ximian.com>
9465
9466         * debug-mono-symfile.c (load_symfile): Check the major version
9467         first; if it's wrong, don't print the minor version in the error message.
9468
9469 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9470
9471         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
9472         lock instead of the domain lock to avoid deadlocks, since the thread might
9473         already hold the loader lock.
9474
9475         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
9476         (mono_thread_attach): Ditto.
9477
9478         * monitor.c: Use a TLS variable for holding the current thread id instead
9479         of calling pthread_self ().
9480         (mono_monitor_init_tls): New internal function to initialize the TLS
9481         variable.
9482         (mono_monitor_try_enter_internal): Put the owner == id check after the
9483         owner == 0 check.
9484
9485         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
9486         missed optimizations when using gcc-4.3.
9487
9488 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
9489
9490         * reflection.c (mono_dynamic_image_free): Free the memory
9491         used by MonoGenericParam in MonoDynamicImage::gen_param.
9492
9493         * reflection.c (mono_reflection_setup_generic_class): Allocate
9494         container from mempool.
9495
9496         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
9497         container from mempool.
9498
9499 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9500
9501         * threads.c (mono_set_pending_exception): New internal function to set the
9502         pending exception of the current thread.
9503         (mono_thread_get_and_clear_pending_exception): Check for 
9504         thread->pending_exception as well.
9505
9506         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
9507
9508         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
9509         it can trigger a collection.
9510
9511 2008-06-06  Martin Baulig  <martin@ximian.com>
9512
9513         Merged the `debugger-kahalo' branch.
9514
9515         * mono-debug.h
9516         (MONO_DEBUGGER_VERSION): Bumped to 72.
9517
9518         * debug-mono-symfile.h
9519         (MonoSymbolFileMethodIndexEntry): Removed.
9520         (MonoSymbolFileMethodEntry): New public typedef.
9521         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
9522         (MonoSymbolFileSourceEntry): Remove everything except `index' and
9523         `data_offset'.
9524         (MonoSymbolFileMethodEntry): Removed.
9525         (MonoSymbolFileLexicalBlockEntry): Removed.
9526         (MonoSymbolFileLineNumberEntry): Removed.
9527         (MonoDebugLexicalBlockEntry): Removed.
9528         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
9529         removed `num_il_offsets' and `il_offsets'.
9530         (MonoSymbolFile): Replace `version' with `major_version' and
9531         `minor_version'.
9532         (MONO_SYMBOL_FILE_VERSION): Replace with
9533         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
9534         `MONO_SYMBOL_FILE_MINOR_VERSION'.
9535
9536         * debug-mono-symfile.c
9537         (mono_debug_symfile_lookup_location): Add support for the new line
9538         number table format.
9539
9540 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9541
9542         * metadata.c (free_generic_class): Release the inflated
9543         MonoClass of dynamic generic classes if it's not a generic
9544         type definition.
9545
9546 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9547
9548         * verify.c: Reapplied more of the reverted changes.
9549
9550 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9551
9552         * reflection.c (lookup_custom_attr): Clean the cached flag or
9553         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
9554         for SRE types.
9555
9556 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9557
9558         * verify.c: Reapplied a small part of the reverted changes.
9559
9560 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9561
9562         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9563
9564         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
9565         previously in managed code.
9566         (mono_monitor_exit): Ditto.
9567         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
9568
9569         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
9570         the managed definition.
9571
9572 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9573
9574         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
9575
9576 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9577
9578         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
9579         
9580         * monitor.c: Add some micro optimizations.
9581
9582         * icall.c (type_from_typename): Handle 'bool'.
9583
9584 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9585
9586         * verify.c: Implement constructor verification per P III 1.8.1.4.
9587         Fixes #396716.
9588
9589 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9590
9591         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
9592         holding the assemblies lock here too.
9593
9594 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9595
9596         * verify.c: Kill stack_top function.
9597
9598 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9599
9600         * verify.c: Kill stack_get function.
9601
9602 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9603
9604         * verify.c (mono_method_verify): Last change broke the build. Fixed.
9605
9606 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9607
9608         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
9609         more reliable.
9610
9611         * verify.c (mono_method_verify): Inflate params and locals to avoid
9612         mismatch when checking for compatibility.
9613
9614 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
9615
9616         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
9617         Length prefix should be size in bytes. Fix bug #339530.
9618         
9619         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
9620         Length prefix should be size in bytes. Fix bug #339530.
9621
9622         Code is contributed under MIT/X11 license.
9623
9624 2008-06-05  Bill Holmes <billholmes54@gmail.com>
9625
9626         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
9627
9628         Contributed under MIT/X11 license.
9629
9630 2008-06-05  Martin Baulig  <martin@ximian.com>
9631
9632         * mono-debug-debugger.c
9633         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
9634
9635 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
9636
9637         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
9638         while holding the assemblies lock to prevent deadlocks. Handle the case
9639         where the search hook returns NULL but the assembly was still loaded.
9640         Fixes #323696.
9641
9642         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
9643         modify domain state.
9644
9645 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
9646
9647         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
9648         * Makefile.am (pedump_LDADD): Post-process object files and
9649         add dtrace-generated object file, if necessary.
9650
9651         Code is contributed under MIT/X11 license.
9652
9653 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9654
9655         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
9656
9657 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9658
9659         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
9660
9661 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9662
9663         * threads.c: Try to free everything from the delayed free table
9664         when shutting down threads, and set the variable to NULL after the
9665         table is freed so that calling
9666         mono_thread_hazardous_try_free_all() when shutting down the root
9667         domain doesn't crash.
9668
9669 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9670
9671         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
9672         the caller if resulting type was inflated.
9673
9674         * class.c (mono_class_create_from_typespec): Free the MonoType if it
9675         was inflated.
9676
9677         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
9678
9679
9680 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
9681
9682         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
9683         class library tests.
9684
9685         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
9686         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
9687         #396989.
9688
9689 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9690
9691         * domain.c, domain-internals.h: The JIT infos are now freed by the
9692         JIT info table code.  They are freed immediately if there only a
9693         single JIT info table in circulation.  If there is more, the free
9694         is delayed via a queue.
9695
9696         * threads.c, threads-types.h: New hazard pointer function for
9697         freeing all freeable delayed items in one sitting.
9698
9699 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9700
9701         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
9702
9703         * reflection.c (typebuilder_setup_properties): Same.
9704
9705         * reflection.c (typebuilder_setup_events): Same.
9706
9707 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9708
9709         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
9710         and use it for allocating memory.
9711
9712         * reflection.c (mono_marshal_spec_from_builder): Same.
9713
9714         * reflection.c: Change code to use new signatures.
9715
9716         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
9717
9718 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9719
9720         * decimal.c (rescale128): Put back one line which was accidently commented
9721         out.
9722         
9723         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
9724         to cause crashes.
9725
9726 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9727
9728         * reflection.c (mono_reflection_generic_class_initialize): Name must
9729         be always malloc'ed so we can free it later on. Do this for field, property
9730         and event.
9731
9732         * metadata.c (free_generic_class): Free field, property and event names.
9733
9734 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9735
9736         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
9737         instead of g_memdup.
9738
9739         * reflection.c (typebuilder_setup_fields): Same.
9740
9741 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9742
9743         * decimal.c (rescale128): Optimize this function a bit more.
9744
9745 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9746
9747         * metadata.c (free_generic_class): Release some memory from
9748         SRE generic classes.
9749
9750 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9751
9752         * reflection.c (mono_image_get_generic_field_token): No reference
9753         to name is kept, free it.
9754
9755         * reflection.c (mono_reflection_generic_class_initialize): Free
9756         more memory of the inflated field.
9757
9758 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9759
9760         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
9761         code.
9762
9763 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9764
9765         * reflection.c (mono_dynamic_image_free): Release memory used by
9766         MonoDynamicImage::array_methods elements.
9767
9768         * reflection.c (assembly_add_win32_resources): Release memory after
9769         encoding.
9770
9771 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9772
9773         * decimal.c (log2_32): Use an optimized version for this function too.
9774         
9775         * decimal.c (log2_64): Fix this on 32 bit machines.
9776
9777 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9778
9779         * class.c (mono_dup_array_type): Implement allocation using a mempool.
9780
9781         * class.c (mono_metadata_signature_deep_dup): Same.
9782
9783         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
9784         a mempool.
9785
9786         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
9787
9788         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
9789
9790         * metadata-internals.h: Added mono_metadata_signature_dup_full.
9791
9792         * class-internals.h: Update signatures to take a MonoMemPool.
9793
9794 2008-06-02  Dick Porter  <dick@ximian.com>
9795
9796         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
9797         * icall-def.h: Add
9798         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
9799         FormatMessage API to get the error text.  Fixes bug 321827.
9800
9801 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9802
9803         * decimal.c: Add some micro optimizations to make decimal operations faster.
9804
9805 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
9806
9807         * reflection.c (method_encode_clauses): Take a mempool
9808         as parameter and use it to allocate the clause array.
9809
9810         * reflection.c (mono_image_get_field_on_inst_token): Free
9811         the inflated type after encoding it.
9812
9813         * reflection.c (mono_dynamic_image_free): Free each element
9814         of MonoDynamicImage::gen_params.
9815
9816         * reflection.c (reflection_methodbuilder_to_mono_method):
9817         Allocate the generic param array from the mempool.
9818         Allocate signature params from the mempool.
9819
9820         * reflection.c (mono_reflection_generic_class_initialize):
9821         Free inflated fields after been used.
9822
9823 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9824
9825         * icall.c: Reapply the memory leak fixes as they no
9826         longer make mono crash.
9827
9828 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9829
9830         * reflection.c (mono_type_get_object): Don't store the suplied
9831         MonoType with type_hash. A caller which pass a type that
9832         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
9833         might end with a pointer to freed memory.
9834         The solution is to use byval_arg or this_arg from the associated
9835         MonoClass of the supplied type.
9836
9837 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9838
9839         * icall.c: Revert the rest of the last change as it breaks the build too.
9840
9841 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9842
9843         * icall.c: Revert a leak fix as it's breaking the build.
9844
9845 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9846
9847         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9848
9849 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9850
9851         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9852
9853 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9854
9855         * icall.c: Fix some memory leaks.
9856
9857 2008-05-29  Dick Porter  <dick@ximian.com>
9858
9859         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9860         async socket operations from the pending list when a socket
9861         closes.  Leaving it until the threadpool services the event
9862         exposes a race condition when a socket descriptor is reused.
9863         Fixes bug 377589.
9864
9865 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9866
9867         * object.c: Fix negative index check for array alocation.
9868
9869 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9870
9871         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9872         This check is performed by the verifier for IL created delegates
9873         and by Delegate::CreateDelegate for programatically created ones.
9874         Fixes #372406.
9875
9876 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9877
9878         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9879         Fix code to use mono_array_size_t instead of int.
9880
9881         Based on patch by Luis F. Ortiz.
9882         Contributed under X11 license.
9883         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9884
9885 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9886
9887         * icall.c: Added ves_icall_System_Array_GetLongLength and
9888         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9889         arrays.
9890
9891         * icall.h: Export both new functions.
9892
9893         Based on patch by Luis F. Ortiz.
9894         Contributed under X11 license.
9895         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9896
9897 2008-05-28  Martin Baulig  <martin@ximian.com>
9898
9899         The debugger now requires exactly r103463.
9900
9901         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9902         This version is not supported by the debugger, wait for 72.
9903
9904 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9905
9906         * object.h: Changed array related functions to use
9907         mono_array_size_t instead of guint32. Forgot to commit this file.
9908
9909         Patch by Luis F. Ortiz.
9910         Contributed under X11 license.
9911         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9912
9913
9914 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9915
9916         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9917         don't define it. Use the number literal instead.
9918
9919 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9920
9921         * icall.c: Changed array related functions to use
9922         mono_array_size_t instead of guint32.
9923
9924         * icall.c (ves_icall_System_Array_GetLength): Check for length
9925         overflow under MONO_BIG_ARRAYS.
9926
9927         Based on patch by Luis F. Ortiz.
9928         Contributed under X11 license.
9929         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9930
9931 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9932
9933         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9934
9935         Based on patch by Luis F. Ortiz.
9936         Contributed under X11 license.
9937         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9938
9939 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9940
9941         * object.c, object.h: Changed array related functions to use
9942         mono_array_size_t instead of guint32.
9943
9944         Patch by Luis F. Ortiz.
9945         Contributed under X11 license.
9946         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9947
9948 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9949
9950         * object.h: Introduced mono_array_size_t typedef. This must be used
9951         in all places an array length is expected. This is 64bits wide if
9952         MONO_BIG_ARRAYS is enabled.
9953
9954         Patch by Luis F. Ortiz.
9955         Contributed under X11 license.
9956         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9957
9958 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9959
9960         * security-manager.c class.c: Set the class exception info by calling
9961         mono_class_set_failure ().
9962
9963         * class.c (mono_class_get_exception_data): New accessor function.
9964         (mono_class_set_failure): Store exception_data in the property hash.
9965
9966         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9967         the struct as a property.
9968
9969         * loader.c (mono_get_method_full): Store the lookup result for method
9970         tokens in method_cache, the others in methodref_cache to decrease the memory
9971         usage of hash tables.
9972
9973         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9974         (mono_image_init): method_cache is lazy inited now.
9975
9976         * metadata-internals.h (struct _MonoImage): Change method_cache to
9977         a MonoValueHashTable, add a separate methodref_cache.
9978
9979 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9980
9981         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9982           Double.ToString as exposed by Bug #383531.
9983
9984 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9985
9986         * number-formatter.h: Make some tables static.
9987
9988         * class.c (mono_method_set_generic_container): New accessor function.
9989         (mono_method_get_generic_container): Ditto.
9990
9991         * class-internals.h (struct _MonoMethod): Remove rarely used 
9992         'generic_container' field, store it in the property hash instead. Add 
9993         'is_generic' boolean field instead.
9994
9995         * image.c (mono_image_init): Initialize property_hash.
9996         (mono_image_close): Destroy property_hash.
9997
9998         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9999         hold rarely used fields of runtime structures belonging to this image.
10000
10001         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
10002         to get/set method->generic_container.
10003
10004         * loader.c (mono_get_method_from_token): Avoid loading the method header for
10005         generic methods.
10006
10007 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
10008
10009         * class.c (mono_class_inflate_generic_method_full): Don't increase
10010         mono_stats.inflated_method_count for methods found in the cache.
10011
10012         * threads.c (mono_thread_request_interruption): Add a comment about 
10013         QueueUserAPC ().
10014
10015 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
10016
10017         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
10018         interface_offsets_packed table.
10019         
10020         * class.c (mono_class_init): Remove some dead code.
10021
10022         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
10023         mono_class_setup_vtable () when CAS is active to detect security problems.
10024
10025 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
10026
10027         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
10028
10029         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
10030         parameters as it's irrelevant for delegate checking.
10031
10032 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
10033
10034         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
10035
10036         * class.c (mono_class_init): Control the creation of a generic vtable using
10037         a global which is true by default, but set to false by the runtime startup code.
10038         
10039         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
10040         Disabled for now since it breaks the embedding API.
10041         Move the setup of class->methods for arrays to mono_class_setup_methods ().
10042         (mono_class_setup_methods): Add a memory barrier.
10043
10044         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
10045         when mono_class_init () doesn't compute the generic vtable.
10046         
10047 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
10048         * profiler.c: Added mono_profiler_install_statistical_call_chain,
10049         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
10050         to support call chains (backtrace) in the stat profiler.
10051         * profiler.c, profiler-private.h: Likewise.
10052
10053 2008-05-22  Mark Probst  <mark.probst@gmail.com>
10054
10055         * generic-sharing.c: Init generic class when a method of it is
10056         requested via a runtime generic context.
10057
10058 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
10059
10060         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
10061
10062         * reflection.c (mono_type_get_object): Add a FIXME.
10063
10064         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
10065
10066         * class.c (mono_class_get_method_by_index): New helper function, returning an
10067         entry in the class->methods array.
10068
10069 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10070
10071         * class.c (mono_class_init): Only do the array optimization for szarrays. 
10072         Avoid creating a generic vtable for generic instances as well.
10073         (mono_class_get_method_from_name_flags): Don't search in the metadata for
10074         generic instances.
10075
10076 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
10077
10078         * loader.c (mono_get_method_constrained): Inflate the signature
10079         with class context. Fix #325283.
10080
10081 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10082
10083         * object.c (mono_class_create_runtime_vtable): Add a comment.
10084
10085         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
10086         where needed.
10087         (setup_interface_offsets): Handle the case when this is called twice for arrays.
10088         (mono_class_setup_vtable_general): Add an assert.
10089         (mono_class_init): Avoid creating a generic vtable for arrays.
10090
10091         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
10092         here, let mono_class_init () do that.
10093
10094         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
10095         interfaces in mscorlib.
10096
10097         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
10098         interfaces. Add some comments.
10099         (mono_class_init): Call mono_class_setup_methods () here since it is no
10100         longer called by mono_class_setup_vtable ().
10101
10102         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
10103         not set in class->vtable.
10104         (mono_class_create_runtime_vtable): Reenable the disabled code.
10105
10106         * object.c (mono_class_create_runtime_vtable): Disable the last change for
10107         now as it causes some test failures.
10108
10109         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
10110         if using the vtable trampoline. Also remove some strange code which put the
10111         generic methods themselves into the vtable slots. Remove the AOT init_vtable
10112         stuff as it is no longer needed.
10113
10114 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
10115
10116         * pedump.c: Give make --verify all option check code as well.
10117         Using --verify code won't check for metadata now.
10118
10119 2008-05-19  Martin Baulig  <martin@ximian.com>
10120
10121         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
10122
10123         * mono-debug.c
10124         (_mono_debug_using_mono_debugger): New global variable; it's set
10125         directly by the debugger, so mono_debug_using_mono_debugger() also
10126         works after attaching.
10127
10128 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
10129
10130         * object.c (mono_class_create_runtime_vtable): Use memory barriers
10131         as we do double checked locking on MonoClass::runtime_info and
10132         MonoClassRuntimeInfo::domain_vtables.
10133
10134 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
10135
10136         * debug-helpers.c (print_field_value): Fix a warning.
10137
10138 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
10139
10140         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
10141         set in the AOT case.
10142
10143 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
10144
10145         * class.c (mono_class_setup_vtable_general): Use memory barriers
10146         as we do double checked locking on MonoClass::vtable.
10147
10148 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
10149
10150         * reflection.c (resolve_object): Inflate only if the generic context
10151         is not null. Fixes #389886.
10152
10153 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
10154
10155         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
10156         instead of g_free.
10157
10158         Code is contributed under MIT/X11 license.
10159
10160 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
10161
10162         * class.c: Revert unrelated change.
10163
10164 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
10165
10166         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
10167         a generic instantiation, use mono_class_from_mono_type instead of playing
10168         with MonoType directly.
10169
10170 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
10171
10172         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
10173         checks must ignore generic instantiations, so mono_class_has_parent is not
10174         suitable. Fixes #390128.
10175
10176 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
10177
10178         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
10179         it to avoid registering tokens during metadata generation. Fixes #390023.
10180
10181 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
10182
10183         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
10184         consistent.
10185
10186         Contributed under MIT/X11 license.
10187
10188 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
10189
10190         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
10191         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
10192         to fixup the EXE image.
10193         (mono_cleanup): Use mono_close_exe_image.
10194         (mono_close_exe_image): New function.
10195         * image.c: Include "marshal.h".
10196         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
10197         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
10198         counting when the image is loaded outside of mono_image_open_full. Set status
10199         based on GetLastError.
10200         * coree.c: Include required headers. Add init_from_coree.
10201         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
10202         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
10203         (_CorExeMain): Set init_from_coree.
10204         (CorExitProcess): Only call ExitProcess for now.
10205         (CorBindToRuntimeEx): New stub implementation.
10206         (CorBindToRuntime): New function.
10207         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
10208         (MonoFixupExe): ILONLY executables require no fixups.
10209         (mono_set_act_ctx): New function to set activation context.
10210         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
10211         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
10212         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
10213         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
10214         as MONO_INTERNAL.
10215         * domain-internals.h: Add mono_close_exe_image.
10216
10217         Contributed under MIT/X11 license.
10218
10219 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
10220
10221         * metadata.c (mono_metadata_compute_size): Correctly calculate field
10222         size for generic param and event tables. Fixes #388977.
10223
10224 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
10225
10226         * loader.c (mono_method_signature): Use memory barriers because of the double
10227         checked locking pattern.
10228
10229         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
10230         aborting or aborted as well. Fixes #376391.
10231         
10232         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
10233         existing runtime state in the Suspend handler during shutdown.
10234
10235 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
10236
10237         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
10238
10239         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
10240         which are starting up or shutting down.
10241
10242         * threads.c (mono_threads_set_shutting_down): Don't return a value since
10243         this function never returns if the runtime is already shutting down.
10244
10245         * icall.c (ves_icall_System_Environment_Exit): Update after 
10246         mono_threads_set_shutting_down () signature change.
10247         
10248 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
10249
10250         * class.c: Added can_access_instantiation to verify if the instantiation
10251         is visible. Fix access check for nested types as they returned TRUE
10252         before doing type and generic instantiation visibility checks.
10253
10254 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
10255
10256         * reflection.c (mono_reflection_create_generic_class): The created type
10257         must have a different container from its TypeBuilder. Otherwise they
10258         will end sharing generic arguments, which is wrong.
10259
10260         Due to the sharing, making a generic instance of the created type using
10261         the TypeBuider generic arguments resulted in the generic type definition
10262         been returned, which is wrong as well.
10263
10264         As a bonus the code was leaking the type_params array. This memory should
10265         be allocated from the image mempool.
10266
10267         This fixes bug #354047.
10268
10269 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
10270
10271         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
10272         to here         as they are now used in assembly.c new code.
10273         Added a skipverification flag to MonoAssembly.
10274         New internal function mono_assembly_has_skip_verification.
10275
10276         * assembly.c: New function mono_assembly_has_skip_verification. It checks
10277         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
10278         part of #387274.
10279
10280 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10281
10282         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
10283         needed. Fixes #387034.
10284
10285         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
10286
10287 2008-05-06  Miguel de Icaza  <miguel@novell.com>
10288
10289         * assembly.c (mono_assembly_load_reference): Prevent crash while
10290         disassembling Silverlight 2.0 executables while we still do not
10291         have GACed libraries.
10292
10293 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10294
10295         * reflection.c: Special case generic type definitions as well. Fixes #383444.
10296
10297 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
10298
10299         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
10300         of the dynamic case. Fixes #387404.
10301
10302 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10303
10304         *verify.c (mono_verifier_is_class_full_trust): If under
10305         verify_all and the verifier mode was not set, only
10306         gac and corlib types are fulltrust. This makes --verify-all
10307         usable to detect unverifiable code, which is the expected
10308         use case.
10309
10310 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10311
10312         * verify.h: Ops, commited the header with debug
10313         enabled.
10314
10315 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10316
10317         * verify.c (merge_stack): Use the new value on unverifiable
10318         stack merges.
10319
10320         * verify.c (verify_type_compatibility_full): Comparison
10321         of nullable types can't use mono_class_is_assignable_from.
10322
10323         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
10324         that makes all verification errors be reported.
10325
10326         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
10327         mono_method_verify.
10328
10329 2008-05-05  Robert Jordan  <robertj@gmx.net>
10330
10331         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
10332         support for value types. See #386415.
10333
10334         * object.c: comments.
10335
10336         Code is contributed under MIT/X11 license.
10337
10338 2008-05-05  Martin Baulig  <martin@ximian.com>
10339
10340         * debug-mono-symfile.h
10341         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
10342         for old pre-terrania symbol files.
10343
10344 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10345
10346         * mono-config.c: Add ppc64 architecture.
10347
10348         Code is contributed under MIT/X11 license.
10349
10350 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10351
10352         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
10353           PPC64 uses function descriptors as well.
10354
10355         Code is contributed under MIT/X11 license.
10356
10357 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
10358
10359         * object.c (compute_class_bitmap): Ignore literal static fields.
10360
10361         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
10362         var has an invalid format.
10363         (describe_ptr): Add some sanity checks for the vtable.
10364         (add_nursery_frag): Clear unused nursery fragments.
10365         (major_collection): Clear all remaining nursery fragments.
10366
10367 2008-05-03  Robert Jordan  <robertj@gmx.net>
10368
10369         * image.c, metadata-internals.h: add thunk_invoke_cache.
10370
10371         * marshal.c, marshal.h: implement
10372         mono_marshal_get_thunk_invoke_wrapper ().
10373
10374         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
10375
10376         Code is contributed under MIT/X11 license.
10377
10378 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10379
10380         * verify.c (do_leave): Empty the stack.
10381
10382 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10383
10384         * class.c (mono_class_is_assignable_from): Variance
10385         doesn't work between reference and value types. For example,
10386         given type C<T+>, C<int32> is not assignable to C<object>.
10387         Break the argument checking loop on first error. 
10388
10389 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
10390
10391         * icall.c : base64_to_byte_array() needs some more strict
10392           check for sequence of '=' characters. Patch by Santa
10393           Marta (http://deee.g.hatena.ne.jp/santamarta).
10394
10395           Contributed under MIT/X11 license.
10396           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
10397
10398 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
10399
10400         * domain.c: Disable LoadLibrary support to fix Win32 build.
10401
10402         Code is contributed under MIT/X11 license.
10403
10404 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
10405
10406         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
10407         to help with cache behaviour.
10408
10409 2008-05-01  Miguel de Icaza  <miguel@novell.com>
10410
10411         * appdomain.c (mono_domain_from_appdomain): Add new accessor
10412         method. 
10413
10414 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
10415
10416         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
10417
10418 2008-05-01  Dick Porter  <dick@ximian.com>
10419
10420         * process.c (process_get_fileversion): Only pass 16 bits of
10421         language ID to VerLanguageName.  Fixes bug 381204.
10422
10423 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10424
10425         * verify.c (mono_method_verify): Fix the comparison
10426         operator for code bounds check.
10427
10428 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10429
10430         * verify.c (mono_method_verify): Check the bounds of
10431         all access of the code array.
10432
10433 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
10434
10435         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
10436
10437 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
10438
10439         * image.c (mono_image_strong_name_position): Fix return value when the rva is
10440         not valid.
10441
10442 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
10443
10444         * loader.c (mono_get_method_from_token, mono_method_signature): Add
10445         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
10446         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
10447         fixup main EXE images when using mono.exe for mixed-mode assembly support.
10448         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
10449         mono_runtime_load.
10450         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
10451         runtime initialization from metadata.
10452         * assembly.c: Remove obsolete ceGetModuleFileNameA.
10453         (mono_set_rootdir): Use mono_get_module_file_name.
10454         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
10455         handles.
10456         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
10457         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
10458         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
10459         MonoCLIImageInfo. Add support for module handles.
10460         (load_cli_header): Update mono_cli_rva_image_map signature.
10461         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
10462         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
10463         (mono_image_rva_map): Add support for module handles.
10464         (mono_image_ensure_section_idx): Add support for module handles.
10465         (mono_image_close): Add support for module handles.
10466         (do_load_header): Add support for module handles.
10467         (mono_image_open_from_module_handle): New function for internal use.
10468         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
10469         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
10470         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
10471         handles.
10472         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
10473         * image.h: Add mono_image_fixup_vtable.
10474         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
10475         support.
10476         * coree.h: New file.
10477         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
10478         unsupported native code.
10479         (mono_marshal_set_callconv_from_modopt): New function splitted from
10480         mono_marshal_get_managed_wrapper.
10481         (mono_marshal_get_managed_wrapper): Use
10482         mono_marshal_set_callconv_from_modopt.
10483         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
10484         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
10485         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
10486         that results in a deadlock when the runtime is loaded in _CorDllMain.
10487         * Makefile.am: Add coree.c and coree.h.
10488
10489         Contributed under MIT/X11 license.
10490
10491 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10492
10493         * generic-sharing.c: Search for type arguments in array element
10494         types as well.
10495
10496 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10497
10498         * class-internals.h, generic-sharing.c: New, small runtime generic context.
10499
10500         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
10501
10502         * object.c: Don't setup the RGCTX when the vtable is created,
10503         because we're setting it up lazily now.
10504
10505 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
10506
10507         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
10508         64 bit support.
10509
10510 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10511
10512         * verify.c (verify_class_for_overlapping_reference_fields): 
10513         If class is under fulltrust allow reference types to overllap
10514         if they have the same RVA.
10515
10516 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10517
10518         * pedump.c: Added new flag valid-only, that makes the verifier
10519         behaves just like --security=validil. It won't fail type load
10520         due to unverifiable restrictions.
10521
10522 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10523
10524         * class-internals.h (struct MonoMethod): Added a verification_success
10525         field to cache verifier executions. Reduced MonoMethod:slot size by
10526         one bit.
10527
10528 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
10529
10530         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
10531         instead of a 'vt' argument to save an indirection and to allow these to be used
10532         for valuetypes.
10533         (scan_vtype): New helper function to scan an area using a gc descriptor.
10534         (mono_gc_wbarrier_value_copy): Implement this.
10535         (handle_remset): Add support for REMSET_VTYPE.
10536         (find_in_remset_loc): Ditto.
10537         (mono_gc_base_init): Allow some debugging options to be controlled through the
10538         use of the MONO_GC_DEBUG env variable.
10539         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
10540         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
10541
10542 2008-04-23  Martin Baulig  <martin@ximian.com>
10543
10544         * domain.c (mono_domain_create): Move the call to
10545         mono_debug_domain_create() down, after allocating the domain id.
10546
10547 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10548
10549         verify.c (verify_class_for_overlapping_reference_fields): Skip
10550         static fields while verifying for overlapping fields as they
10551         don't matter at all.
10552
10553 2008-04-23  Marek Habersack  <mhabersack@novell.com>
10554
10555         * domain-internals.h: added a declaration of
10556         mono_make_shadow_copy.
10557
10558         * assembly.c (mono_assembly_open_full): shadow copying of
10559         assemblies moved to here, so that all the assemblies within the
10560         application domain's private binary directories can be
10561         processed. Fixes bug #380546
10562
10563         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
10564         mono_make_shadow_copy and made non-static. The decision whether
10565         to shadow-copy an assembly is made based on its location - it's
10566         copied if it's in one of the private application domain binary
10567         directories and its different to the target file in the shadow
10568         directory. Fixes bug #380546
10569
10570 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
10571
10572         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
10573
10574         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
10575         types.
10576
10577         * reflection.c (mono_image_create_token): Handle 
10578         Method/ConstructorOnTypeBuilderInst.
10579         (resolve_object): Ditto.
10580         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
10581         so it can be called from resolve_object. Also handle the case when the inflated
10582         class already has its methods setup.
10583
10584 2008-04-21  Martin Baulig  <martin@ximian.com>
10585
10586         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
10587
10588 2008-04-20  Geoff Norton  <gnorton@novell.com>
10589
10590         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
10591         pointer dereference.
10592
10593 2008-04-15  Marek Habersack  <mhabersack@novell.com>
10594
10595         * appdomain.c (try_load_from): if IOMAP is in effect, call the
10596         portability API to look up the assembly file. Fixes behavior in
10597         situations when the application has a bin/ directory, but the
10598         assembly search patch refers to Bin/ (and thus the requested file
10599         name is Bin/SomeLibrary.dll). Fixes bug #379888
10600
10601 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
10602
10603         verify.c (mono_type_is_generic_argument): Extracted this check
10604         from a dozen places to here.
10605
10606         verify.c: Fixed all issues related to boxing generic arguments
10607         and their constraints.
10608
10609 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
10610
10611         verify.c (mono_class_interface_implements_interface): Fix win32 build.
10612
10613 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
10614
10615         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
10616         isn't finished yet. Fixes #363447.
10617
10618 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
10619
10620         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
10621         Fixes #346419.
10622
10623 2008-04-13  Jb Evain  <jbevain@novell.com>
10624
10625         * domain.c: update the 2.1 profile versions.
10626         Merged from the Moonlight 2 branch.
10627
10628 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
10629
10630         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
10631         mscorlibs for the non-refonly case as well.
10632
10633         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
10634         in mono_assembly_load_from_full (). Fixes #378924.
10635
10636 2008-04-11  Geoff Norton  <gnorton@novell.com>
10637
10638         * icall.c: The global extern environ doesn't exist on Mac.  We
10639         need to call NSGetEnviron instead.
10640
10641 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10642
10643         verify.c: Add generic method constraint verification.
10644
10645 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10646
10647         class.c (mono_class_inflate_generic_method_full): Add a long
10648         explanation to the is_mb_open hack. Remove the FIXME.
10649
10650 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10651
10652         * verify.c (mono_method_verify): Mark all unknown opcodes
10653         as invalid. Mark jmp as unverifiable.
10654
10655 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10656
10657         * verify.c: Add code to do type constraint verification on class instances.
10658
10659         * verify.c (mono_verifier_verify_class): Use the type constraint 
10660         verification code.
10661
10662 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10663
10664         * class.c (mono_class_get_field_default_value): Don't pass cindex
10665         as hint to mono_metadata_get_constant_index. The local is not initialized
10666         and should contain garbage most of the time. This could only work
10667         with a lot of luck.
10668
10669 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10670
10671         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
10672
10673 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10674
10675         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
10676
10677         * class.c (mono_class_from_generic_parameter): Save the token of the
10678         generic param in MonoClass::sizes.generic_param_token.
10679
10680         * reflection.c (mono_custom_attrs_from_class): If the class type is
10681         VAR or MVAR retrieve the attributes of the generic param.
10682
10683 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10684
10685         * class.c (mono_class_init): Do class verification if the verifier
10686         is enabled.
10687
10688 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10689
10690         * verify-internal.h: Added mono_verifier_verify_class.
10691
10692         * verify.c: Added mono_verifier_verify_class. It checks for
10693         classes with explicit layout that have overlapping reference fields.
10694
10695         * pedump.c: Init the verifier state prior to verification. Fixed
10696         command line arguments.
10697
10698 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10699
10700         * Makefile.am: Added verify-internals.h, hopefully fix the build.
10701
10702 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10703
10704         * verify-internals.h: Fix a warning.
10705
10706 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10707
10708         * verify-internals.h: New header with the verifier configuration
10709         extracted from mini.c.
10710
10711         * verify.c: Implemented the new functions exported by verify-internals.h.
10712
10713 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10714
10715         * verify.c: Add proper verification of ckfinite.
10716
10717 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10718
10719         * verify.c (do_conversion): Improved error message to something
10720         more meanfull.
10721
10722         * verify.c (check_is_valid_type_for_field_ops): Fix to work
10723         with primitive types.
10724
10725 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10726
10727         * verify.c: Added tail prefix checking. Marked icall
10728         as unverifible.
10729
10730 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10731
10732         * verify.c: Fix the detection of branches to the middle
10733         of an instruction.
10734
10735 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
10736
10737         * verify.c: Implemented verification of volatile. and
10738         unaligned. prefix. Check if a type is valid after retrieving it.
10739
10740 2008-04-01  Dick Porter  <dick@ximian.com>
10741
10742         * process.c (process_get_fileversion): If there's no string block,
10743         set the file language to en_US.  Fixes the other new part of bug
10744         374600.
10745
10746 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
10747
10748         * class.c: New functions mono_method_can_access_field_full and
10749         mono_method_can_access_method_full. They perform type visibility
10750         and type site check.
10751
10752         * class-internal.h: Added exported functions.
10753
10754         * verify.c: Use new functions to implement proper visibility checks.
10755
10756 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
10757
10758         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
10759
10760 2008-03-28  Dick Porter  <dick@ximian.com>
10761
10762         * process.c (process_get_fileversion): Use the first language ID
10763         we see, rather than insisting on an invariant language.  Fixes bug
10764         374600.
10765
10766 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
10767
10768         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
10769         the streams to fix reading of invalid memory later.
10770
10771         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
10772         to ease debugging.
10773
10774 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
10775
10776         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
10777         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
10778
10779 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
10780         * threads.h: Added MonoThreadManageCallback type and
10781         mono_thread_set_manage_callback prototype
10782         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
10783         (used to store the mono_thread_manage callback).
10784         * threads.c: Added mono_thread_set_manage_callback, and handle
10785         "MonoThread->manage_callback" in build_wait_tids.
10786
10787 2008-03-26  Dick Porter  <dick@ximian.com>
10788
10789         * process.c (process_get_fileversion): Set FileVersionInfo strings
10790         to Empty when the resource doesn't have the particular info.
10791         Fixes bug 355717.
10792
10793 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
10794
10795         * verify.c (mono_method_verify): Proper prefix validation.
10796
10797 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10798
10799         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
10800         itself in a separate argument instead of throwing them. Fixes #373448.
10801
10802         * appdomain.c: Bump corlib version.
10803
10804 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
10805
10806         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
10807
10808 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
10809
10810         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
10811         version macros.
10812
10813 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10814
10815         * generic-sharing.c, class-internals.h: Code for putting
10816         reflection types into the runtime generic context.
10817
10818 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
10819
10820         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
10821         Fixes #340662. 
10822
10823
10824 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
10825
10826         * verify.c (VerifyContext): Added instruction prefix data to the struct.
10827
10828         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
10829
10830         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
10831
10832         * verify.c (do_cast): Let the result value keep the boxed status.
10833
10834         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10835
10836 2008-03-17  Jb Evain  <jbevain@novell.com>
10837
10838         * reflection.c: when running on a 2.0 runtime, emit
10839         unconditionally the #~ header version as 2.0, and the
10840         CLI header version as 2.5, for symmetry's sake with csc.
10841
10842 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10843
10844         * class.c: Remove the unused cache_interface_offsets stuff.
10845
10846         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10847         profiler.c: Fix warnings.
10848
10849 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10850
10851         * generic-sharing.c, class-internals.h: Support for putting
10852         methods into the runtime generic context.
10853
10854 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10855
10856         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10857         classes which are generic instances of not-yet finished typebuilders. Fixes
10858         #351172.
10859
10860         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10861
10862 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10863
10864         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10865
10866         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10867         field, replace it with a hash table in MonoDynamicImage.
10868
10869         * reflection.c (inflate_mono_method): Access the generic definition object from
10870         image->generic_def_objects instead of imethod->reflection_info.
10871
10872         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10873
10874         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10875         
10876         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10877         function in reflection.c so it is easier to keep in sync with the dynamic image
10878         creation code.
10879
10880         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10881         mono_image_close ().
10882
10883 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10884
10885         * class.c (mono_class_generic_sharing_enabled): Disable generic
10886         sharing for all architectures except AMD64 and x86 to fix build.
10887
10888 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10889
10890         * verify.c: Use the generic definition MonoGenericContext when available.
10891         Remove code for checking generics instance compatibility in favor of
10892         mono_class_is_assignable_from.
10893
10894 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10895
10896         * marshal.c, marshal.h, metadata-internals.h, image.c,
10897         wrapper-types.h: New wrapper for invoking a shared static method
10898         without having to pass the runtime generic context argument.
10899
10900 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10901
10902         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10903
10904 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10905
10906         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10907         
10908         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10909         create a token from a FieldOnTypeBuilderInst.
10910         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10911         (resolve_object): Ditto.
10912
10913         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10914         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10915
10916 2008-03-14  Martin Baulig  <martin@ximian.com>
10917
10918         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10919
10920         * debug-mono-symfile.h
10921         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10922         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10923
10924 2008-03-10  Martin Baulig  <martin@ximian.com>
10925
10926         * debug-mono-symfile.h
10927         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10928         `lexical_block_table_offset'.
10929         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10930         `lexical_blocks'.
10931         (MonoSymbolFile): Added `version'.
10932
10933         * mono-debug.h
10934         (MonoDebugLexicalBlockEntry): Removed.
10935         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10936         `lexical_blocks'.
10937
10938         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10939         blocks here; the debugger now does this internally.
10940
10941 2008-02-27  Martin Baulig  <martin@ximian.com>
10942
10943         * object.c (mono_runtime_exec_main): Call
10944         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10945         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10946
10947 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10948
10949         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10950         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10951
10952 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10953
10954         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10955         ldftn with a virtual method.
10956
10957 2008-03-13  Geoff Norton  <gnorton@novell.com>
10958
10959         * decimal.c:  Only include memory.h if the platform has it.
10960
10961 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10962
10963         * assembly.c, class.c, metadata-internals.h: make sure public key
10964         tokesns are compared in a case-insensitive way. Also, all
10965         the lookups in the GAC use a lowercase public key token
10966         (gaacutil already does the lowercasing on install). Fixes
10967         bug #369541.
10968
10969 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10970
10971         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10972         and return value.
10973
10974 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10975
10976         * image.c: when someone loads a mscorlib from a file, return the
10977         currently loaded mscorlib (fixes bug #369253).
10978
10979 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10980
10981         * class.c: handle types with no parents by forcing them to have
10982         System.Object as a parent and marking them as broken (this currently
10983         allows the first part of bug #369173 to work as well, likely because
10984         we don't check for typeload exceptions everywhere yet).
10985
10986 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10987
10988         * class.c: more complete check that types belong to corlib
10989         (fixes second part of bug #369173).
10990
10991 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10992
10993         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10994           "inline" to "__inline" before including mono-membar.h.
10995           
10996         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10997           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10998           MSVC builds.
10999
11000         Contributed under MIT/X11 license.
11001
11002 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11003
11004         * verify.c (do_invoke_method): Remove return type validation.
11005
11006         * verify.c (do_ret): Do return type validation at return site instead of
11007         call site.
11008
11009 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11010
11011         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
11012
11013         * verify.c: Some todos cleaned and improved a few error messages.
11014
11015 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
11016
11017         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
11018
11019 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
11020
11021         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
11022         system types correctly.
11023
11024         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
11025         function.
11026
11027 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11028
11029         * assembly.c (build_assembly_name): Fix a warning.
11030
11031 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
11032
11033         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
11034         the called function takes an object type argument. Fixes storing or
11035         valuetypes across remoting as well as reducing memory usage.
11036         * image.c, metadata-internals.h: remove now unused ldfld_remote and
11037         stfld_remote wrapper caches.
11038
11039 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11040
11041         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
11042         is not found.
11043
11044         * reflection.c (mono_image_register_token): New helper function to save
11045         a token->object mapping.        
11046
11047         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
11048         managed code.
11049
11050         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
11051         one dimension arrays. Fixes #367670.
11052         (mono_reflection_get_type_internal): Ditto.
11053
11054 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
11055
11056         * marshal.c: mono_load_remote_field_new() always returns object.
11057         so use the proper signature (fixes bug #366445).
11058
11059 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11060         
11061         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
11062         add an 'inline_failure' flag instead.
11063
11064 2008-03-04  Mark Probst  <mark.probst@gmail.com>
11065
11066         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
11067         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
11068         contains the location of "this", used for exception handling.
11069
11070 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11071
11072         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
11073         their size on all platforms for perf reasons.
11074
11075 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11076
11077         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
11078         object-internal.h
11079
11080         * object-internal.h: Same.
11081
11082 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11083
11084         * reflection.h: Fix the build I just broke.
11085
11086 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11087
11088         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
11089         Test if a token is valid, this remove explicit usage of 
11090         MonoDynamicImage::tokens from the verifier code.
11091
11092         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
11093
11094         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
11095         instead of direct access to MonoDynamicImage::tokens.
11096
11097 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11098
11099         * verify.c (token_bounds_check): Fix the build I just broke.
11100
11101 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11102
11103         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
11104
11105         * verify.c (verifier_load_method): Fixed the errors message.
11106
11107         * verify.c (mono_method_verify): Fixed a debug message.
11108
11109 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
11110
11111         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
11112         mono-perfcounters.h, class-internals.h: support for predefined
11113         writable counters, query of categories and counters, bugfixes.
11114
11115 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
11116
11117         * verify.c (do_refanytype): Verify the refanytype opcode.
11118
11119         * verify.c (mono_method_verify): Use do_refanytype.
11120
11121 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
11122
11123         * verify.c (do_mkrefany): Verify the mkrefany opcode.
11124
11125         * verify.c (mono_method_verify): Use do_mkrefany.
11126
11127 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
11128
11129         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
11130         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
11131         implementation.
11132
11133 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
11134
11135         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
11136         the type load exception.
11137
11138 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
11139
11140         * verify.c: Added a few FIXME for method signatures
11141
11142         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
11143         of mono_method_get_signature and get vararg call working. Removed unused
11144         checks for return value.
11145
11146         * verify.c (do_refanyval): Verify the refanyval opcode.
11147
11148         * verify.c (mono_method_verify): Implemented verification of arglist and
11149         use do_refanyval.
11150
11151 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
11152
11153         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
11154         vtypes to marshal.c.
11155
11156         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
11157         it works for AOT as well.
11158
11159 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
11160
11161         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
11162         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
11163         the system time is adjusted.
11164
11165 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
11166
11167         * icall.c, icall-def.h: use the new time functions (fixes the
11168         non-monotonic behaviour of TickCount).
11169
11170 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
11171
11172         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
11173         it breaks the build.
11174         
11175         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
11176         cattr is not finished yet.
11177
11178 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
11179
11180         * verify.c: Proper token validation for field, method and type.
11181
11182 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
11183
11184         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
11185
11186         * loader.c (method_from_memberref): Generate type load error instead of method missing
11187         if the type is not found.
11188
11189 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
11190
11191         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
11192         some of the conversions caused the generation of a marshal directive exception.
11193
11194 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
11195
11196         verify.c: Report which exception should be thrown by the JIT.
11197         Added a lot of FIXME notes.
11198
11199 2008-02-22  Mark Probst  <mark.probst@gmail.com>
11200
11201         * generic-sharing.c: Runtime generic context slots are not
11202         instantiated on init anymore.  Instead, provide function to do the
11203         instantiating on demand.
11204
11205         * class-internals.h: Added vtable to runtime generic context.
11206         Macros for encoding direct and indirect slot offsets in one
11207         guint32.
11208
11209 2008-02-21  Mark Probst  <mark.probst@gmail.com>
11210
11211         * object.c, generic-sharing.c: Moved some generic sharing code
11212         from object.c to generic-sharing.c.
11213
11214         * generic-sharing.c: Added support for extensible runtime generic
11215         context.
11216
11217         * metadata-internals.h: Two new hash tables in MonoImage for
11218         extensible runtime generic context support.
11219
11220         * domain.c: Unregister generic vtables upon domain unloading.
11221
11222         * image.c: Destroy new hash tables upon image unloading.
11223
11224         * metadata.c: Unregister generic subclasses upon image unloading.
11225
11226         * class-internals.h: New data structure for runtime generic
11227         context template.  New fields in the runtime generic context for
11228         extensible part.
11229
11230         * Makefile.am: Added generic-sharing.c.
11231
11232 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
11233
11234         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
11235         there is a pending loader exception, raise it.
11236
11237         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
11238         same.
11239
11240         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
11241         same.
11242
11243         Fixes #363450.
11244
11245 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
11246
11247         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
11248
11249         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
11250         
11251         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
11252         ref-only requests for compatibility with MS.
11253
11254 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
11255
11256         * reflection.c (mono_custom_attrs_from_method): Don't silently
11257         return an empty list for generic method instances.
11258         (mono_custom_attrs_from_param): Likewise.
11259
11260 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
11261             Raja R Harinath  <harinath@hurrynot.org>
11262
11263         Fix #354757
11264         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
11265         * class.c (mono_class_inflate_generic_method_full): Initialize it
11266         when a fully-open method is instantiated.
11267         * metadata.c (inflated_method_equal, inflated_method_hash): Update
11268         to new field.
11269         * reflection.c (inflate_mono_method): Don't create a temporary context.
11270
11271 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
11272
11273         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
11274         Compute correct value, to prepare for imethod->reflection_info going away.
11275
11276 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
11277
11278         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
11279
11280 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
11281
11282         * verify.c: Implement skip visibility flag.
11283
11284 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
11285
11286         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
11287         which contains an extra field to tell the kind of exception that should be thrown.
11288
11289         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
11290
11291 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
11292
11293         * loader.c (mono_method_get_param_names): Initialize 'klass' after
11294         'method' is updated.
11295
11296 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
11297
11298         * class.c (mono_class_layout_fields): Set class->min_align for classes using
11299         explicit layout as well. Fixes #360375.
11300
11301 2008-02-11  Geoff Norton  <gnorton@novell.com>
11302
11303         * loader.c: Guard and dereference against inflated generic methods
11304
11305 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
11306
11307         * class.c: Include Retargetable spec in assembly name.
11308         * assembly.c: Always include PublicKeyToken spec in assembly name
11309         (with value "null" if assembly is not signed), and include
11310         Retargetable spec.
11311         * icall-def.h: Added icall for Assembly.get_fullname.
11312         * icall.c: Added icall returning the fullname of an assembly.
11313
11314 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
11315
11316         * class.c (mono_class_setup_vtable_general): Add a missing call to
11317         mono_class_setup_methods () which is needed in the AOT case.
11318
11319 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
11320
11321         * verify.c (mono_type_get_stack_name): Added. Return the name for the
11322         stack type of the given MonoType.
11323
11324         * verify.c (verify_type_compatibility_full): Handle the void type.
11325
11326         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
11327         way stack merging works.
11328
11329         * verify.c (store_local): Improved verification message.
11330
11331         * verify.c (do_branch_op): If the merging is invalid, the method
11332         is unverifiable and not invalid. Improved error message.
11333
11334         * verify.c (merge_stacks): Properly merge a boxed valuetype and
11335         a reference type diferent than System.Object. Improved error
11336         message.
11337
11338 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
11339
11340         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
11341
11342         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
11343         type of an enum even if the argument is byref.
11344
11345         * verify.c: Replace all explicit uses of enumtype and enum_basetype
11346         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
11347
11348         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
11349
11350         *verify.c (verify_type_compatibility_full): Make enum types
11351         compatible with their base types.
11352
11353         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
11354         types are compatible for the special case of a boxed valuetype and
11355         System.Object.
11356
11357         * verify.c (verify_stack_type_compatibility): The function
11358         is_compatible_boxed_valuetype was extracted from here.
11359
11360         * verify.c (push_arg): Only set ctx->has_this_store if the method
11361         is not static.
11362
11363         * verify.c (do_ldelem): Fixed a typo in an error message and added
11364         strict check for mixing int32 and native int as the array type
11365         and ldelem type.
11366
11367         * verify.c (merge_stacks): Consider boxed valuetypes in the
11368         compatibility checks.
11369
11370 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
11371         * profiler.h: (MonoGCEvent): Added start-stop the world events.
11372
11373 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11374         *class.c: use_new_interface_vtable_code: renamed the env var to have
11375         a "MONO_" prefix, and fix the logic to enable it by default.
11376
11377 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11378         *class.c:
11379         mono_class_setup_vtable_general: rewrote the way in which interface
11380         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
11381         makes the code more maintainable.
11382         For now the old code is still there, and can be activated setting
11383         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
11384
11385 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
11386
11387         * verify.c: guarded some debug functions around and #ifdef.
11388
11389         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
11390
11391 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11392
11393         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
11394         changes for now since they seem to break too many things.
11395
11396 2008-02-05  Mark Probst  <mark.probst@gmail.com>
11397
11398         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
11399         mono_marshal_find_nonzero_bit_offset): Added macro and function
11400         for finding the byte- and bit-offset of a bitfield within a
11401         struct.
11402
11403 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
11404
11405         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
11406         (mono_marshal_get_struct_to_ptr): Ditto.
11407
11408         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
11409         cctor_signature.
11410
11411 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
11412
11413         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
11414         between methods for non-corlib types.
11415
11416 2008-02-02  Geoff Norton  <gnorton@novell.com>
11417
11418         * loader.c (mono_method_get_param_names): Populate the parameter name for 
11419         generic parameters as well. (Fixes #342536)
11420
11421 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
11422
11423         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
11424
11425         * verify.c (do_invoke_method): Fix for calling with byref structs.
11426
11427         * verify.c (do_cast): push a boxed value type based on the type token and not
11428         the type of stack.
11429
11430 2008-01-31  William Holmes  <billholmes54@gmail.com>
11431
11432         * process.c (process_module_string_read): Check the size returned form 
11433           VerQueryValue to avoid out of memory exception. 
11434
11435 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
11436
11437         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11438         Handle properly modules which are not in the moduleref table. Fixes
11439         #356938.
11440
11441 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
11442
11443         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
11444         the dynamic case which is now in managed code.
11445         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
11446
11447         * marshal.c (mono_string_to_bstr): Fix a warning.
11448         (init_com_provider_ms): Ditto.
11449
11450         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
11451
11452         * exception.c (mono_get_exception_out_of_memory): New helper function.
11453
11454 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
11455
11456         * marshal.c: Add support for BSTR marshalling
11457         using other COM systems.
11458
11459         Code is contributed under MIT/X11 license.
11460
11461 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11462
11463         * object.c (mono_runtime_invoke_array): reverted previous
11464         commit as it breaks the build.
11465
11466 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11467
11468         * object.c (mono_runtime_invoke_array): Verify arguments for
11469         invalid types. Fixes #348522.
11470
11471 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11472
11473         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
11474         non-final virtual calls using call. 
11475
11476         * verify.c (do_invoke): fixed some TODOs.
11477
11478         * verify.c (push_arg): set has_this_store for "ldarga 0".
11479
11480 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
11481
11482         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
11483         which belong to an inflated class. Fixes #356531.
11484
11485 2008-01-26  Robert Jordan  <robertj@gmx.net>
11486
11487         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
11488         which resort to FindFirstFile when a certain error condition
11489         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
11490         Code is contributed under MIT/X11 license.
11491
11492 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
11493
11494         * marshal.c (emit_marshal_string): Fix out string marshalling
11495         to use specified encoding. Fixes #323900.
11496
11497         Code is contributed under MIT/X11 license.
11498
11499 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
11500
11501         * class.c (mono_class_inflate_generic_method_full): Don't modify
11502         iresult->context after cache check.
11503
11504 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
11505
11506         * class.c (mono_class_inflate_generic_method_full): Change the
11507         struct assignments to memcpy for better visibility and add some comments.
11508
11509 2008-01-23  Dick Porter  <dick@ximian.com>
11510
11511         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
11512         procedure, and make it work on windows.
11513
11514 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
11515
11516         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
11517         a MonoReflectionTypeBuilder since it is always of that type.
11518
11519         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
11520
11521         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
11522
11523         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
11524         
11525         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
11526
11527         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
11528
11529         * reflection.c (mono_reflection_create_runtime_class): Remove already created
11530         instantiations from the type cache.
11531
11532 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11533
11534         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
11535
11536         * verify.c (do_unbox_value): push a controled mutability managed pointer.
11537
11538 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11539
11540         * verify.c (do_ldstr): added, verifies if the #US token is valid.
11541
11542         * verify.c (mono_method_verify): removed old TODO
11543
11544 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11545
11546         * verify.c (do_newobj): add visibility check.
11547
11548 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11549
11550         * verify.c (do_load_function_ptr): add visibility check.
11551
11552 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
11553         *class.c:
11554         mono_generic_class_get_class: hook profiler events.
11555         mono_field_get_offset: added to support heap-shot in the new profiler.
11556         *class.h: exported mono_field_get_offset.
11557         * reflection.c:
11558         mono_reflection_setup_internal_class: hook profiler events.
11559
11560 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
11561
11562         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
11563         argument here too and use it to avoid checking for pending exceptions if 
11564         possible.
11565
11566 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
11567
11568         * assembly.c (build_assembly_name): add arg for passing the assembly
11569         flags. Do not consider a PublicKey with value "null" valid.
11570         (mono_assembly_name_parse_full): added boolean argument that will be
11571         set if the assembly name contains a PublicKeyToken spec. Added support
11572         for the Retargetable spec for which only Yes or No are allowed as valid
11573         value. Consider assembly name invalid if Retargetable spec is set, but
11574         either version, culture or public key (token) are not specified.
11575         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
11576         with implementation in assembly.c.
11577         * icall.c (fill_reflection_assembly_name): also copy assembly flags
11578         from MonoAssemblyName.
11579         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
11580         introduced argument for mono_assembly_name_parse_full to know if the
11581         assembly name has a PublicKeyToken spec, and if it has instruct
11582         fill_reflection_assembly_name to use default value for keyToken (if
11583         PublicKeyToken is null).
11584
11585 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11586
11587         * verify.c (mono_method_verify): fixed ovf ops with
11588         float values. They are unverifiable now.
11589
11590 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11591
11592         * class.c (set_failure_from_loader_error): add BadImageException to the
11593         list of exceptions that can cause a type to fail to load.
11594
11595         * class.c (mono_class_get_exception_for_failure): same.
11596
11597 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
11598
11599         * verify.c (in_any_exception_block): added, check if offset
11600         is part of any exception handling clause.
11601
11602         * verify.c (get_stack_type): added VAR and MVAR types.
11603
11604         * verify.c (do_stobj): better error messages.
11605
11606         * verify.c (do_cpobj): added, check cpobj.
11607
11608         * verify.c (do_initobj): added, check initobj.
11609
11610         * verify.c (do_sizeof): added, check sizeof.
11611
11612         * verify.c (do_localloc): added, check localloc.
11613
11614         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
11615
11616 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
11617
11618         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
11619         save_lmf/restore_lmf opcodes.
11620
11621         * threads.c (mono_threads_install_notify_pending_exc): New function to
11622         install a callback notifying the JIT there is a pending exception on a thread.
11623         (mono_thread_request_interruption): Call the new callback.
11624         (mono_thread_get_and_clear_pending_exception): New function to return the
11625         exception pending on a thread.
11626
11627         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
11628         to turn off checking for pending exceptions.
11629         (mono_marshal_get_native_wrapper): Ditto.
11630
11631 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11632
11633         * threads-types.h: Get rid of the unnecessary extern declarations.
11634
11635 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
11636
11637         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
11638         return field from parent class if not private.
11639         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
11640         returns fields from parent class if they are not private.
11641         (method_nonpublic): added function to determine if a given method
11642         should be considered non-public. Returns false for private methods
11643         on parent class, and internal methods from parent on the 1.0 profile.
11644         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
11645         use method_nonpublic function to determine whether method should be
11646         returned.
11647         (property_accessor_public): use newly introduced method_nonpublic
11648         function to determine whether accessor is non-public. 
11649         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
11650         event from parent class if not private. Only return static event if
11651         Static flag is set, and only return static event from parent class if
11652         FlattenHierarchy flag is set.
11653         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
11654         include non-private events from parent class.
11655
11656 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11657
11658         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
11659         warning.
11660
11661 2008-01-16  Wade Berrier <wberrier@novell.com>
11662
11663         * security.c: Add assembly.h header to appease some warnings
11664
11665 2008-01-16  Dick Porter  <dick@ximian.com>
11666
11667         * process.c (process_module_string_read): Remove trailing null
11668         when saving string.
11669
11670 2008-01-16  Mark Probst  <mark.probst@gmail.com>
11671
11672         * class-internals.h: A new data structure describing the layout of
11673         a runtime generic context (MonoRuntimeGenericContextTemplate).
11674
11675         * metadata-internals.h: Added a hash table to MonoDomain that maps
11676         from open generic classes to their runtime generic context
11677         templates.
11678
11679         * object.c: Building of the runtime generic context, including
11680         proper handling of generic type arguments of superclasses.
11681         Building of the runtime generic context according to the template.
11682
11683 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
11684
11685         * class.c (mono_class_setup_fields): Set field.count for generic instances.
11686         Fixes #350856.
11687
11688         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
11689         mono_portability_find_file (). Fixes #325466.
11690         (mono_image_get_public_key): Fix a warning.
11691
11692 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
11693
11694         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
11695         Fixes #353550.
11696         (mono_class_from_name_case): Ditto.
11697
11698 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
11699
11700         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
11701           common storage for the tables used in the System/NumberFormatter class.
11702
11703 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
11704
11705         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
11706
11707 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
11708
11709         * verify.c (get_boxable_mono_type): check if the token is valid.
11710
11711         * verify.c (set_stack_value): changed to add an error if an
11712         invalid type is set on stack. Changed all callers due to signature change.
11713
11714         * verify.c (do_stobj): implement stobj validation.
11715
11716 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
11717
11718         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
11719         set container->is_method, it was set earlier.
11720
11721         * metadata.c (type_in_image): Handle MVARs which belong to not finished
11722         generic methods.
11723
11724         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11725         is_method of the generic container to TRUE for methods.
11726
11727 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11728
11729         * metadata.c (type_in_image): Handle type parameters properly.
11730
11731         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
11732         memory ownership of this structure.
11733
11734 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
11735
11736         * verify.c (get_boxable_mono_type): make typedref types been just
11737         unverifiable. check for void type.
11738
11739         * verify.c (do_unbox_any): added, verify opcode unbox.any.
11740
11741         * verify.c (do_load_function_ptr): accept method spec tokens.
11742
11743 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11744
11745         * marshal.c (mono_class_native_size): Always set *align even if this is called
11746         recursively.
11747
11748 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
11749
11750         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
11751         out-of-date.
11752
11753 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
11754
11755         * verify.c: removed some old unused tables. A huge bunch of small fixes
11756         to things found while testing the verifier with mono basic.
11757
11758         * verify.c (dump_stack_value): dump null literal flag to.
11759
11760         * verify.c (verify_type_compatibility_full): fix comparison
11761         for types that have a generic super type.
11762
11763         * verify.c (verify_stack_type_compatibility): fix compatibility
11764         between null literals and reference types. fix compatibility between
11765         boxed valuetypes and object. fix corner case test for enums.
11766
11767         * verify.c (do_cmp_op): proper verification of cgt.un in case
11768         of reference types.
11769
11770         * verify.c (do_invoke_method): fix error message.
11771
11772         * verify.c (do_store_indirect
11773
11774         * verify.c (check_is_valid_type_for_field_ops): proper verification
11775         of managed pointers to valuetypes and boxed valuetypes. proper verification
11776         of null literals.
11777
11778         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
11779         allow token to be a reference type.
11780
11781         * verify.c (do_cast): proper handling of boxes valuetypes.
11782
11783         * verify.c (do_stelem): proper handling of storing a boxed valuetype
11784         in object[].
11785
11786         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
11787         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
11788         fixed the decoding of unbox_any
11789
11790 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11791
11792         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
11793
11794 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
11795
11796         * verify.c (do_newobj): do delegate verification.
11797
11798         * verify.c (verify_delegate_compatibility): perform delegate
11799         verification.
11800
11801         * verify.c (verify_ldftn_delegate): perform tests related to
11802         ldftn delegates.
11803
11804         * verify.c (mono_delegate_signature_equal): perform the
11805         slightly diferent signature comparison required by delegates.
11806
11807         * metadata.c (mono_metadata_type_equal_full): added and exported
11808         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
11809         allows signature only comparison.
11810
11811         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
11812         as MONO_INTERNAL.
11813
11814 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
11815
11816         * verify.c: added a bunch of stack_slot_* functions to
11817         make access to stack slot type easier. This is required to
11818         allow optional flags, like null literal, boxed value and
11819         this pointer.
11820         All access paths to IlStackDesc::stype have been changed 
11821         to use these new funcions.
11822         Removed a bunch of unused functions and cleared all warnings.
11823         This patch introduces the usage of the this pointer and 
11824         boxed value flags.
11825
11826 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
11827
11828         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
11829
11830 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11831
11832         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
11833         match managed version.
11834
11835         * appdomain.c: Bump corlib version.
11836         
11837         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11838         argument.
11839
11840 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11841
11842         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11843         Set public key token to zero-length byte array if assembly is not
11844         strongnamed.
11845
11846 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11847
11848         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11849         writing a vtype array elem.
11850
11851 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11852
11853         * assembly.c (build_assembly_name): return FALSE if length of token is
11854         not 16 (if not "null").
11855         (mono_assembly_name_parse_full): return FALSE if value of version,
11856         culture, token or key is 0.
11857         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11858         specify whether public key and public key token must be set to default
11859         value (zero-length byte array) if not available. Set versioncompat to
11860         SameMachine. If public key is available or the default is set, then
11861         set PublicKey flag.
11862         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11863         is available, use empty byte array as default value. On the 2.0
11864         profile, use default value for public key token if not set.
11865         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11866         profile, use default value for public key if not set. On the 2.0
11867         profile, use default value for public key token if not set.
11868         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11869         default values for public key and public key token.
11870
11871 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11872
11873         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11874         field to keep it in synch with the managed object.
11875
11876         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11877         delegates. Fixes #351520.
11878
11879         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11880         contains defined memory.
11881         
11882         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11883
11884         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11885         
11886         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11887         of the GC data structures.
11888
11889         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11890
11891         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11892         
11893         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11894         barrier.
11895         (mono_array_clone_in_domain): Ditto.
11896         (mono_array_clone_in_domain): Ditto.
11897
11898         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11899         (cache_culture): Use a write barrier.
11900
11901         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11902         (ves_icall_get_property_info): Ditto.
11903
11904         * object.h (MONO_STRUCT_SETREF): New macro.
11905
11906         * class-internals.h (MonoStats): Add some GC statistics.
11907
11908         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11909
11910 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11911
11912         * exception.c (mono_exception_from_name_two_strings):
11913         Break from loop after method is found.
11914
11915 2008-01-04  Dick Porter  <dick@ximian.com>
11916
11917         * process.c (process_module_string_read): Rename variable to
11918         reflect correct usage, after fixing bug 345972.
11919
11920 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11921
11922         * verify.c (mono_type_create_fnptr_from_mono_method): 
11923         created a MonoType function pointer instance to be used during
11924         verification. The verifier releases this memory at end.
11925
11926         * verify.c (mono_method_is_constructor): extracted repeated
11927         checks for constructor into a single class.
11928
11929         * verify.c (do_push_field): use new extracted method
11930         for constructor check.
11931
11932         * verify.c (do_newobj): same.
11933
11934         * verify.c (do_ldftn): renamed to do_load_function_ptr
11935         and make it verify ldvirtftn too.
11936
11937         * verify.c (mono_method_verify: proper verification
11938         of ldvirtftn. release created MonoMethod instances.
11939
11940 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11941
11942         * verify.c (token_bounds_check): added.
11943
11944         * verify.c (do_ldftn): added.
11945
11946         * verify.c (mono_method_verify): proper verificartion of ldftn.
11947
11948 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11949
11950         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11951         than the table row count. It's the resposibility of the caller to
11952         make the bounds check and raise the correct error.
11953
11954         * metadata.c (mono_metadata_decode_row_col): Same.
11955
11956         * loader.c (mono_get_method_from_token): perform bounds check
11957         on token for methoddef table.
11958
11959 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11960
11961         * icall.c
11962         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11963         assert into a negative result, the managed code already coped with
11964         that.
11965
11966         Some folks on Windows reported this error. 
11967
11968 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11969
11970         * appdomain.c: Bump corlib version.
11971         * icall.c:
11972         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11973         CultureInfo.CreateCulture to create CultureInfo for name.
11974         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11975         create CultureInfo for name. Fixes bug #347174.
11976
11977 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11978
11979         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11980         flags.
11981
11982         * verify.c (is_valid_branch_instruction): allow branching to the
11983         first instruction of the protected block.
11984
11985         * verify.c (is_valid_cmp_branch_instruction): same.
11986
11987         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11988         avoid double initialization.
11989
11990         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11991         detect which cases the eval stack should just be copied.
11992
11993         * verify.c (mono_method_verify): check if the eval stack
11994         is empty when entering a protected block.
11995
11996 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11997
11998         * verify.c: added is_clause_in_range, is_clause_inside_range,
11999         is_clause_nested and verify_clause_relationship. They perform
12000         the verifications stated in P1 12.4.2.7.
12001
12002         * verify.c (mono_method_verify): remove some unused variables,
12003         add the new exception clause checks, add instruction border
12004         checks for protected block start/end, improved some error 
12005         messages and fixed a bug in the way invalid instruction access
12006         is detected.
12007
12008 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
12009
12010         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
12011         from GC 7.0 if available.
12012
12013         * object.c: Remove an unused define.
12014         
12015         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
12016
12017         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
12018
12019         * null-gc.c (mono_gc_make_descr_for_array): Implement.
12020
12021         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
12022
12023         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
12024         to take the same arguments as the other make_descr functions.
12025
12026         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
12027
12028         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
12029         directly.
12030
12031         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
12032         mini.c.
12033
12034         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
12035         call to boehm-gc.c.
12036
12037         * boehm-gc.c (mono_gc_register_root): Fix a warning.
12038
12039         * null-gc.c (mono_gc_register_root): Fix a warning.
12040
12041         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
12042
12043         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
12044         (mono_gc_base_init): Call GC_init ().
12045
12046         * null-gc.c: Define mono_gc_register_root () as a no-op.
12047
12048         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
12049
12050 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
12051
12052         * verify.c: add prototype for merge_stacks at top
12053
12054         * verify.c (do_switch): added.
12055
12056         * verify.c (merge_stacks): on some cases the stack merging
12057         was not happening properly. Unequal stack sizes at merge
12058         points should be invalid.
12059
12060         * verify.c (mono_method_verify): added more debug info on stack state.
12061         verify switch properly.
12062
12063 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
12064
12065         * method-builder.h: New file, moved the mono_mb_ declarations here from 
12066         marshal.h.
12067
12068         * boehm-gc.c marshal.c: Include method-builder.h.
12069
12070         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
12071
12072         * marshal.c: Remove some code which is now in method-builder.c.
12073
12074 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
12075
12076         * method-builder.c: New file, extraction of the method builder functionality 
12077         from marshal.c.
12078
12079         * marshal.c: Move the mb functions into method-builder.c.
12080
12081         * marshal.h marshal.c: Export some mono_mb_... functions.
12082
12083         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
12084
12085         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
12086         the caller.
12087
12088         * class.c (mono_class_get_full): Check the token type in the dynamic case.
12089
12090         * loader.c (mono_field_from_token): Ditto.      
12091
12092         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
12093         type as well.
12094         
12095         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
12096         Fixes #342565.
12097
12098         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
12099         a helper function for setting it.
12100
12101         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
12102
12103         
12104         * assembly.c: Significally simplify code now that referenced assemblies are 
12105         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
12106
12107         * threads.h: Don't include  the internal threads-types.h header file. Fixes
12108         #349952.
12109
12110 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
12111
12112         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
12113         instructions that were target of branches or are at protected block boundaries.
12114
12115         * verify.c (in_same_block): handle filter clauses.
12116
12117         * verify.c (is_valid_branch_instruction): added. checks the target of
12118         instructions br or brtrue/false.
12119
12120         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
12121         binary branch instructions such as beq and bge.
12122
12123         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
12124         and made it pin the instruction as been part of the exception block.
12125
12126         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
12127         of in_same_block.
12128
12129         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
12130         of in_same_block.
12131
12132         * verify.c (do_ret): ret from a protected block is unverifiable and
12133         not invalid.
12134
12135         * verify.c (do_static_branch): verify br and br.s instructions.
12136
12137         * verify.c (merge_stacks): add extra param to support detection
12138         of branches in the middle of instructions.
12139         
12140         * verify.c (mono_method_verify): verify branches and exception blocks
12141         that target the middle of instructions. Proper verification of br and br.s.
12142
12143 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
12144
12145         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
12146         skip_visibility field.
12147         (reflection_methodbuilder_from_dynamic_method): Ditto.
12148
12149         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
12150         registrations. Fixes #348193.
12151
12152         * threads.h: Move the internal mono_thread_get_pending_exception () to
12153         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
12154
12155 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
12156
12157         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
12158         icall registration. Fixes #348193.
12159
12160         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
12161         for corlib classes into object. Fixes #349621.
12162
12163 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
12164
12165         * icall.c (property_accessor_nonpublic): new function to determine
12166         whether an accessor allows a property to be considered non-public.
12167         Returns false for private accessor(s) from parent class, and internal
12168         accessor(s) from parent on 2.0 profile (and higher).
12169         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
12170         to determine whether property should be included if NonPublic flag
12171         is set. Fixes bug #349078.
12172
12173 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
12174
12175         * verify.c (init_stack_with_value): added.
12176
12177         * verify.c (mono_method_verify): extracted common
12178         code for exception initialization into init_stack_with_value.
12179
12180         * verify.c (mono_method_verify): initialize the exception
12181         for handler clauses as well.
12182
12183         * verify.c (mono_method_verify): fix the exception clause
12184         ordering rules, it should use handler end offset and not
12185         start offset.
12186
12187 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
12188
12189         * rawbuffer.c: remove useless warning.
12190
12191 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
12192
12193         * threads.h, threads-types.h: move functions to the correct header
12194         (fixes bug#349952).
12195
12196 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
12197
12198         * verify.c (mono_method_verify): proper verification
12199         of exception handling clauses ranges and fallthru in
12200         and out of protected blocks.
12201
12202 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
12203
12204         * verify.c (mono_method_verify): fixed compilation issue.
12205
12206 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
12207
12208         * verify.c (mono_method_verify): a printf slipped in, changed
12209         to use verifier debug macro.
12210
12211 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
12212
12213         * verify.c (is_correct_leave): check for filter clauses.
12214
12215         * verify.c (do_filter): added.
12216
12217         * verify.c (mono_method_verify): property verification of leave.
12218
12219
12220 2007-12-18  Mark Probst  <mark.probst@gmail.com>
12221
12222         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
12223         Win32 build, until we figure out how to do the proper thing on
12224         Win32.
12225
12226 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
12227
12228         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
12229         by the previous patch.
12230         
12231         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
12232         the assembly resolve handler for refonly assemblies.
12233
12234 2007-12-17  Mark Probst  <mark.probst@gmail.com>
12235
12236         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
12237         Make sure only one thread is allowed to commence shutdown, and
12238         don't allow new threads to be started once shutdown is in
12239         progress.
12240
12241 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
12242
12243         * verify.c (is_correct_endfilter): added.
12244
12245         * verify.c (is_unverifiable_endfilter): added.
12246
12247         * verify.c (do_endfilter): added.
12248
12249         * verify.c (mono_method_verify): property verification of endfilter
12250         and fixed a corner case or endfinally.
12251
12252 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
12253
12254         * verify.h: new flags to support fail fast of unverifiable code and
12255         do non-strict verification. Non-strict verification is required to
12256         have MS runtime compatibility. There are a huge amount of unverifiable
12257         code that it accepts as verifiable. The strict mode verifies the code
12258         as the specs says.
12259         Non-strict mode will be required in cases where code needs to be
12260         accepted as verifiable but fails under strict mode.
12261
12262         * pedump.c: added support to fail fast and non-strict verification.
12263
12264         * verify.c: added support for both fail fast and non-strict verification.
12265
12266 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
12267
12268         * verify.c (is_correct_endfinally): added.
12269
12270         * verify.c (mono_method_verify): property verification of endfinally.
12271
12272 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
12273
12274         * verify.c (in_any_block): check for filter clauses.
12275
12276         * verify.c (is_correct_rethrow): added.
12277
12278         * verify.c (mono_method_verify): property verification of rethrow.
12279
12280         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
12281
12282 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
12283
12284         * verify.c (do_throw): added.
12285
12286         * verify.c (mono_method_verify): property verification of throw
12287
12288 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
12289
12290         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
12291         assemblies. Fixes #346425.
12292
12293 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
12294
12295         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
12296         FieldBuilders.
12297
12298         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
12299
12300         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
12301         prevent asserts when this is called with a token which might not be valid.
12302
12303         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
12304         lookup_dynamic_token_class with valid_token == FALSE.
12305
12306         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
12307
12308         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
12309
12310         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12311         
12312 2007-12-10  Mark Probst  <mark.probst@gmail.com>
12313
12314         * gc.c: Don't delay threadpool thread finalization unless Mono is
12315         shutting down.
12316
12317 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
12318
12319         * threads.c: turn an assert into a non-fatal warning.
12320
12321 2007-12-09  Robert Jordan  <robertj@gmx.net>
12322
12323         * icall.c (GetVirtualMethod): Add missing argument validation.
12324
12325 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12326
12327         * verify.c (do_cast): added.
12328
12329         * verify.c (mono_method_verify): property verification of castclass and isinst.
12330
12331
12332 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12333
12334         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
12335
12336         * verify.c (do_stelem): added.
12337
12338         * verify.c (mono_method_verify): property verification of stelem.X.
12339
12340 2007-12-07  Mark Probst  <mark.probst@gmail.com>
12341
12342         * class.c, class-internals.h: Introduce an environment variable
12343         (MONO_GENERIC_SHARING) through which the extent of generic code
12344         sharing can be controlled (share all classes, share only corlib
12345         classes, or share nothing).
12346
12347         * object.c: Only create runtime generic context for classes for
12348         which sharing is enabled.
12349
12350 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12351
12352         * verify.c (do_ldelem): refactor it to work with ldelem.any.
12353
12354         * verify.c (mono_method_verify): property verification of ldelem.any.
12355
12356 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12357
12358         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
12359         added ldelem.X opcodes.
12360
12361         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
12362
12363         * verify.c: proper verification of ldelem.X 
12364
12365 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
12366
12367         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
12368
12369 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12370
12371         * verify.c (mono_method_verify): null literal requires special handling,
12372         the value pushed on stack need to be flagged as so.
12373
12374         * verify.c (do_ldelema): Verify ldelema properly.
12375
12376 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12377
12378         * verify.c: Verify ldlen properly.
12379
12380 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
12381
12382         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
12383         to the target object's type. Fixes #346160.
12384
12385 2007-12-05  Dick Porter  <dick@ximian.com>
12386
12387         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
12388         Solaris needs the same workaround as BSD-derived systems.  Fixes
12389         bug 323524, patch by Burkhard Linke
12390         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
12391
12392 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
12393
12394         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
12395         handle to use when error dialog is shown; otherwise, update mask
12396         to show no error dialog when an error occurs.
12397
12398 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
12399
12400         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
12401
12402         * class.c (mono_class_get_field_default_value): New helper function to initialize
12403         field->def_type and field->data.
12404
12405 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
12406
12407         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
12408         the general one.
12409
12410         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
12411
12412         * marshal.c: Avoid depending on delegate->method_info being set.
12413
12414         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
12415         
12416         * object.c (mono_delegate_ctor): Set delegate->method.
12417
12418         * object-internals.h (struct _MonoDelegate): Add 'method' field.
12419
12420         * appdomain.c: Bump corlib version.
12421
12422 2007-11-27  Raja R Harinath  <harinath@gmail.com>
12423
12424         * metadata.c (mono_generic_inst_equal_full): Short-circuit
12425         equality check if we're comparing canonicalized MonoGenericInsts.
12426
12427 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
12428
12429         * class.c (generic_array_methods): Call mono_class_setup_methods () before
12430         accessing class->methods.
12431
12432 2007-11-22  Dick Porter  <dick@ximian.com>
12433
12434         * threads.c: Ensure that the synch_cs is set before trying to use
12435         it.
12436
12437 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
12438
12439         * profiler.c: r89126 broke the statistial profiler, unbreak.
12440
12441 2007-11-22  Martin Baulig  <martin@ximian.com>
12442
12443         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
12444
12445         * mono-debug.c
12446         (mono_debug_debugger_version): Bump to 3.
12447         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
12448         -> mono_debugger_class_initialized().
12449
12450         * mono-debug-debugger.c
12451         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
12452
12453         * class.c
12454         (mono_debugger_start_class_init_func): Removed.
12455         (mono_debugger_class_loaded_methods_func): Added.
12456         (mono_class_setup_methods): Call it here.
12457
12458 2007-11-22  Martin Baulig  <martin@ximian.com>
12459
12460         * mono-debug.c
12461         (mono_debug_add_delegate_trampoline): New public method.
12462         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
12463
12464         * mono-debug.h
12465         (MonoSymbolTable): Added `global_data_table'.
12466         (MonoDebuggerTypeKind): Removed.
12467
12468 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
12469
12470         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
12471         these methods.
12472
12473         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12474         
12475 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
12476
12477         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
12478
12479 2007-11-20  Martin Baulig  <martin@ximian.com>
12480
12481         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
12482
12483         * mono-debug-debugger.c
12484         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
12485         (mono_debugger_remove_breakpoint): Likewise.
12486         (mono_debugger_check_breakpoints): Likewise.
12487         (mono_debugger_register_class_init_callback): New public method.
12488         (mono_debugger_remove_class_init_callback): Likewise.
12489         (mono_debugger_add_type): Likewise.
12490
12491         * mono-debug-debugger.h
12492         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
12493
12494 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
12495
12496         * class.c: more interface implementations needed for the
12497         array enumerator (fixes bug #341112).
12498
12499 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
12500
12501         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
12502         fix ParamName of ArgumentNullExceptions.
12503
12504 2007-11-17  Miguel de Icaza  <miguel@novell.com>
12505
12506         * reflection.c (mono_reflection_encode_sighelper): Generate the
12507         modopts and modreqs.   I have a useless test that crashes monodis,
12508         but that shows the code working.
12509
12510 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
12511
12512         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
12513         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
12514
12515 2007-11-15  Dick Porter  <dick@ximian.com>
12516
12517         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
12518         When joining a thread, it's the thread that's calling Join that
12519         gets WaitSleepJoin state not the target.  Fixes the standalone
12520         test case in bug 334740, and hopefully the whole bug too.
12521
12522 2007-11-15  Dick Porter  <dick@ximian.com>
12523
12524         * process.c: Read file version info from the files pointed at by
12525         process modules, not the current process.  Fixes bug 315969.
12526
12527         Use windows typedef names in some places to fix warnings on the
12528         windows build.
12529
12530 2007-11-15  Mark Probst  <mark.probst@gmail.com>
12531
12532         * image.c, metadata-internals.h: Added a generic_class_cache hash
12533         to MonoImage for looking up generic classes when sharing generics.
12534
12535 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
12536
12537         * sgen-gc.c: warning cleanups.
12538
12539 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
12540
12541         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
12542         inherited properties.
12543
12544 2007-11-14  Mark Probst  <mark.probst@gmail.com>
12545
12546         * object.c, class-internals.h: Added more information to the
12547         runtime generic context.
12548
12549 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
12550
12551         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
12552         instead of just the target method. Generalize the abstract method handling to
12553         handle any non-static method.
12554
12555         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12556         mono_marshal_get_delegate_invoke () signature change.
12557
12558 2007-11-13  Mark Probst  <mark.probst@gmail.com>
12559
12560         * class.c, class-internals.h: Made
12561         mono_type_get_basic_type_from_generic () public.  Fixed member
12562         access check for shared generics.
12563
12564         * loader.c: Don't insert field into field cache if it's part of a
12565         non-inflated generic class.
12566
12567         * domain.c, domain-internals.h: The generic sharing context is now
12568         part of the jit info data structure.  Added two accessor
12569         functions.
12570
12571 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
12572
12573         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
12574         the array Get/Set/Address methods, since the JIT inlines them.
12575
12576         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
12577
12578         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
12579         (mono_image_init): Initialize runtime_invoke_direct_cache.      
12580
12581         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12582         mono_marshal_get_delegate_invoke signature change.
12583
12584         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
12585         an additional argument. Add support for invoking abstract methods.
12586
12587         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
12588
12589         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
12590
12591 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12592
12593         * class.c: Do field layout for open generic classes as well.
12594
12595 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12596
12597         * gc.c, gc-internal.h: Don't finalize threadpool threads with
12598         other objects, because the threadpool is still around.  Put them
12599         in a list instead and after finalizing all other objects in the
12600         root domain shut down the thread pool and then finalize the
12601         threads.  Fixes bug #337383.
12602
12603         * threads.c, thread-types.h: New mono_thread_create_internal()
12604         function for marking a thread with the threadpool flag before it
12605         started.  Set synch_cs to NULL after freeing it.
12606
12607         * threadpool.c: Mark threadpool threads before they start.
12608
12609 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
12610
12611         * reflection.h, reflection.c: don't export random functions
12612         and lazy load dbnull and missing objects.
12613
12614 2007-11-07  Jonathan Chambers <joncham@gmail.com>
12615
12616         * class.c: Initialize COM types if COM interfaces
12617         are present (not just COM classes).
12618         
12619         Code is contributed under MIT/X11 license.
12620
12621 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12622         * reflection.c:
12623         create_dynamic_mono_image: hook module profiler events (dynamic case).
12624         mono_image_basic_init: hook assembly profiler events (dynamic case).
12625
12626 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12627         * profiler.c:
12628         simple_appdomain_unload: completely terminate the profiler
12629         instead of only processing the statistical samples.
12630         simple_shutdown: make sure this is really called exactly once,
12631         even in multithreaded applications, and always listen to
12632         appdomain events.
12633         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
12634         here, the "[un]load" functions will do it.
12635         Fixes bugs #333791 and #325261.
12636
12637 2007-11-07  Geoff Norton  <gnorton@novell.com>
12638
12639         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
12640         rather than depend on __APPLE__.
12641
12642 2007-11-07  Mark Probst  <mark.probst@gmail.com>
12643
12644         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
12645
12646 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
12647
12648         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
12649         UTF16 MonoString. Fix the crash from bug #335488
12650
12651 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
12652
12653         * marshal.c: Correct (for non-Win32 OS) length != size in 
12654         mono_string_from_bstr. Fix #339530.
12655
12656 2007-11-06  Geoff Norton  <gnorton@novell.com>
12657
12658         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
12659         to succeed
12660
12661 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
12662
12663         * process.c: Added run-time GetProcessId API detection for Windows.
12664
12665 2007-11-04  Miguel de Icaza  <miguel@novell.com>
12666
12667         * reflection.c  (mono_param_get_objects): If a parameter has the
12668         attribute [System.Runtime.InteropServices.Optional] we should
12669         set the DefaultValue of the ParameterInfo to be
12670         System.Reflection.Missing instead of DBNull.
12671
12672         See bug #339013.
12673
12674         (mono_get_reflection_missing_object): New method,
12675         returns the System.Reflection.Missing.Value singleton instance.
12676
12677 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12678
12679         * culture-info-table.h : regenerated.
12680
12681 2007-11-02  Jonathan Chambers <joncham@gmail.com>
12682
12683         * icall.c: Use GetEnvironmentStrings on windows
12684         so we are using the same environment block as 
12685         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
12686         #333740.
12687         
12688         Code is contributed under MIT/X11 license.
12689
12690 2007-10-31  Martin Baulig  <martin@ximian.com>
12691
12692         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
12693
12694         * mono-debug-debugger.h
12695         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
12696
12697 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
12698
12699         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
12700         classes.
12701
12702 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
12703
12704         * culture-info-table.h : regenerated.
12705
12706 2007-10-30  Robert Jordan  <robertj@gmx.net>
12707
12708         * icall-def.h, icall.c:
12709         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
12710
12711         Code is contributed under MIT/X11 license.
12712
12713 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12714
12715         * class.c (mono_class_setup_vtable): Find the inflated methods in the
12716         inflated class instead of inflating them again.
12717         
12718         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
12719         dynamic case.
12720
12721         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
12722         Call setup_supertypes () after klass->parent is set.
12723         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
12724
12725         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
12726         for inflated instances of not yet created dynamic generic classes.
12727         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
12728         times from inflated_method.
12729         (methodbuilder_to_mono_method): Ditto.
12730
12731 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
12732
12733         * gc.c: code cleanup and removed old untested option of not creating the
12734         finalizer thread.
12735
12736 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12737
12738         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
12739         creating a jump trampoline for dynamic methods.
12740
12741 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
12742
12743         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
12744         generic TypeBuilders when called from another method of the same type (bug #335131).
12745
12746
12747 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
12748
12749         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
12750         doesn't seem to work perfectly.
12751         
12752         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
12753         called multiple times.
12754         (methodbuilder_to_mono_method): Ditto.
12755         (resolve_object): Inflate FieldBuilder's.
12756
12757 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12758
12759         * string-icalls.c, string-icalls.h, appdomain.c: patch from
12760         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
12761         RemoveEmptyEntries in the string.Split implementation (bug #322375).
12762
12763 2007-10-26  Dick Porter  <dick@ximian.com>
12764
12765         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
12766         Thread initialisation changes
12767
12768 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
12769
12770         * verify.c: fix compatibility check between arrays and System.Array
12771
12772 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
12773
12774         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
12775         too. Fixes #336999.
12776
12777 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
12778
12779         * object.c (mono_value_box): Use typed allocation here.
12780
12781 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
12782
12783         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
12784         trampoline instead of compiling the method right away.
12785
12786         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
12787
12788 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
12789
12790         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
12791         related fields for dynamic classes. Fixes #334493.
12792
12793 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
12794
12795         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
12796         
12797         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
12798
12799         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
12800         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
12801
12802         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
12803
12804         * reflection.c (create_generic_typespec): Initialize klass->generic_container
12805         if needed.
12806         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
12807
12808 2007-10-18  Jonathan Chambers <joncham@gmail.com>
12809
12810         * marshal.c: Use correct key when removing item
12811         from ccw_hash.
12812         
12813         Code is contributed under MIT/X11 license.
12814
12815 2007-10-17  William Holmes  <billholmes54@gmail.com>
12816
12817         *marshal.c: Adding a case to marshal booleans to U1
12818
12819         Code is contributed under MIT/X11 license.
12820
12821 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
12822
12823         * class.c (mono_class_from_name): Search the modules compromising dynamic
12824         assemblies. Fixes #331601.
12825
12826 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
12827
12828         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
12829         exception if the type name contains an assembly component. Fixes #334203.
12830
12831         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
12832         modules inside dynamic assemblies. Fixes #334200.
12833         
12834         * reflection.c: Set image->public_key and image->public_key_length;
12835
12836         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12837         fields.
12838
12839         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12840         
12841 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12842
12843         * metadata.c: Implemented correct comparing of generic classes.
12844         An inflated generic class can be equal to a non-inflated one if it
12845         is inflated with generic type variables as type arguments.  Fixes
12846         bug #333798.
12847
12848 2007-10-15  Dick Porter  <dick@ximian.com>
12849
12850         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12851         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12852         81646.
12853
12854         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12855         instead of a monitor lock.  This means that monitor_try_enter and
12856         co can set the thread state safely.
12857         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12858         thread_interrupt_requested, so interrupt actually works.
12859
12860         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12861         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12862         state accessor function
12863
12864 2007-10-15  Martin Baulig  <martin@ximian.com>
12865
12866         * mono-debug.h
12867         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12868         the debugger with the current runtime.
12869
12870 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12871
12872         * object.c, object-internals.h: added the ability to set a single
12873         trampoline for all the slots in a vtable.
12874
12875 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12876
12877         * marshal.c: deal with a possible race condition during multicast
12878         delegate invocation.
12879
12880 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12881
12882         * class.c: ensure value type methods don't have the synchronized
12883         flag set.
12884
12885 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12886
12887         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12888         breaks the build.
12889
12890 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12891
12892         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12893         to take an options parameter so that empty entries can be removed during
12894         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12895
12896 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12897
12898         * marshal.c: make sure we don't store the signature from a dynamic
12899         method into the runtime invoke cache (bug #327189).
12900
12901 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12902
12903         * marshal.c: make sure the wrapper methods are properly initialized.
12904
12905 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12906
12907         * metadata.c, metadata-internals.h: Generalized
12908         mono_type_stack_size() to mono_type_stack_size_internal() which
12909         takes an additional argument specifying whether it allows open
12910         types.
12911
12912 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12913
12914         * verify.c (do_invoke_method): handle typedbyref params
12915         correctly and check for unverifiable return values.
12916
12917         * verify.c (do_newobj): fix a warning.
12918
12919 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12920
12921         * verify.c: don't tread typedbyref as allways unverifable,
12922         so uses, like (ld/st)loc.0 are valid. verify for the cases
12923         that it matters, like boxing related operations.
12924
12925 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12926
12927         * verify.c: add verification of the newobj opcode. verification
12928         of delegate instantation still missing due ldftn and virldftn not
12929         pushing the function type on stack
12930
12931 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12932
12933         * class-internals.h: Runtime generic context data structure
12934         definition.
12935
12936         * object.c: Initialization of runtime generic context at runtime
12937         vtable creation time.
12938
12939 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12940         * class.c (mono_class_create_from_typedef,
12941         mono_class_from_generic_parameter, mono_ptr_class_get,
12942         mono_fnptr_class_get, mono_bounded_array_class_get)
12943         * domain.c (mono_domain_create, mono_domain_free)
12944         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12945         * image.c (do_mono_image_load, mono_image_close):
12946         Hooked up load-unload profiler events.
12947
12948 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12949
12950         * domain.c: track statistics about the actual amount of native code
12951         allocated.
12952
12953 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12954
12955         * class.c: the valuetype enumerators don't have the additional
12956         supertypes interfaces.
12957
12958 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12959
12960         * class.c: need more interfaces setup for the IEnumerator<T>
12961         object created for arrays (tests/ienumerator-interfaces.2.cs).
12962
12963 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12964
12965         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12966
12967 2007-10-05  Alp Toker  <alp@atoker.com>
12968
12969         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12970         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12971         #315863.
12972
12973 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12974
12975         * verify.c (verify_type_compatibility_full): verification of
12976         compatibility improved, validates correctly non-strict checks between
12977         native int and I4 types different than (unsigned)int32.
12978
12979         * verify.c (do_store_indirect): added, do all verification of
12980         ldind.X opcodes. 
12981
12982         * verify.c (get_load_indirect_mono_type): renamed to
12983         get_indirect_op_mono_type, as it now returns the MonoType for 
12984         ldind.X and stind.X opcodes.
12985
12986 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12987
12988         * reflection.c: Fix the encoding of generic type definition for
12989         TypeBuilders.
12990
12991         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12992         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12993         be made. Typespec check is done prior to typeref cache lookup.
12994
12995         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12996         mono_image_typedef_or_ref_full.
12997
12998         * reflection.c (encode_generic_class): encode the generic class
12999         directly instead of calling encode_type.
13000
13001         * reflection.c (encode_type): encode the generic type definition
13002         MonoClass as a generic instantiation.
13003
13004         * reflection.c (create_typespec): cache typespec tokens in
13005         the assembly->typespec cache. Don't create typespec for a generic
13006         instance MonoClass. Create typespec for the generic type defintion.
13007
13008         * reflection.c (create_generic_typespec): encode the generic
13009         class directly instead of calling encode_type.
13010
13011         * reflection.c (mono_image_create_token): encode the generic
13012         type definition not using a typespec for MonoType instances.
13013
13014
13015 2007-10-04  Raja R Harinath  <rharinath@novell.com>
13016
13017         Fix #328812
13018         * class.c (mono_image_init_name_cache): Don't return nested
13019         'protected internal' classes.
13020         (mono_class_from_name_case): Likewise.
13021
13022 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
13023
13024         * icall-def.h, icall.c : get_bundled_machine_config() is now the
13025           common function used by both DefaultConfig in System.dll and
13026           InternalConfigurationHost in System.Configuration.dll.
13027
13028 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13029
13030         * class.c: automatically add to vectors only a few essential explicit
13031         generic interfaces. The rest of the interfaces that arrays should
13032         provide are currently implicitly added (but still not lazily, see the
13033         design in the discussion of bug#325495 for the details of what is
13034         needed for that). Additionally, implicit interfaces are assigned the
13035         same vtable slot as the explicit interfaces (as they are compatible):
13036         this enables huge memory savings since we don't need to instantiate
13037         as many memthods and as large vtables anymore. Also, Since
13038         GetEnumerator<T> returns an instance of a type that is required to
13039         support a similarly large set of interfaces as arrays, we add
13040         implicit interfaces and interface offset sharing support to those
13041         types, too. This change adds all the required interfaces so that
13042         the anonarray.cs test case in the bug report works (we don't add
13043         all the interfaces to arrays of arrays 3-level deep and more because
13044         of the memory requirements explained in the bug and since they are much
13045         less common: the lazy-loading support will enabled them to work, too).
13046
13047 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13048
13049         * verify.c (merge_stacks): major clean up, all type compatibility
13050         checks are done by verify_type_compatibility. This fix my earlier lack
13051         of understanding of the CLR type system and merge_stacks no longer looks
13052         scary.
13053
13054         * verify.c: fixed some bad spelling.
13055
13056 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13057
13058         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
13059         a given stack slock.
13060         
13061         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
13062         verify_type_compatibility_full. This removed a near indentical function and fixed
13063         handling of Int32 and IntPtr across all opcodes.
13064
13065 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13066
13067         * class.c: only vectors have the additional generic interfaces.
13068
13069 2007-10-01  Jonathan Chambers <joncham@gmail.com>
13070
13071         * mono-config.c: Use g_strcasecmp instead of
13072         strcasecmp like everywhere else to fix
13073         compilation with MSVC.
13074         
13075         Code is contributed under MIT/X11 license.
13076
13077 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13078
13079         * object.c, object-internals.h: refactored the IMT code to enable
13080         building a single slot at a time and lazily creating the IMT trampolines
13081         and thunks.
13082
13083 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
13084
13085         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
13086
13087         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
13088         Fixes #328501.
13089         
13090 2007-09-29  Raja R Harinath  <harinath@gmail.com>
13091
13092         * loader.c (method_from_methodspec): Rearrange to avoid
13093         un-necessary exposition.  Don't assert out if the method's
13094         declaring type is a generic type definition.
13095
13096 2007-09-28  Martin Baulig  <martin@ximian.com>
13097
13098         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
13099
13100 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
13101
13102         * class-internals.h: optimize field layout of MonoClass to
13103         requires less cachelines at runtime and save a few bytes on 64 bit
13104         systems.
13105
13106 2007-09-28  Jb Evain  <jbevain@novell.com>
13107
13108         * reflection.c: when encoding type names in custom attributes,
13109         if the type is a closed generic type, its generic arguments
13110         have to be serialized as AssemblyQualifiedName, so that when
13111         they are deserialized, it's possible to re-create them properly.
13112         Fixes #329450.
13113
13114
13115 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13116
13117         * object.c, class-internals.h: added delegate-creation counter.
13118
13119 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
13120
13121         * class.c: cleanup of the code that synthetizes interfaces for
13122         arrays in 2.0: saves quit a bit of corlib mempool memory.
13123         Code to fix bug #325495 ifdeffed out for now until the issues
13124         with memory usage and O(n^2) behaviour are fixed.
13125
13126 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13127
13128         * marshal.c: when possible, do not duplicate the name of the methods
13129         in the method builder and in the generated MonoMethod.
13130
13131 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
13132         * verify.c: added support for type checking ldind_* opcodes.
13133
13134 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
13135
13136         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
13137         which is used to distinguish the fully open instantiation of a TypeBuilder
13138         with the rest. This temporary hack is required to restore the property that
13139         the fully open instantiation is the same type of the generic type definition.
13140
13141         * class-internals.h (mono_generic_class_is_generic_type_definition):
13142         new function as part of the internal API.
13143
13144         * class.c (inflate_generic_type): return NULL when the generic inst is
13145         fully open. The fully open generic type is now the same as the generic type
13146         definition for non TypeBuilder types.
13147
13148         * class.c (mono_generic_class_get_class): removed assert since it is
13149         no longer valid, gklass->cached_class can point to the generic type definition.
13150
13151         * class.c (mono_generic_class_is_generic_type_definition): new.
13152
13153         * metadata.c (mono_generic_class_hash): added is_tb_open field
13154         to the hash calculation.
13155
13156         * metadata.c (free_generic_class): if the generic class is associated
13157         with the generic type definition, its field will come from the mempool and
13158         must not be freed.
13159
13160         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
13161         new, this function identifies the corner case of a TypeBuilder fully open
13162         instantiation.
13163
13164         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
13165         for lookup. Set gclass->cached_class to be the container class in case of
13166         the fully open instantiation of non TypeBuilder types.
13167
13168         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
13169         to compare generic classes.
13170
13171         * reflection.c (method_encode_methodspec): remove assert that
13172         no longer is valid.
13173
13174         * reflection.c (mono_reflection_generic_class_initialize): add
13175         an aditional assert to ensure the proper type is used.
13176
13177 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
13178
13179         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
13180         to enjoy it.
13181
13182 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
13183
13184         * verify.c (push_arg): Fixed support for ldarga
13185         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
13186         MonoType used as first arg in case of instance calls.
13187
13188 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
13189
13190         * verify.c: Support for verifying VAR and MVAR types, 
13191
13192 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
13193
13194         * icall.c (ves_icall_get_property_info): Set the reflected type of the
13195         accessors correctly.
13196
13197 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
13198
13199         * threads.c: support OSX and other systems in
13200         mono_thread_get_stack_bounds (bug #328026).
13201
13202 2007-09-25  Martin Baulig  <martin@ximian.com>
13203
13204         * mono-debug.h
13205         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
13206
13207 2007-09-24  Martin Baulig  <martin@ximian.com>
13208
13209         * mono-debug.h
13210         (MonoDebugClassEntry): Moved the definition of this struct into
13211         mono-debug.c to make it private.
13212
13213         * mono-debug.c
13214         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
13215         type table per symbol file, we don't need to store the symfile id
13216         any longer.
13217
13218 2007-09-24  Martin Baulig  <martin@ximian.com>
13219
13220         Create one type table per symbol file, since a `MonoClass *' gets
13221         invalid when its image is unloaded.
13222
13223         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
13224         (MonoDebugHandle): Added `type_table'.
13225
13226 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13227
13228         * mempool.c, mempool.h: added mono_mempool_new_size () API
13229         to be able to specify a smaller initial size for the pool.
13230         Adjusted the code to slowly increase pool size before using
13231         the previous default size.
13232         * image.c: use a small initial size for image mempools.
13233
13234 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
13235
13236         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
13237         Fixes ##320990.
13238
13239         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
13240         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
13241
13242 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
13243
13244         * metadata.c (mono_type_create_from_typespec): Remove an invalid
13245         free. Fixes #327438.
13246
13247 2007-09-21  Raja R Harinath  <harinath@gmail.com>
13248
13249         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
13250         generic instantiations, etc.
13251         <MONO_TYPE_ARRAY>: Likewise.
13252
13253 2007-09-21  Martin Baulig  <martin@ximian.com>
13254
13255         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
13256         these structs were never defined.
13257         (MonoDebugHandle): Removed the `_priv' field, it was never used.
13258
13259 2007-09-21  Martin Baulig  <martin@ximian.com>
13260
13261         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
13262
13263 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
13264
13265         * image.c: removed the guid hash tables: we can get the same info
13266         without the additional memory usage hit (partially fixes also bug #327052).
13267
13268 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13269
13270         * profiler.h, profiler-private.h, profiler.c: add a new profiler
13271         event to handle unloading methods. After the event is called, the
13272         corresponding MonoMethod* must be considered invalid.
13273         * loader.c (mono_free_method): call the new mono_profiler_method_free
13274         event.
13275
13276 2007-09-20  Mark Probst  <mark.probst@gmail.com>
13277
13278         * domain-internals.h: New flag in MonoJitInfo which marks shared
13279         generic methods.  New hash table (shared_generics_hash) in
13280         MonoDomain to keep track of shared generic methods.  Prototypes
13281         for functions to register and lookup shared generic methods.
13282
13283         * domain.c: Support for registering and looking up shared generic
13284         methods via a hash table (shared_generics_hash) in MonoDomain.
13285
13286         * class-internals.h: New exception to signal failure of shared
13287         compilation of a generic method.  New counters for generics
13288         sharing in MonoStats.
13289
13290 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
13291
13292         * image.c, metadata-internals.h: don't keep a file descriptor open
13293         for loaded assemblies (bug#325988).
13294
13295 2007-09-19  Raja R Harinath  <rharinath@novell.com>
13296
13297         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
13298         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
13299         use the corresponding datatypes.
13300         (type_in_image): Update to changes.
13301         (CleanForImageUserData): Simplify.
13302         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
13303         Avoid quadratic behaviour in handling the "stolen" list by
13304         separating the filter predicate out, and by prepending the stolen
13305         items rather than appending them.
13306         (steal_ginst_in_image): Likewise.
13307         (mono_metadata_clean_for_image): Update to changes.
13308
13309 2007-09-19  Martin Baulig  <martin@ximian.com>
13310
13311         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
13312
13313 2007-09-19  Martin Baulig  <martin@ximian.com>
13314
13315         * mono-debug.c (mono_debug_cleanup): Don't call
13316         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
13317
13318 2007-09-19  Raja R Harinath  <harinath@gmail.com>
13319
13320         Fix crash on 'make run-test' in mcs/errors
13321         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
13322         Avoid more potential allocations in mono_class_from_mono_type.
13323         (ginst_in_image): Update to changes.
13324         (gclass_in_image): Rearrange slightly.
13325
13326 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13327
13328         * class.c (mono_class_init): Move the code that sets up class->methods to 
13329         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
13330
13331         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
13332         canonical instance of an inflated generic signature.
13333         (mono_type_create_from_typespec): Remove an invalid free.
13334
13335         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
13336
13337 2007-09-18  Marek Habersack  <mhabersack@novell.com>
13338
13339         * domain-internals.h: added a declaration of the
13340         mono_assembly_load_full_nosearch internal function.
13341
13342         * assembly.c (mono_assembly_load_with_partial_name): use
13343         mono_try_assembly_resolve return value properly.
13344         (mono_assembly_load_full_nosearch): copied the function body from
13345         mono_assembly_load_full, without the code to invoke assembly
13346         search hooks.
13347         (mono_assembly_load_full): calls the above new function and if the
13348         assembly is not resolved, invokes the search hooks.
13349
13350         * appdomain.c (mono_runtime_init): restore the global postload
13351         assembly search handlers.
13352
13353 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13354
13355         * class.c (mono_class_init): Make sure class->methods and class->properties
13356         are never NULL in the generics case.
13357
13358         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
13359
13360 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
13361
13362         * metadata.c (free_generic_class): Disable some code to fix the build.
13363
13364         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
13365
13366         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
13367         from the image mempool.
13368
13369         * metadata.c (free_generic_class): Free more data from the inflated class.
13370
13371         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
13372
13373         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
13374         mempool.
13375         (mono_type_create_from_typespec): Ditto.
13376
13377         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
13378         MonoImage to the caller.
13379         (mono_init_internal): Save the opened image in a global variable.
13380         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
13381
13382         * reflection.c (resolve_object): Fix a leak.
13383
13384         * metadata.c: Fix the freeing of data in the generics caches.
13385         
13386         * metadata.c (free_generic_inst): Comment this out to fix the build.
13387         (free_generic_class): Ditto.
13388
13389         * metadata.c: Free cached generic methods, instantinations and classes when
13390         they are removed from the caches.
13391         (mono_metadata_free_type): Free the type itself.
13392
13393         * class.c: Free the result of mono_class_inflate_generic_type () in a few
13394         places.
13395
13396 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13397
13398         * boehm-gc.c: restrict managed allocs to __thread supporting
13399         architectures.
13400
13401 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
13402
13403         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
13404         (mono_generic_class_get_class): Fix a leak.
13405
13406         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
13407         mono_metadata_free_type ().
13408         (mono_metadata_inflate_generic_inst): Fix a leak.
13409
13410 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13411
13412         * mono-debug.c (free_header_data): Fix a leak missed earlier.
13413
13414         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
13415         mempool.
13416
13417         * mono-debug.c (mono_debug_close_image): Fix call to 
13418         g_hash_table_remove ().
13419
13420 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13421
13422         * icall-def.h: redirect all the string ctor to the managed
13423         CreateString () methods.
13424         * string-icalls.c, string-icalls.h: removed dead code for string
13425         ctors and icalls.
13426
13427 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13428
13429         * mono-debug.c: Fix memory leaks.
13430
13431 2007-09-14  Jonathan Chambers <joncham@gmail.com>
13432
13433         * threads-types.h: Implement mono_hazard_pointer_set and 
13434         mono_hazard_pointer_clear macros using do/while(0) to fix
13435         compilation with MSVC.
13436         
13437         Code is contributed under MIT/X11 license.
13438
13439 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13440
13441         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
13442         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
13443
13444 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13445
13446         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
13447         icalls.
13448
13449 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13450
13451         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
13452         managed-code allocated as well.
13453
13454 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13455
13456         * class.c (mono_class_is_assignable_from): Add support for generic variance.
13457
13458 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13459
13460         * boehm-gc.c: fixed the build after the AOT changes.
13461
13462 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13463
13464         * wrapper-types.h: Add an ALLOC wrapper type.
13465
13466         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
13467         reference managed allocator methods.
13468
13469 2007-09-12  Marek Safar  <marek.safar@gmail.com>
13470
13471         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
13472         of Type array and not MonoType, a fix suggested by Hari.
13473         
13474 2007-09-12  Jonathan Chambers <joncham@gmail.com>
13475
13476         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
13477         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
13478         
13479         Code is contributed under MIT/X11 license.
13480
13481 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13482
13483         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
13484
13485 2007-09-12  Marek Habersack  <mhabersack@novell.com>
13486
13487         * image.c (do_mono_image_open): if assembly file fails to open and
13488         MONO_IOMAP is in effect, try to find the path in a
13489         case-insensitive way.
13490
13491         * appdomain.c (mono_runtime_init): do not install postload hooks -
13492         tests show that MS.NET doesn't use anything of that sort to
13493         trigger the AppDomain.AssemblyResolve event.
13494         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
13495         made non-static.
13496         (mono_runtime_init): init portability helpers here.
13497
13498         * assembly.c (mono_assembly_load_with_partial_name): if other   
13499         attempts fail, trigger the AppDomain.AssemblyResolve event handler
13500         to resolve the assembly.
13501
13502         * domain-internals.h: added mono_try_assembly_resolve and marked
13503         it as internal.
13504
13505 2007-09-11  Jb Evain  <jbevain@novell.com>
13506
13507         * object-internals.h (MonoReflectionDynamicMethod): add
13508         a `MonoReflectionType *owner` field. The owner is used
13509         * reflection.c:
13510         (mono_reflection_create_dynamic_method): use the owner of the dynamic
13511         method as the class declaring the dynamic method.
13512         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
13513         dynamic method to the declaring type of the methodbuilder.
13514
13515 2007-09-11  Mark Probst  <mark.probst@gmail.com>
13516
13517         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
13518         rules for calling methods via reflection.
13519
13520 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
13521
13522         * reflection.c (resolve_object): Add support for MonoGenericClass. 
13523         Inflate MonoType's.
13524
13525 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
13526
13527         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
13528         provide a managed method that does fast allocations without needing
13529         a managed->unmanaged transition. Boehm GC implementation currently
13530         enabled for ptrfree objects on sane architectures.
13531
13532 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13533
13534         * marshal.c, marshal.h: exported a couple of useful functions and
13535         added mono_mb_get_label () to easily handle backward branches.
13536
13537 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
13538
13539         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
13540
13541 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13542
13543         * loader.c (find_method): Fixed the regression introduced while
13544         fixing bug #81466.
13545
13546 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
13547
13548         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
13549         well.
13550         
13551         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
13552         icall.c reflection.c: Pass a MonoGenericContext argument to 
13553         mono_lookup_dynamic_token ().
13554
13555         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
13556         #82744.
13557         
13558 2007-09-09  Robert Jordan  <robertj@gmx.net>
13559
13560         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
13561         for generic methods.
13562
13563         * object.c (mono_object_get_virtual_method): Handle generic methods.
13564         Fixes bug #78882.
13565
13566         Code is contributed under MIT/X11 license.
13567
13568 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13569
13570         * image.c: fix locking in mono_image_load_file_for_image ().
13571
13572 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
13573
13574         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
13575         used only as a cache: added an icall to fill it.
13576
13577 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
13578
13579         * reflection.h: exposed mono_reflection_free_type_info
13580         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
13581         since mono_reflection_bind_generic_parameters makes a copy of it.
13582         * reflection.c (free_type_info): subinfos should be freed.
13583         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
13584         made non static.
13585         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
13586         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
13587         this fixes #82695 and #81726.
13588    
13589
13590 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
13591
13592         * process.h, process.c:  added support for user profile/info in
13593           ProcessStartInfo. For now only Windows works.
13594
13595 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13596
13597         * metadata.c: consider the generic arguments when comparing
13598         signatures (bug #82614).
13599
13600 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13601
13602         * cil-coff.h, image.c: updated assembly loader to cope with the
13603         PE32+ 64 bit file format.
13604
13605 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13606
13607         * assembly.c, class.c, domain.c, loader.c: remove useless
13608         inclusion of cil-coff.h.
13609
13610 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
13611
13612         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
13613         if interface is marked with CoClassAttribute. 
13614    
13615         Code is contributed under MIT/X11 license.
13616
13617 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13618
13619         * sgen-gc.c: ensure no object from the to space is copied again or finalized
13620         if it's seen twice in major collections.
13621
13622 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13623
13624         * sgen-gc.c: big objects are not copied to the gray area, but they
13625         need to be considered for scanning, too, if they are brought alive
13626         by an object ready for finalizations or a survived one.
13627
13628 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13629
13630         * sgen-gc.c: properly account the number of disappearing links when
13631         they are nullified.
13632
13633 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13634
13635         * sgen-gc.c: share the code to scan the registered roots between the
13636         different types of collections.
13637
13638 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13639
13640         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
13641
13642 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13643
13644         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
13645         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
13646
13647 2007-08-28  Mark Probst  <mark.probst@gmail.com>
13648
13649         * security-manager.c (mono_security_manager_get_methods):
13650         LinkDemandSecurityException now has 2 arguments instead of 3.
13651
13652 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
13653
13654         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
13655         platforms which need it.
13656
13657 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13658
13659         * sgen-gc.c: unregister thread data structures with a pthread_key_t
13660         dtor.
13661
13662 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13663
13664         * threads.c: free the thread static data on thread exit.
13665
13666 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
13667
13668         * class.c: walk the hierarchy to find the generic definition for
13669         a class (fixes runtime part of bug #82498).
13670
13671 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13672
13673         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
13674         ...
13675
13676         * image.c (mono_image_close): Here. Hopefully fixes #82510.
13677
13678 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13679
13680         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
13681
13682 2007-08-24  Robert Jordan  <robertj@gmx.net>
13683
13684         * appdomain.c: don't perform the ':'->';' substitution on Win32.
13685
13686 2007-08-24  Jb Evain  <jbevain@novell.com>
13687
13688         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
13689         for byref types.
13690
13691 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13692
13693         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
13694         #82286.
13695
13696 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13697
13698         * assembly.c: Fix a warning.
13699         
13700 2007-08-23  Marek Habersack  <mhabersack@novell.com>
13701
13702         * appdomain.c: parse the <runtime> section looking for the probing
13703         element with the 'privatePath' attribute, which sets additional
13704         directories in which the runtime should look for assemblies.
13705
13706 2007-08-23  Robert Jordan  <robertj@gmx.net>
13707
13708         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
13709         Fixes #82499.
13710
13711 2007-08-23  Martin Baulig  <martin@ximian.com>
13712
13713         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
13714         _mono_debug_init_corlib() and remove it from the header file.
13715
13716 2007-08-23  Martin Baulig  <martin@ximian.com>
13717
13718         * mono-debug-debugger.c
13719         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
13720         don't notify the debugger about it.
13721
13722         * mono-debug-debugger.h
13723         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
13724
13725 2007-08-23  Robert Jordan  <robertj@gmx.net>
13726
13727         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
13728         Code is contributed under MIT/X11 license.
13729
13730 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13731
13732         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
13733
13734 2007-08-22  Martin Baulig  <martin@ximian.com>
13735
13736         * mono-debug.c: Store debugging info on a per-domain basis and
13737         free it on domain unload.  Add support for unloading symbol files.
13738
13739         * mono-debug.h
13740         (MonoDebugList): New typedef.
13741         (MonoSymbolTable):
13742         - add `data_tables and `type_table'.
13743         - replace 'symbol_files' and `num_symbol_files' with a
13744           `MonoDebugList *'.
13745         (mono_debug_data_table): Removed.
13746         (mono_debug_list_add): New public function.
13747         (mono_debug_list_remove): New public function.
13748         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
13749         (mono_debug_init_2_memory): Renamed into
13750         mono_debug_open_image_from_memory().
13751         (mono_debug_close_image): New public function.
13752         (mono_debug_domain_create): Likewise.
13753         (mono_debug_domain_unload): Likewise.
13754         (MONO_DEBUGGER_VERSION): Bump to 60.
13755
13756         * mono-debug-debugger.h
13757         (MonoDebuggerEvent):
13758         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
13759         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
13760         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
13761         - rename `THREAD_CREATED' and `THREAD_EXITED' into
13762           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
13763         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
13764           meaning.
13765         (mono_debugger_add_symbol_file): Removed.
13766         (mono_debugger_add_type): Removed.
13767         (mono_debugger_lookup_type): Removed.
13768         (mono_debugger_lookup_assembly): Removed.
13769
13770         * domain.c
13771         (mono_domain_create): Call mono_debug_domain_create().
13772         (mono_init_internal): Call mono_debug_init_corlib().
13773
13774         * assembly.c
13775         (mono_assembly_close): Call mono_debug_close_image().
13776
13777 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
13778
13779         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
13780         mmap call.
13781
13782 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13783
13784         * sgen-gc.c: ensure section->pin_queue_end is initialized
13785         correctly when non pinning objects in the section have been found.
13786
13787 2007-08-22  Marek Habersack  <mhabersack@novell.com>
13788
13789         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
13790         containing a list of directories separated by ':'. MSDN docs say
13791         the directories should be separated with ';'. Part of a bugfix for
13792         bug #81446
13793
13794 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
13795
13796         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
13797         it should MonoType and not MonoClass.
13798
13799 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
13800
13801         * culture-info-table.h : regenerated.
13802
13803 2007-08-20  William Holmes  <billholmes54@gmail.com>
13804
13805         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
13806          to call ReplaceFile Kernel32 on windows or in io-layer.
13807         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
13808         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
13809          as an internal call.
13810
13811         Code is contributed under MIT/X11 license.
13812
13813 2007-08-20  Jb Evain  <jbevain@novell.com>
13814
13815         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
13816         and MONO_EXCEPTION_FIELD_ACCESS.
13817
13818         * debug-helpers.[c|h]: new mono_field_full_name function.
13819
13820 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13821
13822         * class.c: Removed class_security_level() and moved it to
13823         security-core-clr.c.
13824
13825         * security-core-clr.c, security-core-clr.h: class_security_level()
13826         is now public and renamed to mono_security_core_clr_class_level().
13827         It also looks for security attributes in the classes a class is
13828         nested in.
13829
13830 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13831
13832         * security-core-clr.c, security-core-clr.h: CoreCLR security
13833         utility functions.
13834
13835         * Makefile.am: Added security-core-clr.[ch].
13836
13837         * security-manager.c, security-manager.h: Functions and enum for
13838         setting and getting the security mode.
13839
13840         * class.c: CoreCLR security checks.
13841
13842 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13843
13844         * icall-def.h, process.c, process.h: implemented icall to get
13845         user/system processor times.
13846
13847 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13848
13849         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13850         reader-lock-free jit_info_table.
13851
13852 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13853
13854         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13855
13856         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13857
13858         * object-internals.h (MonoException): Add missing _data member.
13859
13860 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13861
13862         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13863         checking that only methods with matching qname or fqname are picked
13864         from implemented interfaces.
13865
13866 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13867
13868         * verify.c (do_newarr):added, do type verification of
13869         newarr ops, push the right value on the eval stack.
13870         * verify.c (mono_method_verify): use do_newarr
13871
13872
13873 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13874
13875         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13876         factored the common code into get_boxable_mono_type, which
13877         is now using mono_type_get_full, this fixed byref related tests.
13878
13879 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13880
13881         * class.c: added mono_type_get_full, this function has the same
13882         behavior of mono_class_get_full but the returned MonoType has
13883         all metadata of the associated token in case of a typespec token.
13884         * class.c: added mono_type_retrieve_from_typespec, used by 
13885         mono_type_get_full to retrieve the token type.
13886         * class.c (mono_class_create_from_typespec): changed to use
13887         mono_type_retrieve_from_typespec.
13888         * class.c (mono_ldtoken): changed to use mono_type_get_full
13889         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13890         * class-internals.h: exported mono_type_get_full for internal use.
13891
13892 2007-08-16  Jb Evain  <jbevain@novell.com>
13893
13894         * domain.c (supported_runtimes): add entry for
13895         the 'moonlight' runtime version.
13896
13897 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13898
13899         * verify.c (mono_method_verify): small typo sliped in.  
13900
13901 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13902
13903         * verify.c (do_unbox_value): added, do type verification of
13904         unboxing ops
13905         * verify.c (mono_method_verify): use do_unbox_value
13906
13907
13908 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13909
13910         * verify.c (dump_stack_value): fixed typo, was printing string
13911         instead of object on stack.
13912         * verify.c (do_box_value): moved the byref check up as it leads
13913         to invalid code and should be done earlier.
13914         * verify.c: improved error messages for and ldobj
13915
13916 2007-08-15  William Holmes  <billholmes54@gmail.com>
13917
13918         * marshal.c (emit_marshal_custom): Omit the call to 
13919           marshal_native_to_managed when calling native to managed 
13920           and the argument is specified as an out argument.
13921
13922         Code is contributed under MIT/X11 license.
13923
13924 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13925
13926         * verify.c: fixed the type checks for generics, function pointers and vectors.
13927         Added type verification for ldobj and ldtoken. The verifier
13928         would segfault if header or signature of a method contained references
13929         to non-existant types.
13930
13931 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13932
13933         * marshal.c (cominterop_get_ccw): Patch from
13934         Bill Holmes to no walk up interface hierarchy. 
13935         All parent methods should be present in the interface for COM.
13936    
13937         Code is contributed under MIT/X11 license.
13938
13939 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13940
13941         * marshal.c (emit_marshal_com_interface): Patch from
13942         Bill Holmes to handle COM Interfaces as return values
13943         for native->managed calls.
13944    
13945         Code is contributed under MIT/X11 license.
13946
13947 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13948
13949         * marshal.c (cominterop_get_idispatch_for_object): Implement
13950         for runtime callable wrappers.
13951    
13952         Code is contributed under MIT/X11 license.
13953
13954 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13955
13956         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13957         so 2.0 types are accessible
13958
13959
13960 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13961
13962         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13963         once we load mscorlib.   Due to the order in which we initialize,
13964         the mono_assembly_load_full routine that loads mscorlib did not
13965         load friends.   We now load it once we load the
13966         mono_defaults.internals_visible_class class. 
13967
13968         * assembly.c: Expose the mono_load_friend_assemblies method.
13969
13970 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13971
13972         * verify.c: improved the handling of boxing, better
13973         type checking for unary ops and conversion. Fix bug
13974         regarding managed pointer compatibility checking
13975
13976 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13977
13978         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13979
13980         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13981
13982 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13983
13984         * reflection.c (dup_type): Remove.
13985         * class.c (dup_type): Remove.
13986         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13987         instead of the dodgy 'dup_type'.
13988         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13989         handle the case where 'dup_type' needed the second argument.
13990
13991 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13992
13993         * domain.c: Fix a warning.
13994
13995 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13996
13997         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13998         checking that methods with the same fqname are not overridden
13999         with a method from an ancestor.
14000
14001 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
14002
14003         * threads.c (free_thread_static_data_helper): Avoid a crash if
14004         thread->static_data is not yet set.
14005
14006 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
14007
14008         * marshal.c: Use correct image when emitting
14009         native wrapper for COM calls.
14010    
14011         Code is contributed under MIT/X11 license.
14012
14013 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
14014
14015         * icall-def.h, security.c, security.h :
14016           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
14017
14018 2007-08-07  Martin Baulig  <martin@ximian.com>
14019
14020         * mono-debug-debugger.h
14021         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
14022
14023         * domain.c (mono_domain_free): Call
14024         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
14025
14026 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
14027
14028         * verify.c (check_underflow, check_overflow): error message now returns IL offset
14029         * verify.c (in_same_block): code should test if either offset is inside the clauses
14030         * verify.c (mono_method_verify): push the exception into the eval stack of exception
14031         and filter blocks
14032
14033 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14034
14035         * image.c (mono_image_close): Fix a leak.
14036
14037         * object.c (mono_runtime_invoke_array): Avoid using alloca.
14038
14039         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
14040
14041 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14042
14043         * domain.c, threads.c, threads-types.h: fix memory retention issue
14044         with thread static variables not being cleared on domain unload.
14045         Reuse thread static slots after domain unload.
14046
14047 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14048
14049         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
14050         nullable type.
14051
14052         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
14053         now done in mono_runtime_invoke_array.
14054
14055         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
14056         receiver is a nullable type.
14057
14058         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
14059         generic parameter.
14060
14061 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
14062
14063         * marshal.c: Implement COM Objects as return type for 
14064         managed->unmanaged calls. Added Release calls for COM Object
14065         out/return values in managed->unmanaged calls.
14066
14067         Code is contributed under MIT/X11 license.
14068
14069 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
14070
14071         * threads.h, threads-type.h: move the hazard pointer declarations
14072         to the private header.
14073
14074 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14075
14076         * file-io.c, appdomain.c: memory leak fixes.
14077
14078 2007-08-02  Dick Porter  <dick@ximian.com>
14079
14080         * socket-io.c
14081         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
14082         SO_REUSEADDR setting into io-layer/sockets.c.
14083
14084 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
14085
14086         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
14087         from Object when called on a generic parameter. Fixes #82211.
14088
14089 2007-08-01  Dick Porter  <dick@ximian.com>
14090
14091         * file-io.c (convert_share): Test FileShare values bit-by-bit.
14092         Fixes bug 79250 yet again.
14093
14094 2007-07-30  Martin Baulig  <martin@ximian.com>
14095
14096         Merged the `debugger-dublin' branch.
14097
14098         * mono-debug.h
14099         (MonoDebugDataTable): New typedef.
14100         (MonoDebugMethodAddressList): New typedef.
14101         (MonoDebugWrapperData): Removed.
14102         (MonoDebugSymbolTable): Removed `current_data_table',
14103         `current_data_table_size', `current_data_table_offset'.
14104         (MonoDebugDataItemType): Moved into mono-debug.c.
14105         (MonoDebugMethodJitInfo): Remove `address'.
14106         (mono_debug_data_table): New global variable.
14107         (mono_debug_lookup_method_addresses): New public function.
14108         (mono_debug_find_method): Take a `MonoMethod *', not a
14109         `MonoDebugMethodInfo *'.
14110
14111         * mono-debug.c: Drop support for the old symbol tables.
14112
14113 2007-06-28  Martin Baulig  <martin@ximian.com>
14114
14115         * mono-debug.c (mono_debug_debugger_version): New public variable.
14116
14117 2007-07-31  William Holmes  <billholmes54@gmail.com>
14118
14119         * metadata.c Changed mono_type_create_from_typespec to not insert
14120           the type into the hash map until after
14121           do_mono_metadata_parse_type has completed.
14122         Fixes Bug #82194
14123         Code is contributed under MIT/X11 license.
14124
14125 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
14126
14127         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
14128         generic parameter. Fixes #82211.
14129
14130 2007-07-27  Jb Evain  <jbevain@novell.com>
14131
14132         * pedump.c (dump_metadata, dump_metadata_header): dump
14133         versions contained in the metadata header.
14134
14135 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14136
14137         * threads.c: register small_id_table with the GC.
14138
14139 2007-07-27  Mark Probst  <mark.probst@gmail.com>
14140
14141         * threads.c, threads.h, class-internals.h, object-internals.h:
14142         Hazard pointers, to be used by lock-free parallel algorithms.
14143
14144 2007-07-26  Dick Porter  <dick@ximian.com>
14145
14146         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
14147         routine on non-windows platforms, as I've not managed to think of
14148         a non-kludgy way of doing this.  Finishes off bug 78739.
14149
14150 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
14151
14152         * object.c: properly setup interface_bitmap in proxy vtables.
14153
14154 2007-07-25  Marek Habersack  <mhabersack@novell.com>
14155
14156         * appdomain.c (get_shadow_assembly_location): do not use TickCount
14157         to create unique shadow copy target directories, use the domain's
14158         serial number instead. Each domain gets a unique target directory
14159         that way.
14160
14161         * domain.c (mono_domain_create): added code to increment domain
14162         shadow copy serial number and cache the value in the current
14163         domain structure.
14164
14165         * domain-internals.h (struct _MonoDomain): added a new field -
14166         shadow_serial to hold the serial number used in generation of
14167         shadow-copy directories. This is to make sure that the directory
14168         name is unique for each and every domain created. We avoid a race
14169         condition with overriding assemblies already in use by other app
14170         domains.
14171
14172 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
14173
14174         * class.c (mono_bounded_array_class_get): fixed memory leak when 
14175         binding generic parameters.
14176
14177 2007-07-24  Raja R Harinath  <rharinath@novell.com>
14178
14179         * metadata.c (do_mono_metadata_parse_generic_class): Use
14180         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
14181         error.
14182
14183 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
14184
14185         * loader.c, class-internals.h, reflection.c: removed the per-method
14186         generics hashtable: we use the global one through the call of
14187         mono_class_inflate_generic_method ().
14188
14189 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14190
14191         * class.c, metadata.c, class-internals.h: introduce yet another
14192         generics global cache for inflated methods (fixes 98% of the perf
14193         issue in bug #81806).
14194
14195 2007-07-23  Raja R Harinath  <rharinath@novell.com>
14196
14197         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
14198         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
14199         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
14200         return a MonoGenericInst containing (a copy) of those types.
14201         (mono_metadata_inflate_generic_inst): Update to changes.
14202         (mono_metadata_parse_generic_inst): Likewise.
14203         (mono_get_shared_generic_inst): Likewise.
14204         * reflection.c (mono_class_bind_generic_parameters): Likewise.
14205         (mono_reflection_bind_generic_method_parameters): Likewise.
14206         * metadata-internals.h: Likewise.
14207         * icall.c (free_generic_context): Kill.
14208         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
14209
14210         * reflection.c (reflection_methodbuilder_to_mono_method): Use
14211         mono_metadata_type_dup.
14212         * marshal.c (mono_mb_create_method): Likewise.
14213
14214         * metadata.c (mono_metadata_type_dup): Rename from
14215         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
14216         MonoImage.  Handle a few more cases, esp. when no mempool is given.
14217         * marshal.c, metadata-internals.h: Update to changes.
14218
14219 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14220
14221         * class.c: fixed a small leak for array classes and removed warning.
14222
14223 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
14224
14225         * loader.c (mono_method_get_param_token): Make this work on generic methods.
14226         Return 0x8000000 for return parameters. Fixes #82161.
14227
14228 2007-07-21  Marek Habersack  <grendello@gmail.com>
14229
14230         * appdomain.c (get_shadow_assembly_location): append the current
14231         ticks value to the path. Avoids overwriting the same assemblies by
14232         several threads at the same time.
14233
14234 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
14235         and Raja R Harinath  <rharinath@novell.com>
14236
14237         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
14238         Simplify slightly.
14239         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
14240         property for testing if a method is a generic method definition.
14241
14242 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
14243
14244         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
14245
14246 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14247
14248         * verify.c: used function from private branch, reverted to the one in class.h 
14249
14250 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14251
14252         * verify.c: a typo slipped in and the code wont compile
14253
14254 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14255
14256         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
14257         disabled box instruction as it is doing the wrong thing
14258         improved stack dump messages, now it is easier to debug type related issues
14259
14260
14261 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
14262
14263         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
14264
14265 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14266
14267         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
14268         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
14269         grouped with class and valuetype. This change will simply 
14270         the code as it should be handled just like unmanaged pointers.
14271
14272 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14273
14274         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
14275
14276 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14277
14278         * verify.c: several stack merge issues fixed, reference comparisons now
14279         check the type size. strict type check now works correctly.
14280         added more uses of IS_MANAGED_POINTER macro.
14281         fixed issues pointed by running the test suite against .net.
14282         
14283
14284 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14285
14286         * class.c, loader.c, class-internals.h: Removed the
14287         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
14288         defines.
14289
14290         * icall.c: Better error checking in some internal reflection
14291         methods.
14292
14293 2007-07-18  William Holmes  <billholmes54@gmail.com>
14294
14295         * filewatcher.c : removed unused variable 'filename' in 
14296           ves_icall_System_IO_FSW_SupportsFSW
14297
14298 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
14299
14300         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
14301         obsolete, removed.
14302
14303 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
14304
14305         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
14306         
14307         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
14308
14309 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
14310
14311         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
14312         Implement generics support.
14313         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14314
14315         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
14316         type_args and method_args arguments.
14317         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
14318         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14319         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
14320
14321 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
14322
14323         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
14324           It adds a rootimage parameter to mono_reflection_get_type_internal,
14325           adds new function mono_reflection_get_type_with_rootimage and use
14326           the rootimage to resolve the types instead of the current image
14327
14328 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
14329
14330         * culture-info-table.h: Forgot to update after r78304.
14331
14332 2007-07-13  Raja R Harinath  <rharinath@novell.com>
14333
14334         * class.c (mono_class_is_open_constructed_type)
14335         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
14336
14337 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
14338
14339         * class.c (mono_bounded_array_class_get):  method fails if used with
14340         an incomplete TypeBuilder enum (no basetype field), fixed it by 
14341         avoiding calculating the size for such array as it cannot be instantiated.
14342         Fix bug #82015
14343
14344 2007-07-12  Raja R Harinath  <rharinath@novell.com>
14345
14346         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
14347         field.
14348         * metadata.c, reflection.c: Update to changes.
14349
14350 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
14351
14352         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
14353         mono_class_is_valid_enum, they are used to valide a enum when loading.
14354         * reflection.c: used new functions to throw TypeLoadException when and
14355         invalid enum is build with TypeBuilder. Fixes #82018
14356   
14357 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14358
14359         * object.c: forgot commit of mono_class_setup_methods () to access
14360         iface->methods.
14361         * object-internals.h: added a few more handy fields to
14362         MonoIMTCheckItem.
14363
14364 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14365
14366         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
14367         iface->methods.
14368
14369 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14370
14371         * class-internals.h, object-internals.h, object.c: IMT-based
14372         interface invocation core from Massimiliano Mantione
14373         (massi@ximian.com) with a reworked arch-specific interface,
14374         bsearch implementation and a few bugfixes and memory savings by me.
14375
14376 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
14377
14378         * class.c (mono_class_create_from_typedef): mono would segfault if 
14379         an enum did not have a __value field. It now throws a TypeLoadException
14380         for such cases. Fix bug #82022
14381
14382 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14383
14384         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
14385
14386 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14387
14388         * class.c (mono_class_init): If a class is already inited but has
14389         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
14390
14391 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14392
14393         * class.c: Properly handle the case of an unimplemented interface
14394         method.  Fixes: 81673.
14395
14396 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14397
14398         * class-internals.h, object.c: cleanup patch from massi: use
14399         MonoVTable->interface_bitmap since the vtable interfaces offset array
14400         is going away.
14401
14402 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14403
14404         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
14405         GetMDStreamVersion icall instead.
14406
14407 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
14408
14409         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
14410         not use mono_dl_build_path() with a full library name: makes
14411         fallbacks to libgaim and libfam work.
14412
14413 2007-07-06  William Holmes  <billholmes54@gmail.com>
14414
14415         * assembly.c: Added a continue statement in probe_for_partial_name when
14416          parse_assembly_directory_name fails.  Fixes : 82002
14417
14418 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
14419
14420         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
14421         and added a verification  for TYPEDBYREF.
14422         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
14423         make native int interchangeable with int32 and some small cleanup and formating.
14424         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
14425         handle byref of byref.
14426         * verify.c (push_local): handle byref of byref.
14427         * verify.c (do_binop): invalid mix of values is unverifiable
14428         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
14429         added visibility checks
14430         * verify.c (field related method): added visibility checks
14431         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
14432
14433 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
14434
14435         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
14436         string.
14437
14438 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
14439
14440         * profiler.c (mono_profiler_load): Fix an off-by-one error.
14441
14442         * marshal.c (emit_marshal_string): When returning a string from managed code,
14443         allways make a copy even for unicode strings. Fixes #81990.
14444
14445 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
14446
14447         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
14448         of byref generic inst types (bug #81997).
14449
14450 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
14451
14452         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
14453         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
14454
14455 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
14456
14457         * marshal.c (emit_marshal_string): Add support for unicode strings in
14458         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
14459
14460 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
14461
14462         * verify.c: field load/store are now verified, missing only access checks now
14463
14464 2007-06-28  Martin Baulig  <martin@ximian.com>
14465
14466         * mono-debug.c (mono_debug_debugger_version): New public variable.
14467
14468 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
14469
14470         * locales.c: When constructing DateTimeFormat or NumberFormat for
14471         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
14472         MonoCultureInfo contructed from the current locale is always
14473         read-only and has UseUserOverride set to true. All MonoCultureInfo
14474         instances returned for GetCultures have both IsReadOnly and
14475         UseUserOverride set to true. Fixes part of bug #81930.
14476
14477 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
14478
14479        * icall-def.h: Update System.__ComObject icalls
14480        * marshal.c: Avoid managed transition (and object creation)
14481        when looking up COM interface in RCW.
14482        * marshal.h: Ditto.
14483        
14484        Code is contributed under MIT/X11 license.
14485
14486 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
14487
14488         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
14489         to avoid crashes during assembly unloading.
14490
14491 2007-06-22  Raja R Harinath  <rharinath@novell.com>
14492
14493         Fix MethodInfo.IsGenericMethodDefinition
14494         * reflection.c (mono_reflection_bind_generic_method_parameters):
14495         Rearrange code to ensure we always uses a generic method definition.
14496         * class.c (mono_class_inflate_generic_method_full): Set
14497         'generic_container' field only for generic method definitions.
14498         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
14499         Use presense of 'generic_container' field as indication of being a
14500         generic method definition.
14501
14502 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
14503
14504         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14505
14506         * object-internals.h: Reflect changes in the layout of the managed Delegate
14507         class.
14508         
14509         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
14510         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
14511         runtime memory used by the dynamic method. Fixes #77146.
14512
14513 2007-06-21  Dick Porter  <dick@ximian.com>
14514
14515         * file-io.h: 
14516         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
14517         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
14518         81767.
14519
14520 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14521
14522         * reflection.c (method_encode_methodspec): Add a tripwire.
14523         * class.c (inflate_generic_type): The fully open generic type is
14524         not the same as the generic type definition.
14525
14526 2007-06-21  Martin Baulig  <martin@ximian.com>
14527
14528         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
14529
14530         * mono-debug-debugger.h
14531         (MonoDebuggerBreakpointInfo): Removed.
14532         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
14533         (mono_debugger_remove_breakpoint): Likewise.
14534         (mono_debugger_breakpoint_callback): Likewise.
14535         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
14536
14537 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14538
14539         * metadata.c (mono_metadata_lookup_generic_class): The fully open
14540         generic type is not the same as the generic type definition.
14541         * class.c (mono_generic_class_get_class): Likewise.
14542
14543 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
14544
14545         * icall.c: The second argument to 
14546         System.Reflection.MethodBase.GetMethodFromHandleInternalType
14547         is a MonoType not a MonoClass.
14548
14549 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14550
14551         * verify.c: support for function pointers in the verifier
14552
14553 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14554
14555         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
14556
14557 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
14558
14559         * assembly.c: removed Mono.Data.SqliteClient from the list of
14560         forward-compatible assemblies as it breaks the ABI (bug #81899).
14561
14562 2007-06-19  Raja R Harinath  <rharinath@novell.com>
14563
14564         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
14565         lookup/update with the loader lock.
14566         * reflection.c (mono_class_bind_generic_parameters): No need to
14567         protect mono_metadata_lookup_* with the loader lock.
14568         * class.c (inflate_generic_type): Likewise.
14569         
14570         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
14571         on a generic instantiated type.
14572
14573 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
14574
14575         *verify.c: produce meanfull error messages on verification error
14576         *verify.c: fixed some cases of verification errors reported as validation errors
14577         *pedump.c: fixed the error name array, now it shows validation errors properly
14578         *verify.h: fixed the contant that should be used for verification errors
14579
14580 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14581
14582         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
14583         for bug #77596, 81858 and 80743 (generics data structures on domain
14584         unload).
14585
14586 2007-06-15  Raja R Harinath  <rharinath@novell.com>
14587
14588         Avoid allocating 'MonoGenericContext' on the heap.
14589         * class-internals (_MonoMethodInflated::context): Make field
14590         inline, not a pointer.
14591         * loader.c (method_from_methodspec): Allocate 'new_context' on the
14592         stack.  Use the context embedded within the inflated method as the
14593         hash key, rather than 'new_context'.
14594         * class.c (inflate_generic_context): Simplify.  Return a struct
14595         rather than allocating on the heap.
14596         (mono_class_inflate_generic_method_full): Update to changes.  Now,
14597         doesn't salt away a copy of the context -- simplifying the
14598         lifetime rules of a 'MonoGenericContext *'.
14599         (mono_method_get_context): Return pointer to embedded context.
14600         (setup_generic_array_ifaces): Allocate temporary context on stack.
14601         * reflection.c (inflate_mono_method): Likewise.
14602         (mono_reflection_bind_generic_method_parameters): Likewise.
14603         Use the context embedded within the inflated method as the hash key.
14604
14605         Avoid a source of allocation of 'MonoGenericContext'.
14606         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
14607         and 'cached_context' fields into embedded 'MonoGenericContext' field.
14608         * class.c: Update to changes.
14609         (mono_generic_class_get_context): Simplify drastically.  Now just
14610         returns a pointer to the field.
14611         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
14612         argument as a const pointer.
14613         (mono_metadata_generic_context_equal): Likewise.
14614         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
14615         Update to changes.
14616
14617 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
14618
14619         * verify.c improved the handling of brtrue/brfalse, factored out common code
14620
14621 2007-06-14  Raja R Harinath  <rharinath@novell.com>
14622
14623         Kill MonoGenericMethod.
14624         * class-internals.h (MonoGenericContext::method_inst): Rename from
14625         'gmethod' and convert to a MonoGenericInst.
14626         (MonoGenericMethod): Remove.
14627         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
14628         * loader.c (method_from_methodspec): Update to changes.  Use a
14629         MonoGenericContext as the key to the hashtable.
14630         * metadata.c (mono_metadata_generic_context_equal): Rename from 
14631         'mono_metadata_generic_method_equal' and take MonoGenericContext.
14632         (mono_metadata_generic_context_hash): Likewise from
14633         'mono_metadata_generic_method_hash'.  Change hash function.
14634         (mono_metadata_load_generic_params): Update to changes.
14635         (mono_get_shared_generic_method): Remove.
14636         * metadata-internals.h (mono_get_shared_generic_method): Remove.
14637         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
14638         (inflate_generic_context): Likewise.
14639         (mono_class_inflate_generic_method_full): Likewise.
14640         (setup_generic_array_ifaces): Likewise.
14641         (mono_class_create_from_typespec): Likewise.
14642         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
14643         (method_encode_methodspec): Update callsite.
14644         (reflection_methodbuilder_to_mono_method): Update to changes.
14645         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
14646         MonoGenericContext as the key to the hashtable.
14647         (inflate_mono_method): Update to changes.
14648
14649         * class-internals.h (MonoGenericMethod::container): Remove.
14650         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14651
14652 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14653
14654         * profiler-private.h, profiler.c, profiler.h: added API to profile
14655         exception events.
14656
14657 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14658
14659         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
14660
14661 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14662
14663         * verify.c: method invocation is now validated, now we verify parameter types on stack.
14664         Fixed overflow and underflow not aborting the verification process.
14665
14666 2007-06-13  Mark Probst  <mark.probst@gmail.com>
14667
14668         * class-internals.h (MonoStats): Added stats entries for dynamic
14669         code allocations.
14670
14671 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
14672
14673         * loader.c (mono_free_method): Free header->locals and header->clauses.
14674
14675         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
14676         dynamic case.
14677
14678         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
14679
14680         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
14681
14682 2007-06-12  Raja R Harinath  <rharinath@novell.com>
14683
14684         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
14685         the tables.
14686
14687 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14688
14689         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
14690
14691 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14692
14693         MonoGenericMethod on a diet
14694         * class-internals.h (_MonoMethodInflated::reflection_info): Move
14695         here ...
14696         (_MonoGenericMethod::reflection_info): ... from here.
14697         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
14698         Update to changes.
14699         * reflection.c (inflate_mono_method): Likewise.
14700         (mono_reflection_bind_generic_method_parameters): Likewise.
14701
14702 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14703
14704         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
14705         *verify.c: factored long ldarg forms to share code with short forms
14706
14707 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14708
14709         *verify.c: fixed code formating factored some duplicate code
14710         into a new function
14711
14712         *verify.h: fixed binary incompatibility introduced earlier
14713
14714         *pedump.c: fixed formating
14715
14716 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14717
14718         Fix assertion when disassembling Mono.C5.dll
14719         * loader.c (method_from_methodspec): Avoid inflating a method
14720         twice with the same context.  If the methodref is inflated, use
14721         the declaring method instead.
14722
14723         * class.c (mono_class_from_generic_parameter): Fix case similar to
14724         bug #81830 handled below, but for method containers.
14725
14726 2007-06-10  Raja R Harinath  <harinath@gmail.com>
14727
14728         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
14729         get_shared_generic_class.  Directly inflate the instance.
14730         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
14731         (inflate_generic_class): Delete.
14732         (get_shared_generic_class): Delete.  Move setting of
14733         'cached_class' and 'cached_context' ...
14734         * metadata.c (mono_metadata_lookup_generic_class): ... here.
14735
14736         * metadata.c (mono_metadata_lookup_generic_class): Change
14737         signature to take the components of a MonoGenericClass rather than
14738         an allocated MonoGenericClass.  Change semantics to be intern-like.
14739         * reflection.c (mono_class_bind_generic_parameters): Update to
14740         changes.  Make locking region tighter.
14741         * class.c (inflate_generic_class): Update to changes.
14742         (get_shared_generic_class): Likewise.
14743         * metadata-internals.h: Likewise.
14744
14745         * reflection.c (mono_class_bind_generic_parameters): Take and
14746         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
14747         (mono_reflection_bind_generic_parameters): Use
14748         'mono_class_bind_generic_parameters' rather than duplicate the code.
14749         * class.c (mono_bounded_array_class_get): Update to changes.
14750         * object-internals.h: Likewise.
14751
14752         * reflection.c (mono_class_bind_generic_parameters): Only support
14753         parameterizing generic type definitions.  Remove support for other
14754         open types.
14755
14756 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
14757
14758         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
14759
14760         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
14761         in the dynamic case.
14762
14763 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
14764
14765         * threads.c: When cleaning up thread, reset the Background bit.
14766         Fixes bug #81720.
14767
14768 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
14769
14770        * metadata.c: Move variable declarations to top of scope.
14771        * verify.c: Move variable declarations to top of scope.
14772
14773        Code is contributed under MIT/X11 license.
14774
14775 2007-06-08  Raja R Harinath  <rharinath@novell.com>
14776
14777         * reflection.c (mono_class_bind_generic_parameters): Replace
14778         open-coded loop with mono_metadata_inflate_generic_inst.
14779
14780         * class.c (get_shared_generic_class): Don't call
14781         mono_get_shared_generic_inst.  Use the container's own
14782         'class_inst'.
14783
14784         * metadata.c (mono_metadata_load_generic_params): Move
14785         initialization of 'context' field here from ...
14786         * class.c (mono_class_create_from_typedef): ... here, and ...
14787         * loader.c (mono_get_method_from_token): ... here.
14788
14789         * class.c (get_shared_generic_class): Rename from
14790         mono_get_shared_generic_class and make static.
14791         (mono_get_shared_generic_inst): Move to metadata.c.
14792         * loader.c (mono_get_shared_generic_method): Likewise.
14793         * class-internals.h, metadata-internals.h: Update to changes.
14794
14795         Fix #81830
14796         * class.c (mono_class_from_generic_parameter): Don't assume a
14797         generic container owner exists.  Generic containers from monodis
14798         don't have any.
14799
14800 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
14801
14802         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
14803         * verify.h: new typedefs to returns the non-verifiable status
14804         * verify.c: initial implementation of generics, stack merging and object compatibility check
14805
14806 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14807
14808         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14809         a MonoInternalHashTable again (fixed bug in internal hash table
14810         code).
14811
14812 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14813
14814         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14815         MonoInternalHashTable again (fixed bug in internal hash table
14816         code).
14817
14818 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14819
14820         * class.c, image.c, class-internals.h, domain.c,
14821         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
14822         changes.  Have to figure out what makes them break the SWF
14823         regression.
14824
14825 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14826
14827         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14828         a MonoInternalHashTable now.
14829
14830 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14831
14832         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14833         MonoInternalHashTable now.
14834
14835 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14836
14837         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14838         invoke_impl code.
14839
14840         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14841
14842         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14843         dependent trampoline.
14844
14845         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14846
14847         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14848
14849 2007-05-29  Robert Jordan  <robertj@gmx.net>
14850
14851         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14852
14853 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14854
14855         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14856
14857 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14858
14859        * marshal.c: Fix interface lookup loops for
14860        cominterop_get_com_slot_for_method and 
14861        cominterop_get_method_interface. Only need to lookup
14862        if type is a class, else use interface type method is on.
14863
14864        Code is contributed under MIT/X11 license.
14865
14866 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14867
14868         * reflection.c: HasSecurity can be present even if no specially 
14869         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14870         SecurityAttribute). Fix CAS regression tests on buildbot.
14871
14872 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14873
14874        * appdomain.c: Add configure checks for header files.
14875        * image.c: Add configure checks for header files.
14876        * file-io.c: Add configure checks for header files.
14877        * debug-mono-symfile.c: Add configure checks for header files.
14878        * threadpool.c: Add configure checks for header files.
14879        * console-io.c: Add configure checks for header files.
14880        * profiler.c: Add configure checks for header files.
14881        * rawbuffer.c: Add configure checks for header files.
14882        * icall.c: Add configure checks for header files.
14883        * rand.c: Add configure checks for header files.
14884        * socket-io.c: Add configure checks for header files.
14885
14886        Code is contributed under MIT/X11 license.
14887
14888 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14889
14890         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14891         assertion as it breaks the build.
14892         
14893         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14894
14895         * reflection.c (lookup_custom_attr): Make a copy here too.
14896
14897         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14898         dynamic images.
14899
14900         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14901         images.
14902
14903         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14904         info.
14905
14906 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14907
14908         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14909         (load_cattr_value): Ditto.
14910
14911 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14912
14913         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14914
14915 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14916
14917         * threads.c: In "start_wrapper", set apartment_state to MTA if
14918         apartment_state is Unknown and we're running on 2.0 profile or
14919         higher.
14920         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14921         to main method, then set apartment_state to Unknown on 1.0 profile,
14922         and MTA on 2.0 profile.
14923
14924 2007-05-16  Jb Evain  <jb@nurv.fr>
14925
14926         * class-internals.h (MonoDefaults): Add an attribute_class and
14927           customattribute_data_class.
14928         * domain.c (mono_init_internal): Populate them.
14929         * reflection.c: Use them to remove duplicates. Make a vew
14930         MonoClass variables `static'.
14931
14932 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14933
14934         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14935         step in implementing IMT, so that all isinst checks now can go
14936         through the bitmap.
14937         This was needed because vtables for TransparentProxy need to look
14938         like the vtable of the "target" class, so they need to point to
14939         its interface bitmap directly.
14940
14941         * object.c: inside "mono_class_create_runtime_vtable" and
14942         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14943
14944 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14945
14946         * object-internals.h
14947           culture-info.h : added territory field in MonoCulture and
14948           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14949         * locales.c : fill territory field above too.
14950         * culture-info-table.h : regenerated.
14951
14952 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14953
14954         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14955         Fixes #81599.
14956
14957 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14958
14959         * object.c: Always initialize apartment, even if 
14960         there is no custom attributes on entry point.
14961         
14962         Code is contributed under MIT/X11 license.
14963
14964 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14965
14966         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14967         * metadata.c: If no encoding is set, check for unicode
14968         on class.
14969         
14970         Code is contributed under MIT/X11 license.
14971
14972 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14973
14974         * threads.c: Handle if mono_thread_current returns NULL 
14975         
14976         Code is contributed under MIT/X11 license.
14977
14978 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14979
14980         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14981         in start_wrapper. Added mono_thread_init_apartment_state and
14982         mono_thread_cleanup_apartment_state.
14983         * object.c: Initialize thread apartment state on main thread
14984         by checking for STAThreadAttribute on entry point.
14985         * object-internals.h: Add apartment_state field to MonoThread.
14986         * threads-types.h: Add unmanaged definition of 
14987         System.Threading.ApartmentState, MonoThreadApartmentState.
14988         
14989         Code is contributed under MIT/X11 license.
14990         
14991 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14992
14993         * class.c: Fix windows build.
14994         * class-internals.h: Fix windows build.
14995         
14996         Code is contributed under MIT/X11 license.
14997
14998 2007-05-08  Robert Jordan  <robertj@gmx.net>
14999
15000         * process.c (CreateProcess_internal):
15001         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
15002         .CreateNoWindow was specified. Fixes #81496.
15003
15004 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15005
15006         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
15007         step in implementing IMT, replaced it with two compact arrays
15008         (interfaces_packed and interface_offsets_packed) and a bitmap that
15009         is used for isinst checks (interface_bitmap).
15010
15011         * class.c: (compare_interface_ids): compare function to pass to
15012         bsearch when looking for an interface with a given id.
15013         (mono_class_interface_offset): reimplemented using bsearch on
15014         interfaces_packed, getting the offset from interface_offsets_packed.
15015         (print_implemented_interfaces): utility debugging function.
15016         (setup_interface_offsets): reworked to initialize interfaces_packed,
15017         interface_offsets_packed and interface_bitmap.
15018
15019         * object.c: replaced all accesses to "MonoClass.interface_offsets"
15020         with uses of interfaces_packed and interface_offsets_packed.
15021
15022 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15023
15024         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
15025         mono_class_interface_offset prototype to wrap all accesses to
15026         "MonoClass.interface_offsets".
15027
15028         * class.c: Implemented mono_class_interface_offset, and wrapped all
15029         accesses to "MonoClass.interface_offsets".
15030
15031         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
15032         "MonoClass.interface_offsets".
15033
15034 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15035
15036         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
15037         GetMethodFromHandle overloads (bug #78637).
15038
15039 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15040
15041         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
15042         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
15043
15044 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
15045
15046         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
15047         #81498.
15048
15049         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
15050         gracefully.
15051         (mono_custom_attrs_from_index): Ditto.
15052
15053         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
15054         Fixes #81501.
15055
15056 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
15057
15058         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
15059         is now allocated from a mempool.
15060
15061 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
15062
15063         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
15064         caller holds threads_lock, leading to deadlocks. Fixes #81476.
15065
15066 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
15067
15068         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
15069         mono_loader_clear_error () too late. Fixes #81463.
15070
15071 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
15072
15073         * culture-info-table.h : regenerated.
15074
15075 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
15076
15077         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
15078         is missing.
15079
15080 2007-04-25  Dick Porter  <dick@ximian.com>
15081
15082         * Makefile.am: Put the mingw enforced-optimisation back into the
15083         PLATFORM_WIN32 section.
15084
15085 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
15086
15087         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
15088         patch.
15089
15090         * image.c (mono_image_load_module): New API function to load a module reference.
15091
15092         * image.c (load_modules): Load modules lazily. Fixes #80812.
15093
15094         * class.c (mono_class_from_typeref): Use mono_image_load_module.
15095         
15096         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
15097
15098         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
15099         to mono_image_load_module_dynamic.
15100
15101 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
15102
15103         * marshal.c: Fix calling convention for CCW on non-windows
15104         platforms. STDCALL on windows, CDECL everywhere else to work 
15105         with XPCOM and MainWin COM.
15106         
15107         Code is contributed under MIT/X11 license.
15108
15109 2007-04-23  Martin Baulig  <martin@ximian.com>
15110
15111         Fix #80969.
15112
15113         * loader.c
15114         (method_from_memberref): Added `gboolean *used_context' argument.
15115         (mono_get_method_from_token): Likewise.
15116         (mono_get_method_full): Don't insert the method in the cache when
15117         `used_context' is true.
15118
15119 2007-04-23  Raja R Harinath  <rharinath@novell.com>
15120
15121         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
15122
15123         * reflection.c (mono_reflection_bind_generic_parameters): Don't
15124         create new MonoTypes for returned types.
15125         * class.c (mono_generic_class_get_class): Export mono-internal.
15126         * class-internals.h: Update to changes.
15127
15128 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15129
15130         * threadpool.c, threadpool.h, icall-def.h: patch from
15131         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
15132
15133 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
15134
15135         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
15136         
15137         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
15138
15139         * threads.c (mono_thread_get_stack_bounds): New helper function.
15140
15141         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
15142         Correctly compute stack bounds when attaching. Fixes #81394.
15143
15144 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
15145
15146         * reflection.c: fix handling of doubles in custom attributes
15147         for the arm-fpa format (bug #81368).
15148
15149 2007-04-18  Raja R Harinath  <rharinath@novell.com>
15150
15151         * reflection.c (assembly_add_win32_resources): Mildly relax an
15152         bounds check to let the end pointer point just past the end of the
15153         allocated buffer.  (may fix #81384)
15154
15155 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
15156
15157         * culture-info-table.h : regenerated.
15158
15159 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
15160
15161         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
15162         the thread is aborted early.
15163
15164 2007-04-05  Dick Porter  <dick@ximian.com>
15165
15166         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
15167         FindFirstFile()/FindNextFile() to find entries.  This lets the
15168         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
15169         81038.
15170
15171         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
15172         the parameters of
15173         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
15174
15175 2007-04-04  Martin Baulig  <martin@ximian.com>
15176
15177         * debug-helpers.c
15178         (mono_method_desc_full_match): Add support for nested classes.
15179
15180 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
15181
15182         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
15183
15184 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
15185
15186         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
15187         waiting for too many threads.
15188
15189 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
15190
15191         * environment.c: Fix return value check on uname so we can get the 
15192         executing version on Solaris operating systems.
15193
15194 2007-03-28  Jb Evain  <jbevain@gmail.com>
15195
15196         * class.c (mono_type_get_name_recurse): Complete the
15197         fix for the creation of assembly qualified names for
15198         pointer types. Fixes #81208.
15199
15200 2007-03-27  Dick Porter  <dick@ximian.com>
15201
15202         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
15203         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
15204         changed.
15205
15206         * threads.c
15207         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
15208         the value of ReleaseMutex().
15209
15210 2007-03-27  Dick Porter  <dick@ximian.com>
15211
15212         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
15213         in little-endian order, not network endian, so must be converted
15214         to host endian here.  Fixes bug 80593.
15215
15216 2007-03-22  Jb Evain  <jbevain@gmail.com>
15217
15218         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
15219         qualified names for pointer types. Fixes #81208.
15220
15221 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
15222
15223         * marshal.c: Add support for PreserveSigAttribute. 
15224         
15225         Code is contributed under MIT/X11 license.
15226
15227 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
15228
15229         * process.c: Fix endianness issues. Fixes #81126.
15230
15231         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
15232         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
15233
15234         * image.c (mono_image_lookup_resource): Make this work on big-endian
15235         machines.Change API contract so the caller needs to free the return value.
15236         
15237         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
15238         API change.
15239         
15240 2007-03-14  Martin Baulig  <martin@ximian.com>
15241
15242         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
15243         mono_type_get_desc() as well.
15244
15245 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
15246
15247         * icall.c:  Fix environ access in VS.  
15248         
15249 2007-03-13  Alp Toker  <alp@atoker.com>
15250
15251         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
15252         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
15253         #63841.
15254
15255 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
15256
15257         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
15258         circular references among dynamic methods. Fixes #81091.
15259
15260         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
15261
15262 2007-03-09  Martin Baulig  <martin@ximian.com>
15263
15264         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
15265
15266 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
15267
15268         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
15269         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
15270         
15271         Code is contributed under MIT/X11 license.
15272         
15273 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
15274
15275         * loader.c: Reapply patch for bug #79424.
15276
15277 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15278
15279         * metadata.c (mono_type_to_unmanaged): Only convert object to
15280         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
15281
15282 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
15283
15284         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
15285         (and incorrectly set) is_reference field from MonoGenericInst.
15286
15287 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15288
15289         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
15290         a little earlier.
15291
15292         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
15293
15294         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
15295
15296 2007-03-05  Miguel de Icaza  <miguel@novell.com>
15297
15298         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
15299         FileOptions.1 value to mean "temporary", map that to
15300         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
15301
15302         Fixes 80688
15303
15304 2007-03-03  Marek Habersack  <mhabersack@novell.com>
15305
15306         * appdomain.c: implement MS .Net style shadow copying. Copies of
15307         the assemblies are made in a subdirectory of the dynamic base
15308         directory, the assembly names are preserved.
15309         Copy .mdb and .config files along with the assemblies being shadowed.
15310
15311 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15312
15313         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
15314         (emit_marshal_handleref): Ditto.
15315
15316         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
15317         on Visual C++. Fixes #80671.
15318
15319 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15320
15321         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
15322         for clone operations.
15323
15324 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15325
15326         * marshal.c: Fix warnings.
15327
15328 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
15329
15330         * loader.c: allow case-insensitive matching of the dll name
15331         in dllmap handling when prefixed with "i:".
15332
15333 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
15334
15335         * threads.c: Fix #ifdef for dummy_apc function for VS.
15336
15337 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
15338
15339         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
15340
15341 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
15342         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
15343         giving precedence to the methods with a fully qualified name
15344         (InterfaceName.MethodName) when building the interface sections
15345         of the vtable.
15346
15347 2007-02-16  Dick Porter  <dick@ximian.com>
15348
15349         * threadpool.c (append_job): Fix fast-path array handling, so it's
15350         less likely the array will grow exponentially when the load is
15351         heavy.
15352
15353 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15354
15355         * metadata-internals.h, loader.c: fix dllmap lookup order
15356         for non-function maps, too, and prepare for fallback code.
15357
15358 2007-02-12  Robert Jordan  <robertj@gmx.net>
15359
15360         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
15361         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
15362         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
15363         GlobalFree. Fixes a part of bug #77075.
15364
15365 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
15366
15367         * loader.c: implemented typedef parent in field memberref.
15368
15369 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
15370
15371         * marshal.c: Fix warnings and remember to call Release on
15372         IUnknown of RCW.
15373         
15374         Code is contributed under MIT/X11 license.
15375
15376 2007-02-10  Miguel de Icaza  <miguel@novell.com>
15377
15378         * class-internals.h: Add MonoHandleRef definition, and
15379         handleref_class to mono_defaults. 
15380
15381         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
15382         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
15383
15384         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
15385         (do nothing on this stage)
15386         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
15387         (emit_marshal_handleref): New method, used for argument handling
15388         of HandleRefs. 
15389
15390 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
15391
15392         * class.c (mono_class_setup_parent): Lazily init com types.
15393         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
15394         init com types.
15395         * object.c (mono_remote_class_vtable): Lazily init com types.
15396         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
15397         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
15398         * domain-internals.h: Expose mono_init_com_types.
15399         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
15400         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
15401         Add support for COM Callable Wrapper marshalling.
15402         * marshal.h: Add icall definitions.
15403         * gc.c: Handle freeing of CCWs in finalizer code.
15404         
15405         Code is contributed under MIT/X11 license.
15406
15407 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
15408
15409         * reflection.c: changed all the signature encoding code to use
15410         a variable-sized buffer.
15411
15412 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15413
15414         * marshal.c: locking fixes: never take the loader lock
15415         or other runtime locks when holding the marshal lock
15416         (fixes bug#80664).
15417
15418 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
15419
15420         * marshal.c: make the delegate function pointer mapping
15421         work for the moving GC.
15422
15423 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
15424
15425         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
15426         for bug #80618.
15427
15428 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15429
15430         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
15431         gmodule.
15432
15433 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15434
15435         * threadpool.c: made the code moving-GC safe.
15436
15437 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
15438
15439         * assembly.c, boehm-gc.c, class-internals.h, class.c,
15440         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
15441         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
15442         warning cleanup.
15443         * reflection.c: warning cleanup, some threading and moving GC fixes.
15444
15445 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
15446
15447         * class.c, loader.c: create the needed Set/Get/Address array methods
15448         as well as the .ctors in mono_class_init (), fixes bug #80567.
15449
15450 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
15451
15452         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
15453         we doesn't decrease its alignment. Should fix the sparc build.
15454
15455 2007-01-24  Dick Porter  <dick@ximian.com>
15456
15457         * socket-io.c
15458         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
15459         Create the returned object if we need to ignore an unsupported
15460         socket option.  Fixes a segfault reported by Atsushi.
15461
15462 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
15463
15464         * class.c, object.c: restrict GC-tracked fields to
15465         UIntPtr fields used inside corlib, so we provide better
15466         type info to the GC and also allow broken packing as in
15467         bug #80580.
15468
15469 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
15470
15471         * sgen-gc.c: removed duplicated function.
15472
15473 2007-01-19  Miguel de Icaza  <miguel@novell.com>
15474
15475         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
15476         value that means that the value is not supported, but that we
15477         should not return a failure, but instead report this as a
15478         successful operation.
15479
15480 2007-01-19  Raja R Harinath  <rharinath@novell.com>
15481
15482         Fix tests/bug79956.2.il
15483         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
15484         (mono_generic_class_get_class): If the generic definition in an
15485         enum, copy over other fields related to it.
15486
15487 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15488
15489         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
15490         genericinst enums (bug #79215).
15491
15492 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
15493         * class.c: Fix bug 80307.
15494
15495 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
15496
15497         * image.c: if the file table is not present, try to load
15498         all the modules, since we don't have info about them
15499         having or not metadata (bug #80517).
15500         * assembly.c: allow mono_assembly_load_references () to
15501         work for netmodules.
15502
15503 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15504
15505         * image.c, metadata-internals.h, object.c: execute module
15506         cctors when running on the 2 runtime if present (bug #80487).
15507
15508 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
15509
15510         * icall.c: optimized InitializeArray() on bigendian.
15511
15512 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
15513
15514         * icall.c: fix for the broken ARM FPA double format.
15515
15516 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15517
15518         * icall.c: handle endian issues for r4 and r8 types, too, in
15519         the InitializeArray() icall.
15520
15521 2007-01-15  Miguel de Icaza  <miguel@novell.com>
15522
15523         * loader.c (mono_loader_error_prepare_exception): Clear the error
15524         once we have extracted the information from it, do this before we
15525         call into the JIT's class loading mechanisms.
15526
15527         * object.c (mono_class_create_runtime_vtable): Do not clear the
15528         loader error before calling mono_class_get_exception_for_failure
15529         as the loader error is needed inside
15530         mono_class_get_exception_for_failure to throw the error (thinko).
15531
15532         Fixes #80521
15533         
15534 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15535
15536         * reflection.c: align fields rva data so it's faster to load at
15537         runtime.
15538
15539 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15540
15541         Prepare to simplify GenericMethod handling.
15542         * class-internals.h (mono_method_get_context): New accessor function.
15543         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
15544         rather than directly accessing '->context' field.
15545
15546         * class-internals.h (_MonoGenericParam.method): Move ...
15547         (_MonoGenericContainer): ... here.  Add into union with klass field.
15548         * class.c, icall.c, loader.c, metadata.c, reflection.c:
15549         Update to changes.
15550
15551 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
15552
15553         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
15554         the wrapper type enum and reduce relocations.
15555
15556 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15557
15558         * reflection.c (inflate_mono_method): Reuse method instantiation
15559         from the generic method, if available.
15560
15561 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15562
15563         * marshal.c (emit_marshal_variant): Fix conv_arg
15564         type in last commit, based on whether parameter is byref.
15565         
15566 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15567
15568         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
15569         marshalling.
15570         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
15571         MONO_TYPE_OBJECT back for VARIANT support.
15572
15573 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15574
15575         * marshal.c, marshal.h, icall-def.h: Implement 
15576         Marshal.ReAllocCoTaskMem.
15577
15578 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
15579
15580         * marshal.c: memory retention fixes: use the proper
15581         image cache for runtime_invoke method lookups.
15582
15583 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15584
15585         * mempool.c: added code to help debug mempool allocations.
15586
15587 2007-01-11  Dick Porter  <dick@ximian.com>
15588
15589         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
15590         support (experimenting with faking it with IP_MTU_DISCOVER for
15591         systems that don't have IP_DONTFRAGMENT.)
15592         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
15593         icall.
15594
15595         * icall-def.h: new System.Net.Sockets.Disconnect icall.
15596
15597         * socket-io.h: Add new fields to MonoSocketAsyncResult
15598         corresponding to the new ones in Socket.cs.
15599
15600 2007-01-11  Raja R Harinath  <rharinath@novell.com>
15601
15602         Fix IronPython regression mentioned in #80249
15603         * metadata.c (do_mono_metadata_parse_generic_class): Clear
15604         'cached_context' field, since it may have been initialized as a
15605         side-effect of metadata parsing.
15606
15607         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
15608         (_MonoGenericClass.cached_class): Move here and rename from lone
15609         remaining field of ...
15610         (_MonoInflatedGenericClass): ... this.  Remove.
15611         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
15612         to changes.
15613
15614         Fix mcs/tests/test-128.cs regression.
15615         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
15616         2007-01-10 change below.
15617         [MONO_TYPE_OBJECT]: Recurse into array case.
15618
15619 2007-01-11  Raja R Harinath  <harinath@gmail.com>
15620
15621         * class-internals.h (mono_get_inflated_generic_class): Remove.
15622         * class.c (mono_get_inflated_generic_class): Remove.
15623         (mono_generic_class_get_class): Rename from
15624         mono_class_create_generic.
15625         (mono_class_from_mono_type) [GENERICINST]: Use it.
15626         * reflection.c, metadata.c: Update to changes.  Use
15627         'mono_class_from_mono_type'.
15628
15629 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
15630
15631         * reflection.c: use passed type when encoding an array element
15632         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
15633
15634 2007-01-09  Robert Jordan  <robertj@gmx.net>
15635
15636         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
15637         result arguments (someDelegate.EndInvoke (unrelatedAres)).
15638         Fixes bug #80392.
15639
15640 2007-01-09  Raja R Harinath  <rharinath@novell.com>
15641
15642         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
15643
15644         * object.c (set_value): Avoid aliasing between type->data.klass
15645         and type->data.generic_class.
15646
15647         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
15648
15649 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15650
15651         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
15652         between type->data.klass and type->data.generic_class.
15653
15654 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
15655
15656         * marshal.c: In MS.NET, StringBuilder objects are not copied by
15657         value in out parameters.
15658
15659 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15660
15661         Simplify invariant for MonoGenericClass::klass field.
15662         * class.c (mono_class_create_generic): Verify 'klass' is null.
15663         * metadata.c (do_mono_metadata_parse_generic_class): Don't
15664         initialize 'klass' field.
15665
15666 2007-01-05  Raja R Harinath  <rharinath@novell.com>
15667
15668         Ongoing work to avoid redundant data and simplify invariants.
15669         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
15670         'generic_class', and change type to a GenericInst.
15671         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
15672         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15673
15674 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
15675
15676         * class.c : skip io-layer under PLATFORM_WIN32.
15677
15678 2007-01-03  Tor Lillqvist  <tml@novell.com>
15679
15680         Fix #80305: In a bundled executable, look in the bundled exe
15681         assembly to determine the runtime version. Add the possibility to
15682         bundle also the machine.config file.
15683         
15684         * assembly.c (mono_assembly_open_from_bundle): Make
15685         non-static. Allow being called even if we have no bundled
15686         assemblies, and return NULL right away in that case.
15687
15688         * domain-internals.h: Declare mono_assembly_open_from_bundle()
15689         here.
15690
15691         * domain.c (app_config_parse): Take an assembly exe file name as
15692         parameter instead of a config file name. Check for a bundled
15693         config file for that assembly by calling
15694         mono_config_string_for_assembly_file() (see below) before looking
15695         for one in the file system.
15696         (get_runtimes_from_exe): Corrsponding change to call of
15697         app_config_parse().
15698         (get_runtimes_from_exe): Check for bundled assembly exe file first
15699         by calling mono_assembly_open_from_bundle(). If no bundled
15700         assembly exe file is found, call mono_image_open() as before to
15701         look it up in the file system.
15702
15703         * mono-config.c: Add variable bundled_machinec_onfig.
15704         (mono_config_string_for_assembly_file): New function.
15705         (mono_config_for_assembly): Move code snippet that looks for a
15706         bundled assembly .config file into the above new function. Call
15707         it.
15708         (mono_register_machine_config, mono_get_machine_config): New
15709         functions to set and retrieve
15710
15711         * assembly.h: Declare mono_register_machine_config().
15712
15713         * mono-config.h: Declare mono_get_machine_config() and
15714         mono_config_string_for_assembly_file().
15715
15716         * icall.c: No declaration of environ necessary on Win32. It is
15717         declared (as a macro expanding to a function call) in stdlib.h.
15718         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
15719         New internal mono function. Returns the value of
15720         mono_get_machine_config() as a Mono string.
15721
15722         * icall-def.h: Add get_bundled_machine_config().
15723
15724 2007-01-04  Raja R Harinath  <rharinath@novell.com>
15725
15726         Remove redundant field
15727         * class-internals.h (_MonoGenericContext.container): Remove field.
15728         * loader.c (mono_method_get_signature_full): Don't parse a
15729         "container" for a signature parse when the signature is inflated
15730         immediately.
15731         (method_from_methodspec): Likewise, for a generic_inst.
15732         * class.c, metadata.c, reflection.c: Update to changes.
15733
15734 2006-01-04  Raja R Harinath  <rharinath@novell.com>
15735
15736         * class-internals.h (_MonoGenericClass): Rename 'context' field to
15737         'cached_context', and change semantics -- it starts off NULL, and
15738         is initialized on demand.
15739         * class.c (mono_generic_class_get_context): New accessor to
15740         replace 'context' field accesses.
15741         (mono_class_get_context): New helper.
15742         (*): Update to changes.
15743         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
15744
15745 2007-01-03  Miguel de Icaza  <miguel@novell.com>
15746
15747         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
15748         before the memcpy.   Fixes Marshal2 regression.
15749
15750 2007-01-02  Jb Evain  <jbevain@gmail.com>
15751
15752         * blob.h: add a MONO_TYPE_ENUM definition
15753         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
15754         fix the encoding of arrays of enums in custom attributes.
15755
15756         Fixes #79666.
15757
15758 2007-01-01  Miguel de Icaza  <miguel@novell.com>
15759
15760         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
15761         string is null terminated, but only cut the string short if it
15762         overflows the buffer.   
15763         
15764         (mono_string_to_byvalstr): Also fix this routine.   The code here
15765         was not properly terminating a string (it was only terminated
15766         because of the previous catch-all memset). 
15767
15768         I left the memset, because I do not know if applications expect
15769         the runtime to clear this region. 
15770
15771         Fixes #79944.
15772
15773         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
15774         Clear the error before returning to unmanaged code to prevent the
15775         runtime from being confused later on (fixes  80420).
15776         (ves_icall_type_from_name): Always call mono_loader_clear_error
15777         after parsing a type that could have failed.
15778         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
15779
15780         * loader.c (mono_loader_clear_error): Fix indentation.
15781
15782 2006-12-28  Martin Baulig  <martin@ximian.com>
15783
15784         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
15785
15786 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15787
15788         * reflection.c: patch from Rolf Bjarne Kvinge to fix
15789         getting a token for an EnumBuilder.
15790
15791 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
15792
15793         * reflection.c: be more careful in case resource generation
15794         fails to create the data array.
15795
15796 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15797
15798         * sgen-gc.c: write barrier for clone and fix unregister handles.
15799
15800 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15801
15802         * reflection.c: some fixes needed in the generics code for the moving GC.
15803
15804 2006-12-22  Robert Jordan  <robertj@gmx.net>
15805
15806         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
15807         account. Fixes bug #80299.
15808
15809 2006-12-21  Raja R Harinath  <rharinath@novell.com>
15810
15811         Fix WaitHandle usage in delegates.
15812         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
15813         * object.c (mono_wait_handle_new): Use the property set method to
15814         initialize the handle.
15815         (mono_wait_handle_get_handle): New.
15816         * threadpool.c (mono_async_invoke): Use it.
15817         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
15818         Likewise.
15819         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
15820
15821 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
15822
15823         * marshal.c (emit_marshal): Call emit_marshal_variant and
15824         emit_marshal_com_interface when applicable.
15825         (emit_marshal_variant, emit_marshal_com_interface): Add
15826         methods for this case and remove if's from emit_marshal_object.
15827         
15828 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
15829
15830         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
15831
15832 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15833
15834         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15835         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15836         and GlobalFree on Windows. Remove FIXME.
15837
15838 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15839
15840         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15841         implementation for managed objects.
15842
15843 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15844
15845         * object.c: implemented code to be used for checking
15846         that no reference field overlaps with non-references.
15847
15848 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15849
15850         * threadpool.c: fix queue code to be compatible with the
15851         moving GC.
15852
15853 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15854
15855         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15856         in structures by throwing ArgumentNullException.
15857
15858         (emit_marshal_safehandle): Also when they are null parameters.
15859
15860         (emit_marshal_safehandle): Add support for ref
15861         SafeHandles parameters
15862
15863 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15864
15865         * profiler.c: updated to use the mono-dl API instead of
15866         gmodule.
15867
15868 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15869
15870         * profiler.c: updated to use the mono-dl dynamic loading
15871         API instead of gmodule.
15872
15873 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15874
15875         * profiler.c: use readlink, older versions of glib don't have
15876         g_file_read_link ().
15877
15878 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15879
15880         * profiler.c: try to detect the path to mono if libc fails to provide
15881         a useful name (bug #80286).
15882
15883 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15884
15885         Fix #80242
15886         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15887         instance, use the generic type definition instead.
15888         (ves_icall_Type_GetNestedTypes): Likewise.
15889         * class.c (mono_class_create_generic): Always set the
15890         nested_classes of a generic instance to NULL, even if the generic
15891         type definition has nested types.
15892
15893 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15894
15895         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15896         and fix on Linux.
15897         
15898 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15899
15900         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15901         my arguments were in the wrong order.   I also fixed the Windows
15902         version which seems to have had the same issue.
15903
15904         (mono_free_bstr): On Unix, this is g_free.
15905         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15906         conversions (for the tests in corlib to pass).
15907
15908 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15909
15910         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15911         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15912         exception if a ref SafeHandle in a struct has changed).
15913         
15914         (emit_struct_conv): Do not perform layout checks for classes
15915         derived from SafeHandle, as those are specially handled. 
15916
15917         (emit_object_to_ptr_conv): Add support for
15918         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15919
15920         (emit_marshal_safehandle): Implement conversion of return values
15921         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15922         
15923         * threads.c: WaitHandle now is compiled with two different handles
15924         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15925         for 2.0.
15926         
15927         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15928         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15929         these routines to cope with both kinds of fields.
15930
15931 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15932
15933         * metadata.c (mono_type_to_unmanaged): Handle the case where
15934         type->data.klass is a SafeHandle, and in that case, return the
15935         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15936         MONO_MARSHAL_CONV_SAFEHANDLE. 
15937
15938 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15939
15940         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15941         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15942         calling emit_marshal_object.
15943
15944         (emit_marshal_safehandle): Implement marshalling of
15945         SafeHandle parameters (no ref support yet).
15946
15947         (MarshalAction): Document the defines as I implement
15948         them for SafeHandle.
15949
15950         (emit_marshal_object): indentation police.
15951
15952         * class-internals.h: Define MonoSafeHandle.
15953         Add safehandle_class to MonoDefaults type.
15954
15955         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15956         list of classes to check for fields. 
15957
15958         * domain.c (mono_init_internal): Add SafeHandle to the list of
15959         mono_defaults loaded.
15960
15961 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15962
15963         Fix #80253
15964         * reflection.c (mono_reflection_bind_generic_parameters): If the
15965         generic type definition is a type builder, ensure that it is fully
15966         initialized before instantiating it.  Kill some dead code.
15967
15968 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15969
15970         * object.c: clear the loader_error () before loading
15971         more metadata stuff (bug #80258).
15972
15973 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15974
15975         * icall.c, icall-defs.h: type modifiers icalls for
15976         parameters and properties.
15977
15978 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15979
15980         * object.c, icall.c: fixed warnings.
15981
15982 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15983
15984         * marshal.c: fixed a couple of leaks and coding style in a few places.
15985
15986 2006-12-08  Dick Porter  <dick@ximian.com>
15987
15988         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15989         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15990         80173.
15991
15992 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15993
15994         * process.c: ProcessStartInfo may have only filename set and
15995         arguments can be NULL.
15996
15997 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15998
15999         * icall.c: fix leak found by Robert Jordan.
16000
16001 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16002
16003         * marshal.c, marshal.h: generate managed method to access an element
16004         of a multi-dimensional array.
16005
16006 2006-11-30  Paolo Molaro (lupus@ximian.com)
16007
16008         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
16009
16010 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16011
16012         * icall.c: back out GetFields () fix until the serialization code is
16013         fixed to not depend on the incorrect behaviour.
16014
16015 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
16016
16017         * profiler.c: provide defaults if none are set.
16018
16019 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
16020
16021         * Makefile.am, attrdefs.h: new public header file with
16022         constants for attributes for use by embedders.
16023
16024 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
16025
16026         * icall.c: GetFields () fix for bug #80064.
16027
16028 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
16029
16030         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
16031         removed long unused icalls.
16032
16033 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
16034   
16035         * marshal.c: 
16036                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
16037                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
16038                 can be generated without a delegate class.
16039                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
16040         
16041         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
16042
16043 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16044
16045         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
16046         #80069.
16047
16048 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16049
16050         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
16051         icall-def.h: added icalls needed by System.GC.
16052
16053 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
16054
16055         * loader.c: ensure the class in catch clauses is handled
16056         correctly for generics methods (fixes bug#79980).
16057
16058 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
16059
16060         * monitor.h, monitor.c: added mono_locks_dump () function
16061         to help debug deadlocks involving managed locks.
16062
16063 2006-11-13  Dick Porter  <dick@ximian.com>
16064
16065         * file-io.c (get_file_attributes): If the file is a symlink try
16066         and get the stat data for the target, but also add the
16067         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
16068         the specs for the windows symlink support, but will probably have
16069         to be reworked when I have test data from a vista machine.  Fixes
16070         bug 79887.
16071
16072 2006-11-13  Dick Porter  <dick@ximian.com>
16073
16074         * gc.c (mono_domain_finalize): 
16075         * marshal.c (mono_delegate_begin_invoke): 
16076         * threadpool.c (socket_io_init, mono_thread_pool_init)
16077         (mono_thread_pool_finish): 
16078         * monitor.c (mono_monitor_try_enter_internal): 
16079         * threads.c (mono_thread_resume, mono_thread_init)
16080         (mono_thread_suspend_all_other_threads)
16081         (mono_thread_execute_interruption): 
16082         * appdomain.c (mono_domain_unload): Check for NULL error returns
16083         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
16084         75733.
16085
16086 2006-11-11  Miguel de Icaza  <miguel@novell.com>
16087
16088         * process.c
16089         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
16090         Only close the handle if the value of the handle is not
16091         INVALID_HANDLE_VALUE.  This just makes the process a bit more
16092         robust.
16093
16094         Improvement for #75733, so that we do not run into this problem. 
16095
16096         
16097         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
16098         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
16099         internal variables.  Fixes #79462 
16100         
16101
16102 2006-11-09  Dick Porter  <dick@ximian.com>
16103
16104         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
16105         Use poll() not select().  Fixes bug 79397.
16106
16107 2006-11-09  Raja R Harinath  <rharinath@novell.com>
16108
16109         Fix #79872
16110         * assembly.c (mono_assembly_load_from_full): Check that the given
16111         image has an assembly manifest.
16112
16113 2006-11-09  Ankit Jain  <jankit@novell.com>
16114
16115         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
16116         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
16117         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
16118
16119 2006-11-07  Dick Porter  <dick@ximian.com>
16120
16121         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
16122         Put the old resolver behaviour back for pre-2.0 profiles.
16123
16124 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
16125
16126         * threadpool.c: precise GC and locking fixes.
16127
16128 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
16129
16130         * class.c: don't load types that have an explicit unaligned
16131         managed reference. Provide better info in the TypeLoad exception.
16132         Part of the fix for bug #79744.
16133         * object.c: use the correct check for class type load issues.
16134
16135 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
16136
16137         * class.c: enforce alignment of fields with managed references
16138         even when Pack=1 is forced by the user (bug #77788).
16139
16140 2006-11-03  Dick Porter  <dick@ximian.com>
16141
16142         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
16143         If the address reverse lookup fails, return it as the hostname
16144         anyway.  Fixes bug 79721.
16145
16146 2006-11-03  Dick Porter  <dick@ximian.com>
16147
16148         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
16149         Fix build on Windows.
16150
16151 2006-11-02  Dick Porter  <dick@ximian.com>
16152
16153         * icall-def.h: 
16154         * object-internals.h: 
16155         * exception.c (mono_get_exception_thread_interrupted): 
16156         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
16157         Fixes bug 74525.
16158
16159         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
16160         Check for pending Thread.Interrupt.
16161
16162 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
16163         * loader.c: Fixed bug 79684.
16164
16165 2006-10-27  Dick Porter  <dick@ximian.com>
16166
16167         * file-io.c (get_file_attributes): Force symlinks to directories
16168         to be returned as a regular file.  Fixes bug 79733.
16169 2006-10-26  Dick Porter  <dick@ximian.com>
16170
16171         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
16172         CreateFile to open a directory then we need to set the
16173         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
16174
16175 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
16176
16177         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
16178         friends.
16179
16180 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16181
16182         * sgengc.c: small cleanup of timer code.
16183
16184 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16185
16186         * sgen-gc.c: fix some warnings and start adding support for
16187         complete object removal on domain unload.
16188
16189 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
16190
16191         * assembly.c: build_assembly_name should not consider a version
16192         number without build or revision number invalid. Fixes bug #79715.
16193
16194 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
16195
16196         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
16197         call kernel32 function OutputDebugString directly.
16198         
16199         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
16200         
16201 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
16202
16203         * reflection.c: small cleanup, using a function to insert a MonoString
16204         in the string heap.
16205
16206 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
16207
16208         * reflection.c: moving GC fixes.
16209
16210 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
16211
16212         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
16213         all the objects with finalizers belonging to an unloading appdomain.
16214
16215 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
16216
16217         * sgen-gc.c: added ability to allocate even when the nursery is fully
16218         pinned and fixed a couple of bugs.
16219
16220 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
16221
16222         * threads.h: Revert the last change for now.
16223
16224         * threads.h (mono_thread_get_pending_exception): Rename this to
16225         mono_thread_get_undeniable_exception ().
16226
16227 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
16228
16229         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
16230         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
16231         when fname does not refer to valid assembly. This result in a more
16232         meaningful error message.
16233         * exception.c: added mono_get_exception_bad_image_format2 which 
16234         constructs a BadImageFormatException using the ctor taking a custom
16235         message and the file name. Passing in a NULL msg results in a default
16236         message.
16237         * exception.h: define mono_get_exception_bad_image_format2 function.
16238         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
16239         when file name pointed to an invalid IL image. Use 
16240         mono_get_exception_file_not_found2 to construct FileNotFoundException,
16241         as this results in a more meaningful error message.
16242
16243 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
16244
16245         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
16246         #79465.
16247
16248 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
16249
16250         * metadata.c (mono_type_size): Change the align parameter to guint32 for
16251         consistency with the other _size functions.
16252         (mono_type_stack_size): Ditto.
16253
16254         * class.c object.c icall.c: Fix warnings caused by the above change.
16255
16256         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
16257
16258         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
16259
16260         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
16261
16262 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
16263
16264         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
16265         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
16266         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
16267         threadpool.h, threads-types.h: mark more internal functions.
16268
16269 2006-10-11  Dick Porter  <dick@ximian.com>
16270
16271         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
16272         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
16273         reproduce the bug even before applying the fix.)
16274
16275 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
16276
16277         * reflection.c: allow retrieving attributes for arguments in generic
16278         methods (bug #79241).
16279
16280 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
16281
16282         * debug-mono-symfile.c: properly check fopen () result (found by
16283         coverity).
16284
16285 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
16286
16287         * reflection.c: make error message clearer and fixed two
16288         issuelets found by Coverity.
16289
16290 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
16291
16292         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
16293
16294 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16295
16296         * object-internals.h, gc-internal.h, profiler-private.h:
16297         mark internal functions.
16298
16299 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16300
16301         * reflection.c: put data in the text section.
16302         * icall.c: recognize more types in type_from_typename ().
16303         * process.c, marshal.c: added some GC FIXMEs.
16304
16305 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16306
16307         * loader.c: check for NULL before initializing.
16308
16309 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
16310
16311         * gc.c (finalizer_thread): Use a non-alertable wait here.
16312
16313         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
16314         until the correct solution is found.
16315
16316 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16317
16318         * reflection.c (mono_module_get_object): Avoid an assert when operating on
16319         modules with no metadata. Fixes #79596.
16320
16321         * image.c (load_metadata_ptrs): Put back the error message when
16322         the #- heap is encountered since the support is not complete yet.
16323
16324 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16325
16326         * gc.c: do not allow the user to SuppressFinalize () a
16327         delegate because it would leak the trampoline if present.
16328
16329 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16330
16331         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
16332         PropertyPtr table.
16333
16334 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
16335
16336         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
16337
16338         * metadata.c (mono_metadata_get_param_attrs): Ditto.
16339
16340         * row-indexes.h: Add definitions for *Ptr tables.
16341
16342         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
16343
16344         * metadata.c (mono_metadata_translate_token_index): New helper function to
16345         translate table indexes used in uncompressed metadata.
16346         (mono_metadata_decode_table_row): Ditto.
16347         (mono_metadata_decode_table_row_col): Ditto.
16348
16349         * metadata.c: Add table schema for *Ptr tables.
16350
16351         * class.c loader.c: Use the new helper function to access the affected metadata
16352         tables.
16353         
16354         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
16355         #38532.
16356         
16357 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
16358
16359         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
16360         sequences which can be unbounded in size. Fixes #79583.
16361
16362 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
16363
16364         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
16365         static initialization.
16366
16367         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
16368
16369         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
16370
16371         * domain.c (mono_domain_free): Free up type_init_exception_hash.
16372
16373         * object.c (mono_runtime_class_init): Implement correct semantics when a static
16374         ctor fails, i.e. throw the same exception on subsequent accesses.
16375         
16376 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
16377
16378         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
16379         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
16380         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
16381         Handle marshalling of interfaces and VARIANTs contained in structs.
16382         
16383         Code is contributed under MIT/X11 license.
16384         
16385 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
16386
16387         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
16388         
16389         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
16390         mempool.
16391
16392 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16393
16394         * console-io.c: ignore previous SIGINT handler.
16395
16396 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
16397
16398         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
16399         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
16400         #79460, #79461, #79485.
16401
16402         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
16403
16404         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
16405         #79217.
16406
16407 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16408
16409         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
16410         could be generated from it.
16411
16412 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
16413
16414         * rand.c: fix read loop to correctly handle EINTR.
16415
16416 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16417
16418         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
16419         internal calls are defined to keep methods closer to the declaring
16420         type and allow a significant reduction in runtime relocations and
16421         memory usage.
16422
16423 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
16424
16425         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
16426         exception message to have FileNotFoundException use the default
16427         assembly load error message. Fixes bug #79426.
16428         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
16429
16430 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16431
16432         * threadpool.c: (start_thread_or_queue) use the root domain when
16433         creating the thread instead of the async object one.
16434
16435 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
16436
16437         * class.c, object.c, class-internals.h, reflection.c:
16438         for arrays, store element_size inside MonoClass (speedup
16439         for array object creation).
16440
16441 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
16442
16443         * icall.c: fixed CodeBase to use the file name and not the module
16444         name (bug #79365).
16445
16446 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16447
16448         * mono-debug.c, mono-debug.h: export find_method as
16449         mono_debug_find_method ().
16450
16451 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16452
16453         * debug-helpers.c, class-internals.h: added a few functions useful
16454         when debugging under gdb.
16455
16456 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16457
16458         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
16459         characters that need special handling.
16460
16461 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
16462
16463         * mono-config.c: make the os/cpu specification more flexible,
16464         allowing lists and negation.
16465
16466 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
16467
16468         * marshal.c: COM Interop fixes. Handle case where method->klass.
16469         is interface. Handle BSTR/MonoString when null. Use CDECL as 
16470         calling convention on non-windows platforms. This is for
16471         compatibility with XPCOM and MainWin COM.
16472         
16473         Code is contributed under MIT/X11 license.
16474         
16475
16476 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
16477
16478         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
16479         correctly. Fixes #79217.
16480
16481         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
16482
16483 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
16484
16485         * mono-config.c: allow both an os and cpu attribute for dllmap
16486         and dllentry elemnets to enable a single config file to be used
16487         for multiple architectures.
16488
16489 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
16490
16491         * loader.c: MonoLoaderError was cleared too soon on load failure.
16492         Fixes bug #79424.
16493
16494 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
16495
16496         * icall.c: use the defining class vtable when accessing a
16497         static field, not a pobblibly derived class.
16498
16499 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
16500
16501         * icall.c string-icalls.c: Remove references to unicode.h.
16502
16503         * unicode.h unicode.c Makefile.am: Remove these unused source files.
16504
16505         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
16506
16507         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
16508         indicating the image where custom marshaller types should be looked up.
16509         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
16510         custom marshallers, instead of corlib. Fixes #79425.
16511
16512 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
16513
16514         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
16515
16516 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
16517
16518         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
16519         Implement Environment.ProcessorCount.
16520         
16521         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
16522         Implement Environment.ProcessorCount.
16523         
16524         * icall.c: 
16525         Add Environment.ProcessorCount icall.
16526         
16527         Patch by Jason McFall.
16528
16529 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16530
16531         * assembly.c: don't append .exe/.dll when the filename already contains
16532         one of those extensions.
16533
16534 2006-09-12  Martin Baulig  <martin@ximian.com>
16535
16536         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
16537         to array interfaces.
16538
16539 2006-09-11  Martin Baulig  <martin@ximian.com>
16540
16541         * reflection.c (mono_image_build_metadata): Create the
16542         MethodImpl's after emitting all types and methods, so we don't
16543         need another fixup pass for them.
16544
16545 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
16546
16547         * class.c (mono_class_from_name_case): Fix regression introduced by the last
16548         change.
16549
16550 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
16551
16552         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
16553         unload.
16554
16555 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
16556
16557         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
16558         args is not set. Fixes #78926.
16559
16560 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
16561
16562         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
16563
16564         * image.c (load_class_names): Move this to class.c, and rename it to 
16565         'mono_image_init_name_cache'.
16566         (load_modules): Fix a warning.
16567
16568         * class.c icall.c image.c: Initialize image->name_cache lazily.
16569
16570         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
16571         on its name using information in the AOT file.
16572
16573         * class.c (mono_class_from_name): Use the new hook function.
16574
16575 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
16576
16577         * reflection.c (mono_param_get_objects): Handle enum default parameter values
16578         correctly.
16579
16580         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
16581         Fixes #79289.
16582         
16583 2006-09-06  Martin Baulig  <martin@ximian.com>
16584
16585         * icall.c (mono_lookup_internal_call): Small fix.
16586
16587 2006-09-05  Raja R Harinath  <rharinath@novell.com>
16588
16589         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
16590         double g_free.
16591
16592 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
16593
16594         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
16595         when --debug is specified.
16596
16597 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
16598
16599         * class.c (setup_generic_array_ifaces): Fix a warning.
16600
16601 2006-09-04  Miguel de Icaza  <miguel@novell.com>
16602
16603         * Temporarily remove the patch to assemly.c that checks the
16604         assembly versions as it breaks our gacutil.
16605
16606 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
16607
16608         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
16609
16610         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
16611         a net 1.0 runtime.
16612
16613         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
16614         created using the default ctor. Fixes #79152.
16615         (mono_string_builder_to_utf16): Ditto.
16616
16617 2006-09-01  Martin Baulig  <martin@ximian.com>
16618
16619         Fix handling of the generic array interfaces.
16620
16621         * class-internals.h
16622         (MonoDefaults): Removed `generic_array_class' and added
16623         `generic_ilist' class.
16624
16625         * class.c
16626         (mono_bounded_array_class_get): Add the new generic array interfaces.
16627         (setup_generic_array_ifaces): New static method; create vtable
16628         entries for each method in the generic array interfaces.
16629
16630         * metadata.c
16631         (select_container): Allow "parent-less" generic methods.
16632
16633         * marshal.c
16634         (mono_marshal_get_generic_array_helper): New public method.
16635
16636         * icall.c
16637         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
16638         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
16639         moved the interncall into System.Array.
16640
16641 2006-09-01  Raja R Harinath  <rharinath@novell.com>
16642
16643         A few more cases of avoiding work on types with ->byref set.
16644         Has the real fix for #79238
16645         * icall.c (is_generic_parameter): New helper.
16646         (ves_icall_Type_GetGenericParameterPosition): Use it.
16647         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
16648         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16649         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
16650         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
16651         reference types.
16652         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
16653         reference types.
16654         (ves_icall_Type_get_IsGenericInstance): Likewise.
16655         (ves_icall_Type_get_IsGenericType): Likewise.
16656
16657 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
16658
16659         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
16660         class if possible.
16661
16662         * mempool.h (mono_mempool_get_allocated): New helper function.
16663
16664         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
16665         change.
16666
16667         * mempool.c: Fix warnings and the calculation of stats.
16668
16669         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
16670
16671         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
16672
16673         * loader.c (mono_get_method_from_token): Update method_count stat.
16674
16675         * class-internals.h (MonoStats): Add some stats.
16676
16677 2006-08-31 Robert Jordan  <robertj@gmx.net>
16678
16679         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
16680         with managed variants.
16681         All code is contributed under the MIT/X11 license.
16682         
16683 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
16684
16685         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
16686         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
16687
16688         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
16689
16690         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
16691         with cycles in classes.
16692
16693         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
16694
16695         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
16696         missing a [MarshalAs] directive. Fixes #79203.
16697
16698         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
16699         klass->marshal_info. Fixes #79217.
16700
16701 2006-08-30  Martin Baulig  <martin@ximian.com>
16702
16703         Committing a patch from Joachim Ante <joe@otee.dk>:
16704         Add support for binary data symbol stores.
16705
16706         * debug-mono-symfile.c
16707         (mono_debug_open_mono_symbol_file): Renamed into
16708         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
16709         arguments.
16710
16711         * mono-debug.c
16712         (mono_debug_open_image): Added `raw_contents' and `size' args.
16713         (mono_debug_init_2_memory): New public function.
16714
16715 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
16716
16717         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
16718
16719 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16720
16721         * appdomain.c: implement support for ShadowCopyFiles.
16722
16723 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
16724
16725         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
16726         when value is NULL (and should remove CID #51).
16727
16728 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16729
16730         * image.c: moved 2 functions to ../utils.
16731
16732 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
16733
16734         * gc.c: cope with the target object of a GC handle being NULL
16735         (bug #78877).
16736
16737 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
16738
16739         * class.c: recursively check parent's explicit implementations
16740         of interface methods (fixes bug #79125).
16741
16742 2006-08-19  Miguel de Icaza  <miguel@novell.com>
16743
16744         * filewatcher.c: Avoid warnings when building, do not redefine
16745         constants that are defined.
16746
16747         Remove warnings.
16748
16749 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16750
16751         * image.c: don't fail when the link points to an absolute path.
16752
16753 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
16754
16755         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
16756         Fix CID #3.
16757
16758 2006-08-17  Miguel de Icaza  <miguel@novell.com>
16759
16760         * image.c (full_path): A new method used to obtain the actual path
16761         of an assembly even in the presence of symbolic links.  
16762
16763         This is necessary for the case where we are running a binary that
16764         has been GACed, but we are using the "published" path name
16765         ($prefix/mono/1.0/blah.exe) which happens to point to the real
16766         file in the GAC.
16767
16768         This was the source of the failure for the `xsp' command with the
16769         recent AppDomain changes, as far as the runtime was concerned,
16770         there were two different assemblies: $prefix/mono/1.0/blah.exe and
16771         $prefix/mono/gac/blah/version/blah.exe.
16772
16773         (do_mono_image_open): use full path
16774
16775 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16776
16777         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
16778
16779 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
16780
16781         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
16782         domain_id is supplied. Fix CID #241 and corlib's unit tests.
16783
16784 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16785
16786         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
16787         small structures. Fixes #78990.
16788
16789 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16790
16791         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
16792
16793         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
16794
16795 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16796
16797         * appdomain.c:
16798         * marshal.c: don't load all the assemblies from a domain into newly
16799         created ones. The new domains might have different rules and load
16800         assemblies from different locations. Fixes bug #76757.
16801
16802         Patch by Lluis. Conflicts resolved by Brian Crowell.
16803
16804 2006-08-16  Alp Toker  <alp@atoker.com>
16805
16806         * socket-io.c: First half of the fix for #79084.
16807         Set sa_size to the length of the content, not that of the struct.
16808         Don't add NULL suffix to the content, this should be done in
16809         managed code if needed.
16810
16811 2006-08-14  Raja R Harinath  <rharinath@novell.com>
16812
16813         Fix part of #79012
16814         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
16815         mono_metadata_parse_type returns NULL.
16816
16817 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
16818
16819         * normalization-tables.h : new file for string normalization data.
16820         * locales.c, locales.h, icall.c :
16821           added load_normalization_resource() for string normalization,
16822           and icall as well.
16823         * Makefile.am : added normalization-tables.h to the sources.
16824
16825 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
16826
16827         * marshal.c: Add more helper functions to reduce code duplication and use them
16828         everywhere.
16829
16830 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
16831
16832         * marshal.c: Fix non-x86 stdcall warnings.
16833         
16834         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16835         them everywhere.
16836
16837 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16838
16839         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16840         type check on multi-dimensional arrays. Fixes #79000.
16841
16842 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16843
16844         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16845         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16846         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16847         * class-internals.h: add is_com_object to class structure.
16848         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16849         null checks to COM object marshalling. Fix .ctor call on RCW.
16850         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16851         
16852         All code is contributed under the MIT/X11 license.
16853
16854 2006-08-09  Dick Porter  <dick@ximian.com>
16855
16856         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16857         racing mono_monitor_allocator_lock() somewhere, so don't delete
16858         the critical section for now.  Found by running and exiting
16859         monodevelop.
16860
16861 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16862
16863         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16864         (ves_icall_System_ComObject_FindInterface): Ditto.
16865         (ves_icall_System_ComObject_CacheInterface): Ditto.
16866
16867         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16868         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16869
16870 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16871
16872         * threadpool.c: treat pipes from process asynchronous reads as sockets
16873         when reading from them, so we get select/poll or epoll to wait for
16874         data.
16875
16876 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16877
16878         * loader.c: Fix a typo (CID #233) in the null check.
16879
16880 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16881
16882         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16883         Hopefully fixes #78949.
16884         
16885         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16886         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16887         bytes. Fixes #78972.
16888
16889 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16890
16891         * filewatcher.c: we need to set errno here.
16892
16893 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16894
16895         * filewatcher.c: let Win32Exception get the error value.
16896
16897 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16898
16899         * filewatcher.c: translate errno into win32 errors for Win32Exception
16900         to know what happened.
16901
16902 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16903
16904         * threadpool.c: Fix more warnings.
16905
16906         * assembly.c (search_loaded): Fix warnings.
16907
16908         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16909         (mono_async_invoke): Ditto.
16910
16911 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16912
16913         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16914         entries for __ComObject type in addition to ComImport types.
16915         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16916         about hash table.
16917         
16918         All code is contributed under the MIT/X11 license.
16919
16920 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16921
16922         * image.c: avoid tentative loading of modulerefs that contain
16923         no metadata (P/Invoke library names).
16924
16925 2006-07-28  Dick Porter  <dick@ximian.com>
16926
16927         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16928         mono_loader_lock() somewhere, so don't delete the critical section
16929         for now.  Found by running and exiting monodevelop.
16930
16931 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16932
16933         * filewatcher.c: define the inotify syscalls when we're building on
16934         linux and have sys/syscall.h. The build system might not have support
16935         for inotify but the target system might have it.
16936
16937 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16938
16939         * domain.c: Documentation updates.
16940
16941         * loader.c (mono_free_method): Do not release the method
16942         information if we are being profiled, as profilers will use this
16943         information at shut down to present some data to the user.
16944
16945         This is needed so that the profiler does not crash, as the
16946         profiler tends to keep MonoMethods around, and they might become
16947         invalid if we free these.
16948
16949         (mono_get_method_constrained): Return the original CIL stream
16950         method as well, so verification can be performed against it.
16951
16952 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16953
16954         * filewatcher.[ch]: support for inotify file system watcher.
16955         * icall.c: add new internal calls for the inotify file system watcher.
16956
16957 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16958
16959         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16960         #78888.
16961
16962 2006-07-20  Dick Porter  <dick@ximian.com>
16963
16964         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16965         warning.
16966
16967 2006-07-20  Dick Porter  <dick@ximian.com>
16968
16969         * threads.c (start_wrapper): Do the thread cleanup while we still
16970         hold a reference to its object.  Fixes bug 78123.
16971
16972 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16973
16974         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16975         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16976           "managed-to-managed".
16977         * icall.c: Redirect string constructors that take sbyte* to
16978           ves_icall_System_String_ctor_RedirectToCreateString.
16979         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16980           to CreateString () methods with matching signature.
16981         * reflection.c: Use original security informations for
16982           MONO_WRAPPER_MANAGED_TO_MANAGED.
16983         * security-manager.c: Use original security informations for
16984           MONO_WRAPPER_MANAGED_TO_MANAGED.
16985         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16986           that is a placeholder and only its address should be used.
16987         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16988           that is a placeholder and only its address should be used.
16989
16990 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16991
16992         Begin implementing COM Interop.
16993         * appdomain.c: Increment corlib version.
16994         * class.c: Set ComImport classes' parent to __ComObject.
16995         * loader.c: Mark cominterop methods as such.
16996         * domain.c: Add __ComObject class to MonoDefaults structure.
16997         * image.c: Add 2 hashtables to the image for COM Interop related methods
16998         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16999         using the mempool allocator
17000         
17001         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
17002         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
17003         declaration for mono_metadata_type_dup_mp.
17004         
17005         * debug-helpers.c: Added strings for two additional wrapper types
17006         * object.c: Create proxy objects for ComImport classes
17007         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
17008         and added __ComObject class to MonoDefaults structure.
17009         
17010         * object-internals.h: Finish MonoRealProxy definition, and add definition of
17011         MonoComInteropProxy and MonoComObject.
17012         
17013         * marshal.c: Added support for COM Interop
17014         (signature_cominterop): Converts managed signature to corresponding
17015         unmanaged COM signature.
17016         (cominterop_get_function_pointer): gets unmanaged function pointer via
17017         COM object vtable
17018         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
17019         (cominterop_get_method_interface): returns interface type that method is defined on
17020         (mono_mb_emit_cominterop_call): emits native call to function pointer
17021         gotten from vtable
17022         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
17023         that matches signature of unmanaged function.
17024         (cominterop_get_native_wrapper): wrapper around adjusted method call.
17025         (cominterop_get_invoke): forwards call from proxy to __ComObject
17026         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
17027         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
17028         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
17029         
17030         * marshal.h: Added Marshal icall declarations.
17031         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
17032         so we can access them in finalizer
17033         
17034 2006-07-14  Dick Porter  <dick@ximian.com>
17035
17036         * object.c (mono_type_initialization_cleanup): Fix a race
17037         condition by temporarily commenting out the critical section
17038         deletion.
17039
17040 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
17041
17042         * reflection.c (create_custom_attr): Fix some warnings.
17043         (create_custom_attr_data): Ditto.
17044         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
17045         types. Fixes #78855.
17046
17047 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
17048
17049         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
17050
17051         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
17052
17053 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
17054
17055         * reflection.c (resolve_object): Add support for DynamicMethod.
17056
17057         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
17058         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
17059
17060 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
17061
17062         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
17063         don't leak GPtrArray's pdata has we have no use (nor free) for it.
17064
17065 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
17066
17067         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
17068         Fixes #77888.
17069
17070 2006-06-30  Raja R Harinath  <rharinath@novell.com>
17071
17072         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
17073         slightly: remove a shadow local variable.
17074
17075 2006-06-29  Raja R Harinath  <rharinath@novell.com>
17076
17077         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
17078         definition that introduces the virtual function slot.
17079         Also fix Coverity #105.
17080
17081 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
17082
17083         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
17084         for dynamic assemblies. Fixes #78724.
17085
17086 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
17087
17088         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
17089         Fixes #78722.
17090
17091 2006-06-21  Martin Baulig  <martin@ximian.com>
17092
17093         * reflection.c
17094         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
17095         fixes #76484.
17096
17097 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
17098
17099         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
17100
17101 2006-06-20  Raja R Harinath  <rharinath@novell.com>
17102
17103         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
17104         nor TYPEREFs.
17105         * class.c (mono_class_create_from_typespec): Add 'context' argument.
17106         Inflate result if necessary.
17107         (mono_class_get_full): Remove old version.  Rename from
17108         'mono_class_get' and add 'context' argument.  Pass it to
17109         ..._create_from_typespec.
17110         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
17111         (mono_ldtoken): Revert change below.
17112
17113 2006-06-20  Martin Baulig  <martin@ximian.com>
17114
17115         * class.c (mono_ldtoken): Don't pass the generic context to
17116         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
17117
17118 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
17119
17120         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
17121         and later freeing it. Fixes #78638.
17122
17123 2006-06-15  Miguel de Icaza  <miguel@novell.com>
17124
17125         * icall.c (mono_class_get_throw): Revert over-zealous error
17126         throwing, the caller for mono_class_get_throw will cope with
17127         errors when classes are not properly initialized already.
17128
17129         The code still copes with loader exceptions though.
17130
17131         Fixes the regression in reftype1 and reftype3 from the CAS tests.
17132         
17133 2006-06-14  Miguel de Icaza  <miguel@novell.com>
17134
17135         Fixes the `make run1' version of RuntimeAbort (to be commited,
17136         source is in Bugzilla).
17137         
17138         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
17139         FALSE on class loading failure instead of returning true.
17140
17141         * class.c (mono_class_create_from_typedef): It is possible for
17142         mono_metadata_interfaces_from_typedef_full to fail if a class is
17143         not found, cope with this.
17144         
17145
17146 2006-06-14  Dick Porter  <dick@ximian.com>
17147
17148         * socket-io.c: 
17149         * process.c: Fix a bunch of signed/unsigned warnings from gcc
17150         4.1.1
17151
17152 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
17153
17154         * culture-info-table.h : oops, forgot to make it nsync with r61548.
17155
17156 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17157
17158         * icall.c: Another fix for building mono in Visual Studio.
17159
17160 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17161
17162         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
17163         
17164 2006-06-09  Martin Baulig  <martin@ximian.com>
17165
17166         * debug-mono-symfile.c: Put this back and really fix it this
17167         time. Sorry for all the trouble.
17168
17169 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
17170
17171         * icall.c (mono_class_get_throw): Fix a warning.
17172         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
17173         ReflectionTypeLoadException if needed. Fixes #78606.
17174
17175         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
17176         (mono_class_init): Ditto.
17177
17178         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
17179         ref_only exceptions.
17180         (mono_loader_clear_error): Make this work even if there is no error.
17181
17182 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
17183
17184         * object-internals.h marshal.c marshal.h icall.c: Implement method 
17185         Marshal.GetComSlotForMethodInfo using internal call.
17186
17187 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
17188
17189         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
17190         a function for signalling it.
17191
17192         * class.c (mono_class_from_typeref): Use the new kind of loader error when
17193         a referenced assembly is not found.
17194
17195         * loader.c (mono_loader_error_prepare_exception): Add support for 
17196         LOADER_ERROR_ASSEMBLY. Fix formatting.
17197
17198 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17199
17200         * domain.c appdomain.c class-internals.h marshal.c: Add support 
17201         for VARIANT marshalling on windows and increment corlib version
17202         since Variant struct was added.
17203
17204 2006-06-03  Miguel de Icaza  <miguel@novell.com>
17205
17206         * debug-mono-symfile.c: Revert Martin's previous patch which broke
17207         stack trace line information:
17208
17209         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
17210         (Martin) when looking up B which is between A and C, return A not C.
17211
17212         Bug is #78573.
17213
17214         Thanks to Alexander Olk for tracking this down.
17215
17216 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
17217
17218         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
17219         
17220         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
17221         avoid clobbering its value.
17222         (mono_string_to_lpstr): Fix a warning on windows.
17223
17224 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
17225
17226         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
17227
17228         * reflection.c loader.c: Removed references to 'dummy' flag.
17229
17230         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
17231
17232         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
17233         it gets GC tracking.
17234
17235         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
17236         GC tracking.
17237         
17238         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
17239
17240         * marshal.c threadpool.c: Update callers of mono_async_result_new.
17241
17242         * appdomain.c: Bump corlib version.
17243
17244 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
17245
17246         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
17247         CEE_STIND_REF when working with object references.
17248
17249 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
17250
17251         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
17252         Fixes #78539.
17253
17254 2006-05-30  Miguel de Icaza  <miguel@novell.com>
17255
17256         * loader.c (method_from_memberref): Fix argument value for
17257         mono_loader_set_error_method_load (I was passing the MonoClass
17258         instead of the class name char *).
17259
17260 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
17261
17262         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
17263         CEE_STIND_REF when working with object references.
17264
17265 2006-05-30  Martin Baulig  <martin@ximian.com>
17266
17267         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
17268         mono_method_full_name() change and replace the ':' with a '.'
17269         here.
17270
17271 2006-05-30  Martin Baulig  <martin@ximian.com>
17272
17273         * debug-mono-symfile.c
17274         (mono_debug_symfile_lookup_location): Fix the algorithm:
17275         when looking up B which is between A and C, return A not C.
17276
17277 2006-05-29  Martin Baulig  <martin@ximian.com>
17278
17279         * mono-debug.h
17280         (MonoDebugMethodInfo): Make the typedef public.
17281         (MonoDebugSourceLocation): New public struct.
17282
17283         * mono-debug.c
17284         (mono_debug_source_location_from_address): Removed.
17285         (mono_debug_source_location_from_il_offset): Removed.
17286         (mono_debug_il_offset_from_address): Removed.
17287         (mono_debug_address_from_il_offset): Removed.
17288         (mono_debug_lookup_method): New public function.
17289         (mono_debug_lookup_source_location): New public function; replaces
17290         the old mono_debug_source_location_from_*() functions; see the
17291         inline documentation.
17292         (mono_debug_free_source_location): New public function.
17293         (mono_debug_print_stack_frame): New public function; see the
17294         inline documentation.
17295
17296         * debug-mono-symfile.c
17297         (mono_debug_find_source_location): Renamed into
17298         mono_debug_symfile_lookup_location(); only take a
17299         `MonoDebugMethodInfo *' and an `offset' argument; added inline
17300         documentation.
17301         (mono_debug_find_method): Renamed into
17302         mono_debug_symfile_lookup_method().
17303
17304 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
17305
17306         * assembly.c (mono_assembly_open_full): Dont overwrite the status
17307         returned by mono_image_open_full ().
17308
17309         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
17310         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
17311         #78517.
17312
17313         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
17314         #78518.
17315
17316 2006-05-27  Miguel de Icaza  <miguel@novell.com>
17317
17318         * class.c (mono_class_from_typeref): handle missing images
17319         earlier, deals with bug #78418.   Refactor code; 
17320
17321         Fix a warning introduced in my previous commit (some stale code
17322         from before I revisited my patch).
17323
17324         * class.c (mono_class_create_from_typedef): On failure, remove the
17325         class from the MonoImage->class_cache as the class is not
17326         initialized;   Fixes the leak pointed out by Paolo.
17327
17328 2006-05-25  Dick Porter  <dick@ximian.com>
17329
17330         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
17331         DeleteCriticalSections until I figure out which one may still be
17332         sometimes locked when mono_thread_cleanup is called.
17333
17334 2006-05-24  Dick Porter  <dick@ximian.com>
17335
17336         * threads.c (mono_thread_cleanup): Move the threading cleanup out
17337         of mono_thread_manage and back into its own function, so it can be
17338         called after the finalizer thread has finished.
17339
17340         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
17341
17342 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
17343
17344         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
17345         Fixes #78495.
17346
17347         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
17348         with non-blittable elements.
17349         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
17350
17351 2006-05-24  Martin Baulig  <martin@ximian.com>
17352
17353         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17354         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
17355
17356         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
17357         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
17358         `mono_debugger_event_handler' to NULL.
17359
17360 2006-05-24  Martin Baulig  <martin@ximian.com>
17361
17362         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
17363
17364 2006-05-24  Martin Baulig  <martin@ximian.com>
17365
17366         * mono-debug-debugger.h
17367         (mono_debugger_create_notification_function): Added
17368         `MonoCodeManager *' argument.
17369
17370 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
17371
17372         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
17373
17374 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
17375
17376         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
17377         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
17378         implementation.
17379
17380 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
17381
17382         * icall.c: precise GC support: objects can't be stored in unmanaged
17383         memory anymore, even if they are kept alive by other references: since
17384         they can move the GC needs to be able to always find them.
17385
17386 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17387
17388         * object.c: precise GC support for static fields. Support
17389         for moving GCs: write barriers and pinned allocation for interned
17390         strings.
17391
17392 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17393
17394         * domain.c, domain-internals.h: precise GC support for the MonoDomain
17395         structure.
17396
17397 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17398
17399         * class.c, gc.c: sgen and precise GC updates.
17400
17401 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
17402
17403         * marshal.h, marshal.c: added write barrier wrapper and precise type
17404         fixes.
17405
17406 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
17407
17408         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
17409         support.
17410
17411 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
17412
17413         * reflection.c: precise and sgen GC updates.
17414
17415 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
17416
17417         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
17418
17419 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
17420
17421         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
17422
17423 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
17424
17425         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
17426         MONO_TYPE_OBJECT. Fixes #78462.
17427
17428 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
17429
17430         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
17431         and blittable types.
17432
17433 2006-05-17  Miguel de Icaza  <miguel@novell.com>
17434
17435         * class.c (mono_class_get_exception_for_failure): Implement parts
17436         of a TODO: if the loader error is set (instead of the class
17437         error), we return a Loader exception that can be properly thrown
17438         elsewhere.
17439
17440         This was exposed by some Winforms 2.0 code that I tried to run
17441         (Atsushi pointed me to it).
17442
17443 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
17444
17445         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
17446         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
17447         
17448         * marshal.c (emit_marshal_vtype): Add limited support for 
17449         UnmanagedType.LPStruct. Fixes #78427.
17450
17451         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
17452         Applied a patch from kangaroo to fix #77523.
17453
17454 2006-05-17  Martin Baulig  <martin@ximian.com>
17455
17456         * threads.c
17457         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
17458         (debugger_thread_created): Removed.
17459         (debugger_thread_exited): Removed.
17460
17461 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
17462
17463         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17464
17465         * object-internals.h (MonoReflectionResource): Sync with managed version.
17466
17467 2006-05-12  Wade Berrier <wberrier@novell.com>
17468
17469         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
17470
17471 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
17472
17473         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
17474         functions try to allocate from the image mempool.
17475
17476 2006-05-12  Dick Porter  <dick@ximian.com>
17477
17478         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
17479
17480 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
17481
17482         * object.c: The FieldGetter and FieldSetter methods require the full
17483         name of the class, not only the name. Fixes bug #78277.
17484
17485 2006-05-11  Miguel de Icaza  <miguel@novell.com>
17486
17487         * loader.c (method_from_memberref): Do not pass the NULL klass to
17488         mono_loader_set_error_() methods.  Pass the non-NULL value
17489         (class). 
17490
17491 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
17492
17493         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
17494         (mono_assembly_close): Null out assembly->image->references after freeing it.
17495
17496         * image.c (mono_image_close): Free image->references.
17497         
17498         * reflection.c (mono_image_basic_init): Fix a small memory leak.
17499
17500 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17501
17502         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
17503         before checking if it's NULL (g_assert).
17504
17505 2006-05-10  Martin Baulig  <martin@ximian.com>
17506
17507         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
17508         I thought I already killed that two months ago, but now it somehow reappeared.
17509
17510 2006-05-10  Martin Baulig  <martin@ximian.com>
17511
17512         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
17513
17514 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
17515
17516         * reflection.c: Allocate memory for dynamically created methods in the image
17517         mempools.
17518
17519 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17520
17521         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
17522         don't use the ad pointer before checking if it's NULL (g_assert).
17523
17524 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
17525
17526         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
17527         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
17528
17529         * marshal.c: Allocate all signatures from mempools.
17530
17531         * marshal.c: Allocate some more signatures from mempools.
17532
17533 2006-05-09  Miguel de Icaza  <miguel@novell.com>
17534
17535         * object.c (mono_load_remote_field): The code used to provide a
17536         temporary variable for returning results if the user did not
17537         provide a result pointer.  But our temporary variable was allocted
17538         on the satck.
17539
17540         Fix calling code to always pass a result area.   Coverity ID 103.
17541
17542 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
17543
17544         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
17545         value, not the old. Fixes #78312.
17546         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
17547
17548         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
17549         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
17550         per-image cache.
17551
17552         * assembly.c (mono_assembly_close): Free image->references.
17553
17554         * assembly.c (mono_assembly_names_equal): Fix a warning.
17555         (mono_assemblies_cleanup): Cleanup more global data.
17556
17557         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
17558
17559         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
17560         ptr_cache and image->modules.
17561
17562         * image.c (mono_image_init): Allocate array_cache lazily.
17563         
17564 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17565
17566         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
17567         behavior was changed recently and has bad side effects.
17568
17569 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
17570
17571         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
17572         
17573         * assembly.c (mono_assembly_close): Remove a debug printf.
17574
17575         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
17576
17577         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
17578         to also allow for temporary references between mono_image_open ()/close ().
17579
17580         * domain.c (get_runtimes_from_exe): Add a FIXME.        
17581
17582 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
17583
17584         * marshal.c: Fix support for dynamic methods.
17585
17586         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
17587
17588         * marshal.c (mono_marshal_cleanup): New cleanup function.
17589
17590         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
17591         image mempools.
17592
17593         * class.c (mono_class_init): Fix leaking class->nested_classes.
17594
17595         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
17596
17597         * image.c (mono_image_init): Initialize the new cashes.
17598
17599         * image.c (mono_image_close): Destroy the new cashes.
17600
17601         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
17602
17603         * mempool.c (mono_mempool_strdup): New helper function.
17604
17605         * class-internals.h: Add prototype for mono_loader_unlock ().
17606
17607         * domain.c (mono_jit_info_table_find): Fix a warning.
17608         (mono_debugger_check_runtime_version): Ditto.
17609
17610         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
17611         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
17612         functions to these modules.
17613
17614         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
17615         metadata modules.
17616         
17617         * marshal.c (mono_free_bstr): Fix a warning.
17618
17619         * assembly.c (mono_assembly_open_full): Fix another small leak.
17620
17621         * object.c: Fix some unload leaks in the remoting code.
17622
17623         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
17624         function.
17625
17626         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
17627
17628         * reflection.c: Fix some unload leaks in dynamic assemblies.
17629
17630 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
17631
17632         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
17633         * marshal.h: Add BSTR support on Win32
17634         * icall.c: Add BSTR icalls
17635         * metadata.h: Add BSTR enums
17636
17637 2006-04-28  Miguel de Icaza  <miguel@novell.com>
17638
17639         Work to catch the crash from #76795 and turn it into an
17640         exception.   As I stubbed out pieces of the VisualBasic support,
17641         I found a number of places where the code was failing and I added
17642         checks to those places. 
17643         
17644         * metadata.c (do_mono_metadata_parse_generic_class): Make this
17645         function return a status code.  If we fail to parse the signature
17646         from mono_metadata_parse_generic_inst, return FALSE.
17647
17648         * loader.c (mono_get_method_from_token): If we fail to load the
17649         method (mono_class_get) return NULL.   
17650
17651         * (method_from_memberref): Return NULL if we are unable to parse
17652         the method signature
17653
17654         (mono_loader_error_prepare_exception): Since we now use the
17655         loader_error flag internally to stop processing, and obtaining
17656         exceptions that might be thrown will walk this code path the
17657         proper way of going from a MonoLoaderError into a
17658         MonoException was convoluted.   This new routine encapsulates the
17659         process of turning the error into an exception and *clearing* the
17660         error afterwards.
17661         
17662 2006-04-27  Miguel de Icaza  <miguel@novell.com>
17663
17664         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
17665         with missing assemblies), and to cope with:
17666
17667                 * Missing fieldref from a non-existing assembly.
17668                 * Missing methodref from a non-existing assembly.
17669
17670         The first batch of work to address *some* of the issues from 76661.
17671         
17672         * object.c (mono_class_create_runtime_vtable): If we fail to
17673         initialize the class raise the exception here. 
17674
17675         * metadata.c (mono_class_get_overrides_full): If any methods fail
17676         to load return the failure to the caller.
17677
17678         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
17679         flagging assemblies that failed to load.   
17680
17681         Do not crash if we are unable to load the assembly.
17682
17683         (mono_assembly_close): Do nothing with REFERENCE_MISSING
17684         assemblies. 
17685
17686         * loader.c (mono_loader_set_error_type_load): Change the
17687         convention to always pass unallocated strings, so we make our own
17688         copies (I know our own code had duplicated strings before, but
17689         this keeps the normal conventions).
17690         (method_from_memberref): Call mono_loader_set_error_method_load
17691         for all possible failures of loading the class. 
17692         Remove assert, turn into a loader error.
17693
17694         (mono_loader_error_to_exception): Move this routine from mini
17695         (mini_loader_error_to_exception) there was no need to have that in
17696         mini. 
17697
17698         * class.c (mono_class_from_typeref): If we were not able to load
17699         the assembly with mono_assembly_load_reference, call the
17700         mono_loader_set_error_type_load to register the problem.
17701
17702         (mono_class_setup_fields): If we fail to load the type from
17703         mono_metadata_parse_type_full, call mono_class_set_failure and
17704         break from the loop.
17705
17706         If class->exception_type is set, we do not layout the fields as
17707         that might crash the runtime, and instead return (from breaking
17708         from the previous loop).
17709
17710         (mono_class_setup_vtable): This now returns a boolean indicating
17711         whether the table was properly setup.   The decision is driven by
17712         mono_class_get_overrides_full which might run into non-existing
17713         methods. 
17714         
17715         (mono_class_init): Returns TRUE on success or FALSE if there was a
17716         problem in loading the type (incorrect assemblies, missing
17717         assemblies, methods, etc).
17718
17719         When we call mono_class_setup_fields we also check for a potential
17720         error inside this call (either a class exception or a general
17721         loader exception).
17722
17723         (mono_class_create_from_typedef): If the parent fails to load
17724         (calling mono_class_get_full) return NULL.
17725         
17726         ** Important **
17727
17728         calls to mono_metadata_parse_type_full should be checked
17729         everywhere and set the mono_class_set_failure
17730         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
17731
17732         The current patch checks the places where my manually constructed
17733         tests show the errors are showing up, but we should do it
17734         everywhere. 
17735
17736         ** Important2 **
17737
17738         mono_class_init return values should be tested everywhere, like
17739         the previous case this is something that we should audit
17740         everywhere and not only on the cases exposed by the tests I
17741         created. 
17742
17743 2006-04-26  Miguel de Icaza  <miguel@novell.com>
17744
17745         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
17746         boolean parameter and instead pass the information on `options'
17747         parameter (FileOptions).
17748
17749         * icall.c: Register the new signature for MonoIO.Open.
17750
17751         * debug-helpers.c (dis_one): Trying to understand how coverity
17752         works.  Fix Run 5, item 78.
17753
17754 2006-04-26  Dick Porter  <dick@ximian.com>
17755
17756         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
17757         dereference.
17758
17759 2006-04-25  Martin Baulig  <martin@ximian.com>
17760
17761         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
17762
17763         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
17764         debugger_thread_created().
17765         (debugger_gc_push_all_stacks): Don't handle the main thread in any
17766         special way.
17767         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
17768         (mono_debugger_finalize_threads): New function; undo the effects
17769         of mono_debugger_init_threads().
17770         (mono_debugger_create_all_threads): Removed.
17771
17772 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
17773
17774         * image.c (mono_image_close): Tidy up trace messages.
17775
17776         * assembly.c (mono_assembly_close): Ditto.
17777
17778         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
17779         no longer references an already freed assembly. Fixes #78168.
17780
17781 2006-04-21  Dick Porter  <dick@ximian.com>
17782
17783         * threads.c (mono_thread_detach): Fix reference counting when
17784         detaching threads.
17785
17786 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
17787
17788         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
17789         #78155.
17790
17791 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17792
17793         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
17794         (mono_type_to_stind): Ditto.
17795
17796         * marshal.c: Use the new helper functions to simplify code.
17797
17798         * image.c (mono_image_close): Add some code for help debug assembly unloading
17799         problems.
17800
17801         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
17802         image mempool.
17803
17804         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
17805         assembly was already loaded in another appdomain. Fixes #78083.
17806
17807 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
17808
17809         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
17810         referenced assemblies.
17811         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
17812
17813         * domain.c (mono_domain_free): Add a trace message.
17814
17815         * appdomain.c (add_assemblies_to_domain): Ditto.        
17816
17817         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
17818         field.  
17819
17820 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17821
17822         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
17823
17824 2006-04-12  Martin Baulig  <martin@ximian.com>
17825
17826         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
17827         `USE_INCLUDED_LIBGC'.   
17828
17829 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17830
17831         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
17832         the patch contains ../ and a small directory name later. Hopefully fixes
17833         #78035.
17834
17835 2006-04-10  Martin Baulig  <martin@ximian.com>
17836
17837         Clean up the debugger's thread-handling code.
17838
17839         The debugger's thread-handling code has been moved from
17840         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17841         over the `threads' hash, keep track of exiting threads and also
17842         use proper locking.
17843
17844         We can now debug XSP and XSP based applications with the debugger.
17845
17846         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17847
17848         * threads.h
17849         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17850         (mono_install_thread_callbacks): Likewise.      
17851
17852         * threads.c (mono_thread_callbacks): Removed.
17853         (debugger_thread_created, debugger_thread_exited): New static functions.
17854         (start_wrapper): Call debugger_thread_created().
17855         (thread_cleanup): Call debugger_thread_exited().
17856         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17857         (mono_debugger_init_threads): New public function.
17858         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17859         iterate directly over the `threads' hash and also use proper locking.
17860
17861         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17862
17863         * mono-debug-debugger.h
17864         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17865
17866 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17867
17868         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17869         argument type=array. Fixes #78057.
17870
17871 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17872
17873         * culture-info-table.h : regenerated. Fixed bug #69652.
17874
17875 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17876
17877         * loader.c metadata.c: Reapply a variant r59116.
17878         
17879         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17880
17881         * class.c (mono_class_setup_interface_offsets): New internal function.
17882
17883         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17884         interfaces too. Fixes #77398.
17885
17886         * reflection.c (encode_cattr_value): Add support for 
17887         parameter type=object, argument type=array.
17888         (load_cattr_value): Ditto. Fixes #77916.
17889
17890         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17891         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17892
17893         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17894         a byval char array and CharSet is Ansi.
17895
17896         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17897
17898 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17899
17900         * metadata.c: Add some locking comments.
17901         
17902         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17903         mempool.
17904         (mono_metadata_free_method_signature): Don't free the signature itself.
17905
17906         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17907
17908         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17909         reference the same MonoImage.
17910         (mono_assembly_load_from_full): Add an assert.
17911
17912 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17913
17914         * image.c (mono_image_close): Don't put the image we are about to free into the
17915         loaded_images_guid_hash.
17916
17917         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17918         to reduce code duplication.
17919
17920         * marshal.c: Register the native functions called by this module as icalls, to
17921         somewhat centralize the creation of MonoMethodSignature's.
17922
17923         * loader.c (mono_method_signature): Add a cache for method signatures.
17924
17925         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17926         the parameter attributes of a method.
17927         (mono_metadata_parse_method_signature_full): Refactored the computation of
17928         parameter attributes into a separate function. Also avoid one allocation in
17929         most cases.
17930
17931         * assembly.c (mono_assembly_close): Ditto.
17932
17933         * image.c (mono_image_close): Log trace messages with INFO level.
17934
17935         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17936
17937         * image.c reflection.c: Correct reference counting of image modules.
17938         
17939         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17940         of this function from the image mempool.
17941         
17942         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17943         to allow more cached types to be used.
17944
17945         * mono-debug.c (mono_debug_add_method): Appled patch from
17946         David S. Miller  <davem@sunset.davemloft.net>: Access 
17947         minfo->lexical_blocks[] entry elements using read32().
17948
17949 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17950
17951         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17952         methods as it is allocated from the mempool.
17953
17954         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17955         image mempool.
17956
17957         * metadata-internals.h: Add comments describing the reference counting scheme
17958         used for MonoImage and MonoAssembly.
17959
17960         * image.c assembly.c reflection.c: Rework reference counting of images and 
17961         assemblies so they are freed when the runtime is shut down. Free some 
17962         additional memory structures when an image is unloaded.
17963         
17964 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17965
17966         * class.c loader.c reflection.c: Allocate more data structures in
17967         the image mempool.
17968
17969 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17970
17971         * icall.c
17972         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17973         build on pre glib 2.4 systems.
17974
17975 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17976
17977         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17978
17979         * icall.c: Fix some warnings.
17980
17981 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17982
17983         * culture-info-table.h : regenerated.
17984
17985 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17986
17987         * threads.c, object-internals.h, verify.c: changed the culture caching
17988         code to use a normal MonoArray for storage so the GC can keep track of
17989         them easily. Fixed bits of the cache logic, too and simplified the
17990         code.
17991
17992 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17993
17994         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17995         thread for non-Boehm GCs.
17996
17997 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17998
17999         * domain.c, object.c, domain-internals.h: reduce the amount of memory
18000         needed to keep track of the data for static fields.
18001
18002 2006-03-29  Raja R Harinath  <rharinath@novell.com>
18003
18004         Fix #75172
18005         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
18006         for interface classes.  Use 'num_methods' instead.
18007         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
18008         before using '->vtable_size' field.
18009
18010 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
18011
18012         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
18013         doesn't contain managed pointers, so use a normal hashtable.
18014
18015 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
18016
18017         * reflection.c, class-internals.h, domain.c: fixed handling of types
18018         used as values for objects in custom attributes (bug #77915):
18019
18020 2006-03-24  Martin Baulig  <martin@ximian.com>
18021
18022         * class.c (mono_class_setup_fields): Added support for generic
18023         instances; fixes #77580.
18024
18025 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18026
18027         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
18028
18029 2006-03-24  Dick Porter  <dick@ximian.com>
18030
18031         * file-io.c (get_file_attributes): More stat macro breakage.
18032         Fixes bug 77759.
18033
18034 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
18035
18036         * profiler.c: added the file=filename option in the default profiler
18037         to output the profile data to filename.
18038
18039 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18040
18041         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
18042         bug #77877.
18043
18044 2006-03-22  Martin Baulig  <martin@ximian.com>
18045
18046         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
18047         allocated `MonoClassField *' in `fb->handle'.
18048
18049 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18050
18051         * class.c, image.c, metadata-internals.h: implemented new mechanism to
18052         allocate interface ID to save memory and allow better ID reuse on
18053         appdomain unload. setup_generic_vtable () removal from Martin.
18054
18055 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
18056
18057         * object.h, appdomain.c, domain.c, exception.c, icall.c,
18058         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
18059         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
18060         write barriers for reference stores with managed objects accessed with
18061         C structures in the runtime and in embedding programs.
18062
18063 2006-03-20  Raja R Harinath  <rharinath@novell.com>
18064
18065         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
18066         'interface_id' and 'max_interface_id' fields of MonoClasses
18067         representing open generic types.
18068
18069 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
18070
18071         * object.h, object.c, icall.c: added functions to deal with
18072         storing valuetypes that contain references in managed objects.
18073         * reflection.c, string-icalls.c, threads.c, marshal.c: small
18074         fixes and comments around uses of mono_array_addr ().
18075
18076 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
18077
18078         * object.h, icall.c, monitor.c: object.GetHashCode ()
18079         implementation that supports the moving garbage collector.
18080
18081 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
18082
18083         * icall.c, threads-types.h, threads.c: implemented finalizer for
18084         LocalDataStoreSlot.
18085
18086 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
18087
18088         * metadata.c (mono_type_size): Add a fixme.
18089         (mono_type_stack_size): Ditto.
18090
18091         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
18092         'type_forwarders' field.
18093
18094         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
18095         attribute from net 2.0.
18096
18097         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
18098         from class.c.
18099
18100         * class.c (mono_class_setup_fields): Fix a warning.
18101         
18102         * class.c (mono_class_from_name): Add support for assemblyref entries
18103         in the EXPORTEDTYPE table.
18104
18105         * reflection.c: Add support for handling type forwarders under net 2.0.
18106
18107         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
18108         
18109 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
18110
18111         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
18112         overwriting entries in ModuleBuild->types, also clean up the code
18113         a little. Fixes #77774.
18114
18115 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
18116
18117         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
18118         load friend assembly info when present.
18119
18120 2006-03-14  Raja R Harinath  <rharinath@novell.com>
18121
18122         Fix crasher on gtest-158.cs.
18123         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
18124         the return value if the MonoClass we want is yet in an
18125         inconsistent state.
18126         * class.c (mono_class_create_from_typedef): Add an comment
18127         explaining an order dependency between mono_class_setup_parent and
18128         mono_class_setup_mono_type.
18129
18130 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
18131
18132         * class.c: documentation updates and events bug fix.
18133
18134 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
18135
18136         * class.c: some cleanup, locking fixes.
18137
18138 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
18139
18140         * class.c: fix the generics code to setup nested
18141         type info to the instantiated type (bug #77770).
18142
18143 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
18144
18145         * marshal.c: fixed a few type correctness issues.
18146
18147 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18148
18149         * loader.c: the Set/Get/Addrtess array methods should be public.
18150
18151 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
18152
18153         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
18154         
18155         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
18156         info->wrapper.
18157
18158 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
18159
18160         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
18161
18162         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
18163
18164         * mempool.c (mono_mempool_alloc): Speed this up a bit.
18165         (mono_mempool_alloc0): Ditto.
18166
18167 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18168
18169         * socket-io.c:
18170         (create_object_from_sockaddr): it was allocating 4 extra bytes
18171         for the AF_UNIX data. Fixes bug #77747.
18172
18173 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
18174
18175         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
18176
18177 2006-03-09  Dick Porter  <dick@ximian.com>
18178
18179         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
18180         Fixes bug 76966 again.
18181
18182 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
18183
18184         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
18185         names from r57532
18186         * appdomain.c: Bumped corlib version to 48 (due to r57532)
18187
18188 2006-03-07  Martin Baulig  <martin@ximian.com>
18189
18190         * object.c
18191         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
18192
18193 2006-03-07  Martin Baulig  <martin@ximian.com>
18194
18195         * class.c
18196         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
18197         regression introduced in r56970; see gtest-252.cs.
18198
18199         * loader.c (mono_get_method_constrained): Correctly handle generic
18200         methods; see gtest-253.cs.
18201
18202 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
18203
18204         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
18205
18206 2006-03-04  Martin Baulig  <martin@ximian.com>
18207
18208         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
18209         compute the parent type at runtime, just like we're already doing
18210         it for interfaces.
18211
18212         * reflection.c
18213         (mono_reflection_bind_generic_parameters): Don't compute the
18214         parent type anymore.
18215
18216         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
18217
18218 2006-03-04  Martin Baulig  <martin@ximian.com>
18219
18220         * mono-debug-debugger.h
18221         (mono_debugger_create_notification_function): Allocate memory at
18222         runtime and return a pointer to it.
18223
18224 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
18225
18226         * assembly.c: Fix windows build.
18227         
18228         * assembly.c: Fix build.
18229
18230         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
18231
18232         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
18233         
18234 2006-03-03  Dick Porter  <dick@ximian.com>
18235
18236         * process.c
18237         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18238         Check parameters before dereferencing them.  Fixes Aaron's part of
18239         bug 77393.
18240
18241 2006-03-03  Raja R Harinath  <rharinath@novell.com>
18242
18243         Fix performance regression.
18244         * loader.c (find_method_in_class): Add 'from_class' argument.
18245         Rename 'klass' argument to 'in_class'.  The signature is compared
18246         against the method in 'in_class', and the corresponding method is
18247         returned from 'from_class'.
18248         (find_method): Walk both 'in_class' and 'from_class' in parallel.
18249         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
18250         type definition and generic instantiation in parallel.
18251         (mono_get_method_constrained): Update to changes.
18252
18253 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
18254
18255         * threads.c: make sure the domain is correct, too when doing
18256         mono_thread_attach ().
18257
18258 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
18259
18260         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
18261         windows. Fixes #77683.
18262
18263 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
18264
18265         * object.h, *: introduced specific way to set elements of an array
18266         of references to be used as write barrier. Still need to audit the
18267         uses of mono_array_addr.
18268
18269 2006-03-01  Miguel de Icaza  <miguel@novell.com>
18270
18271         * object-internals.h: New field to cache the assmebly name, patch
18272         from Tambet Ingo (tambet@ximian.com)
18273
18274 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
18275
18276         * decimal.h, class-internals.h, metadata-internals.h,
18277         file-io.h: mark a few function declarations as internal, to
18278         reduce the number of PLT entries.
18279
18280 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18281
18282         * file-io.c: fix typo in warning message.
18283
18284 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
18285
18286         * loader.c: on unix, lookup the "*A" version of a function
18287         if charset is auto as a second option before failing.
18288
18289 2006-02-28  Raja R Harinath  <rharinath@novell.com>
18290
18291         * class.h (mono_class_inflate_generic_method): Revert to two
18292         argument version.
18293         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
18294         (mono_class_inflate_generic_method_full): Add.
18295         * class.c (mono_class_inflate_generic_method_full): Rename from
18296         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
18297         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
18298         * loader.c, reflection.c: Update to changes.
18299
18300 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
18301
18302         * icall.c: const fixes and small improvements.
18303
18304 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18305
18306         * threadpool.c: for asynchronous connect(), enable the same workaround
18307         for BSD 6 as for the Mac. Fixes bug #77637.
18308
18309 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
18310
18311         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
18312         formatted classes. Fixes #77524.
18313
18314 2006-02-24  Raja R Harinath  <rharinath@novell.com>
18315
18316         * class.c (inflate_generic_type): Add a couple more
18317         micro-optimizations.
18318         (inflate_generic_context): Don't use the 'gmethod' from
18319         'inflate_with'.
18320         (mono_class_inflate_generic_method): If the method has generic
18321         parameters, but the passed-in context doesn't have a 'gmethod',
18322         create one.  Use the possibly simplified generic instantiation
18323         from the declaring class instead of the one passed in.
18324
18325 2006-02-24  Raja R Harinath  <harinath@gmail.com>
18326
18327         Make generic method signature and method header handling lazy.
18328         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
18329         (inflate_generic_header): Likewise.
18330         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
18331         parameter to avoid inflating types.
18332         (mono_get_inflated_method): Empty out.
18333         * class.h (mono_class_inflate_generic_method): Update to changes.
18334         * loader.c (mono_get_method_from_token): Don't parse signature for
18335         generic methods, nor methods of generic classes.
18336         (mono_method_signature): Rename from 'mono_method_signature'.
18337         Inflate signature on demand.
18338         (mono_method_get_header): Inflate method header on demand.
18339         * reflection.c: Update to changes.
18340
18341 2006-02-23  Raja R Harinath  <rharinath@novell.com>
18342
18343         * metadata.c (mono_metadata_inflate_generic_inst): If the
18344         instantiation is closed, don't bother expanding it in the new
18345         context.
18346         * class.c (inflate_generic_class): If the generic instantiation
18347         doesn't change after inflation, return the argument itself.
18348         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
18349         Add bounds checks.
18350         (inflate_generic_context): If neither the generic class nor the
18351         generic method instantiations change, return the original context.
18352         * reflection.c (mono_method_get_object): Do
18353         'mono_get_inflated_method' before accessing the ->klass field.
18354         (inflate_mono_method): Don't create a MonoGenericMethod unless
18355         necessary.
18356         (inflate_method): Don't pass a constructed type as the declaring
18357         type of a methodbuilder.
18358
18359 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
18360
18361         * object.c: fix memory overwrite.
18362
18363 2006-02-22  Dick Porter  <dick@ximian.com>
18364
18365         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
18366         it doesn't work any more.
18367         (mono_threads_request_thread_dump): Fix unused variable warnings.
18368
18369 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18370
18371         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
18372         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
18373         the public header file.
18374
18375 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
18376
18377         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
18378
18379 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
18380
18381         * class-internals.h, object.c: reduce the size of MonoVTable
18382         and store the interface_offsets array at negative offsets.
18383
18384 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
18385
18386         * metadata.c: tweak table descriptors data structures to reduce
18387         size and runtime relocations.
18388
18389 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18390
18391         * marshal.c: fix some types and opcodes to be type-safe
18392         in marshaling wrappers.
18393
18394 2006-02-21  Ankit Jain  <jankit@novell.com>
18395
18396         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
18397
18398 2006-02-21  Raja R Harinath  <rharinath@novell.com>
18399
18400         * metadata.c (get_constraints): Relax debugging checks for monodis.
18401
18402 2006-02-21  Ankit Jain  <jankit@novell.com>
18403
18404         * metadata.c (mono_metadata_load_generic_params): Move the code
18405         checking for ambiguous generic params from here to mono/dis/get.c
18406         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
18407
18408 2006-02-21  Raja R Harinath  <harinath@gmail.com>
18409
18410         Fix assertion triggered when compiling nemerle.
18411         * class.c (mono_get_shared_generic_inst): Rename from
18412         get_shared_inst and make non-static.
18413         * loader.c (mono_get_shared_generic_method): New.  Used to create
18414         the MonoGenericContext-equivalent of a MonoGenericContainer.
18415         (mono_get_method_from_token): Initialize the 'context' field of
18416         the created MonoGenericContainer.
18417         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
18418         * metadata.c (get_constraints): Add sanity check.
18419         * class-internals.h: Add new internal methods.
18420
18421         * reflection.c (verify_safe_for_managed_space): New sanity check.
18422         Currently checks that owner-less generic parameters aren't allowed
18423         in managed space.
18424         (mono_type_get_object): Use it.
18425         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
18426         that are now in mono_type_get_object.
18427         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
18428
18429 2006-02-19  Raja R Harinath  <harinath@gmail.com>
18430
18431         * metadata.c (mono_type_create_from_typespec): Rename from
18432         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
18433         argument and caching of types in the generic container.
18434         (unwrap_arrays, find_generic_param): Remove.
18435         * metadata-internals.h: Update.
18436         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
18437
18438 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
18439
18440         * class.c (mono_class_get_exception_for_failure): Fix a warning.
18441
18442         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
18443         return values. Fixes #77581.
18444
18445         * class.c (mono_fnptr_class_get): Switch name and name_space.
18446
18447         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
18448         classes and add support for [In, Out] attributes.
18449         (mono_marshal_free_asany): Ditto. Fixes #77524.
18450
18451 2006-02-18  Raja R Harinath  <harinath@gmail.com>
18452
18453         * class.c (mono_class_from_generic_parameter): Make more robust to
18454         incomplete MonoGenericContainers from monodis.
18455
18456 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18457
18458         * class-internals.h: added some more exception types.
18459         * class.c, metadata.c: added a few checks to handle missing
18460         types.
18461
18462 2006-02-17  Raja R Harinath  <rharinath@novell.com>
18463
18464         Use owner-less generic-params some more.
18465         * class.c (my_mono_class_from_generic_parameter): Remove.
18466         (mono_class_from_generic_parameter): Handle null image,
18467         param->name and param->owner.
18468         (mono_class_from_mono_type): Update.
18469         (mono_class_create_from_typespec): Remove 'container' parameter.
18470         If that parameter is non-null, the result is always inflated by
18471         'mono_class_get_full' anyway.
18472         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
18473         parameter.
18474         (mono_class_get_full): Update.
18475
18476         * class.c (inflate_generic_type) [GENERICINST]: If the generic
18477         instance is not open, don't bother inflating.
18478         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
18479         parse metadata for inflated classes.
18480         (_mono_class_get): Change GenericContext* parameter to
18481         GenericContainer*.
18482         (mono_class_create_from_typespec): Likewise.  Simplify, and
18483         implement trivially.  All the cases are handled in
18484         mono_class_from_mono_type.  Don't inflate returned class.
18485         (mono_class_get_full): Delegate GENERICINST optimization to
18486         inflate_generic_type.
18487         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
18488
18489 2006-02-16  Dick Porter  <dick@ximian.com>
18490
18491         * socket-io.c (create_object_from_sockaddr): Fix typo.
18492         (create_sockaddr_from_object): Check array lengths before
18493         potentially accessing items off the end.
18494         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
18495         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
18496         (ves_icall_System_Net_Sockets_Socket_Send_internal)
18497         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
18498         length checks to avoid wraparound overflows.
18499         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
18500         contents of the array of sockets
18501         (hostent_to_IPHostEntry2)
18502         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
18503         Check return value of inet_ntop ().
18504         (addrinfo_to_IPHostEntry): Fix typo
18505
18506 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18507
18508         Type metadata parsing doesn't use generic-instantiation information.
18509         * metadata.c (mono_metadata_parse_array_full): Change
18510         MonoGenericContext* parameter to MonoGenericContainer*.
18511         (mono_metadata_parse_type_full): Likewise.
18512         (mono_type_create_from_typespec_full): Likewise.
18513         (mono_metadata_parse_mh_full): Likewise.
18514         (mono_metadata_parse_generic_inst): Likewise.
18515         (do_mono_metadata_parse_generic_class): Likewise.
18516         (do_mono_metadata_parse_type): Likewise.
18517         * metadata-internals.h: Update to changes.
18518         * class.c (mono_class_find_enum_basetype): Likewise.
18519         (mono_class_setup_fields): Likewise.
18520         (mono_class_create_from_typespec): Likewise.
18521         * loader.c (method_from_methodspec): Likewise.
18522         (mono_get_method_from_token): Likewise.
18523         (mono_method_get_header): Likewise.
18524
18525 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18526
18527         * marshal.c: handle additional GENERICINST case (patch from
18528         Thong Nguyen <tum@veridicus.com>).
18529         Fix a few cases where LDIND_I/STIND_I was used for references.
18530
18531 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18532
18533         * reflection.c (mono_reflection_get_token): Remove unused variable.
18534
18535 2006-02-16  Martin Baulig  <martin@ximian.com>
18536
18537         * reflection.c (mono_reflection_get_token): Add support for fields
18538         in instantiated generic types.
18539
18540         * icall.c
18541         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
18542
18543 2006-02-15  Martin Baulig  <martin@ximian.com>
18544
18545         * icall.c
18546         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
18547         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
18548         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
18549         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
18550
18551 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18552
18553         * class.c, metadata.c, metadata.h, object.c, icall.c,
18554         marshal.c: changed mono_type_get_underlying_type () to do
18555         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
18556         Fixed handling of instantiated generic valuetypes (bug #75479).
18557
18558 2006-02-15  Raja R Harinath  <rharinath@novell.com>
18559
18560         * metadata.c (mono_metadata_decode_signed_value): Simplify.
18561         Delegate to mono_metadata_decode_value, and work on the returned value.
18562
18563         * icall.c (ves_icall_MonoType_GetGenericArguments):
18564         Add consistency check here too.
18565         
18566 2006-02-15  Ankit Jain  <jankit@novell.com>
18567
18568         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
18569         char/short etc.
18570
18571 2006-02-15  Ankit Jain  <jankit@novell.com>
18572
18573         * metadata.c (mono_metadata_decode_signed_value): New function to decode
18574         signed values, used only for representing lower bounds of arrays.
18575         (mono_metadata_parse_array_full): Use new
18576         mono_metadata_decode_signed_value to decode lower bounds.
18577
18578 2006-02-14  Martin Baulig  <martin@ximian.com>
18579
18580         * reflection.c
18581         (mono_reflection_get_token): Support "MonoGenericMethod" and
18582         "MonoGenericCMethod" and allow generic instances / methods.
18583
18584 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
18585
18586         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
18587         to obtain the terminal size using an ioctl.
18588
18589         * object.c (mono_nullable_init): Revert this as nullable reference
18590         types are not valid.
18591         (mono_nullable_box): Ditto.
18592
18593 2006-02-09  Dick Porter  <dick@ximian.com>
18594
18595         * threads.c (mono_thread_detach): Drop a reference to the thread
18596         we're detaching.
18597
18598 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
18599
18600         * object.c (mono_nullable_init): Handle nullable reference types.
18601         (mono_nullable_box): Ditto. Fixes #77446.
18602
18603 2006-02-07  Martin Baulig  <martin@ximian.com>
18604
18605         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
18606
18607 2006-02-07  Ankit Jain  <jankit@novell.com>
18608
18609         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
18610         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
18611         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
18612         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
18613         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
18614         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
18615
18616 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
18617
18618         * class.c (mono_class_create_generic): Set type_token as well.
18619
18620         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
18621         compatible with MS.
18622
18623 2006-02-02  Martin Baulig  <martin@ximian.com>
18624
18625         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
18626         has never been used so far.
18627
18628 2006-02-02  Martin Baulig  <martin@ximian.com>
18629
18630         * mono-debug-debugger.h: Changed comment at the top of this file;
18631         the header is not installed, but it's safe to #include it from
18632         within the JIT.
18633
18634         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
18635         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
18636
18637 2006-02-02  Martin Baulig  <martin@ximian.com>
18638
18639         * mono-debug.h
18640         (MonoSymbolTable): Removed the `metadata_info' field.
18641
18642         * mono-debug.c
18643         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
18644
18645         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18646         (mono_debugger_add_builtin_types): Removed.
18647         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
18648         (mono_debugger_create_notification_function): We now operate on a
18649         pre-allocated area; take a `gpointer' and return `void'.
18650
18651         * mono-debug-debugger.c
18652         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
18653         (mono_debugger_add_builtin_types): Removed.
18654
18655 2006-02-02  Martin Baulig  <martin@ximian.com>
18656
18657         * threads.c (mono_debugger_create_all_threads): New public method.
18658
18659 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18660
18661         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
18662         breaks on several platforms.
18663
18664 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
18665
18666         * assembly.c: the VS.NET build doesn't supply default values for
18667         MONO_ASSEMBLIES and MONO_CFG_DIR.
18668
18669 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
18670
18671         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
18672         helper function.
18673
18674         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
18675
18676         * loader.c (method_from_memberref): Fix a warning.
18677
18678         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
18679
18680         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
18681         with explicit layout. Fixes #77433.
18682
18683 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
18684
18685         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
18686         max_interface_id is initialized before using it. Fixes #77398.
18687         (ves_icall_Type_GetInterfaces): Ditto.
18688
18689 2006-01-30  Raja R Harinath  <rharinath@novell.com>
18690
18691         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18692         allocate memory for parameter attributes when parsing memberref
18693         signatures.
18694         * loader.c (mono_loader_set_error_method_load): Don't warn.
18695         (method_from_memberref): Ensure MissingMethodException gets thrown
18696         if method is not found.  Make warning more informative.
18697
18698 2006-01-29  Raja R Harinath  <harinath@gmail.com>
18699
18700         Fix #77397
18701         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
18702         return true if is byref.
18703         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18704         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
18705         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
18706
18707 2006-01-27  Raja R Harinath  <rharinath@novell.com>
18708
18709         Fix tests/find-method.2.il
18710         * loader.c (find_method, find_method_in_class): Remove is_inflated
18711         argument.  Revert 2006-01-18 change.
18712         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
18713         is generic, search for method in its generic definition.
18714         * class.c (mono_class_setup_vtable_general): Print generic
18715         arguments of generic types in debugging printf.
18716
18717 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
18718
18719         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
18720
18721         * threads.c (mono_threads_request_thread_dump): New helper function.
18722
18723 2006-01-25  Raja R Harinath  <rharinath@novell.com>
18724
18725         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
18726
18727 2006-01-25  Ankit Jain  <jankit@novell.com>
18728
18729         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
18730         move definition to ..
18731         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
18732         
18733 2006-01-25  Ankit Jain  <jankit@novell.com>
18734             Raja R Harinath  <rharinath@novell.com>
18735
18736         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
18737         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
18738         as necessary.
18739
18740 2006-01-25  Martin Baulig  <martin@ximian.com>
18741
18742         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
18743         `MonoDebuggerThread' into debug-debugger.c.
18744
18745 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
18746
18747         * profiler.c: fix printing of data.
18748
18749 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
18750
18751         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
18752           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
18753
18754 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
18755
18756         * object.c: fix deadlock related to string interning.
18757
18758 2006-01-23  Martin Baulig  <martin@ximian.com>
18759
18760         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18761
18762         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
18763
18764 2006-01-23  Martin Baulig  <martin@ximian.com>
18765
18766         * mono-debug.h: Moved the prototypes of some functions which are
18767         used by the JIT here from mono-debug-debugger.h.
18768
18769 2006-01-21  Martin Baulig  <martin@ximian.com>
18770
18771         * Makefile.am: Don't install mono-debug-debugger.h.
18772
18773 2006-01-21  Martin Baulig  <martin@ximian.com>
18774
18775         * mono-debug-debugger.h: Enforce the private status of this header
18776         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
18777         Moved some stuff from mono-debugger-jit-wrapper.h here.
18778
18779 2006-01-20  Raja R Harinath  <rharinath@novell.com>
18780
18781         * class.c (mono_class_from_typeref): Add a sanity test to help
18782         catch lack of assembly load/search hooks.
18783
18784 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
18785
18786         * marshal.c (emit_struct_conv): Relax the fields with same offset
18787         check even more. Fixes #77230.
18788
18789 2006-01-18  Martin Baulig  <martin@ximian.com>
18790
18791         * loader.c (find_method_in_class): Added `gboolean is_inflated'
18792         argument; if false, we compare the uninstantiated signatures.
18793         (method_from_memberref): Compare the uninstantiated signatures;
18794         fixes #76417.
18795
18796 2006-01-18  Robert Jordan  <robertj@gmx.net>
18797
18798         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
18799         Clear the weak link. Fixes bug #77170.
18800
18801         * gc.c (mono_gchandle_free):
18802         Reflect *-gc.c changes (tiny optimization).
18803
18804 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
18805
18806         * metadata.c (mono_metadata_signature_dup): Applied patch from
18807         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
18808         Fixes #77288.
18809
18810 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
18811
18812         * marshal.c (emit_struct_conv): Allow fields with the same offset when
18813         marshalling from native to managed code. Fixes #77230.
18814
18815 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18816
18817         * threadpool.c: fix problem (Mac only) when more than one asynchronous
18818         connect. Fixes bug #77020.
18819
18820 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18821
18822         * class.c: fixed id assignement for nested interfaces (bug #77275).
18823         Added also better info for --print-vtable debugging.
18824
18825 2006-01-12  Martin Baulig  <martin@ximian.com>
18826
18827         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
18828         interfaces on-the-fly; fixes #76625.
18829
18830         * class-internals.h
18831         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
18832         don't need that anymore.
18833
18834 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18835
18836         * socket-io.c
18837         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18838         To avoid initing the nested_classes when not needed I turned the
18839         PeerCredData as a toplevel internal class, as it has to be shared
18840         anyways. 
18841
18842         Fixes the CASA issue.
18843
18844 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18845
18846         * domain.c: Accessors for MonoJitInfo
18847
18848         * profiler-private.h: Add jitinfo to the end jit hook
18849
18850         * profiler.[ch]: Define new hooks, called after jitting which give
18851         the MonoJitInfo that was compiled
18852
18853 2006-01-10  Martin Baulig  <martin@ximian.com>
18854
18855         * class.c (mono_class_setup_events): Add support for generic
18856         classes; fixes #76440.
18857
18858 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18859
18860         Fix #77160.
18861         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18862         on passed-in method.
18863
18864 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18865
18866         * object.c (mono_runtime_invoke_array): Add Nullable support.
18867
18868         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18869
18870 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18871
18872         * file-io.c: Don't consider sockets as directory and avoid an endless
18873         loop. Fix bug #76966.
18874
18875 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18876
18877         * object.c (mono_nullable_init): New helper function.
18878         (mono_nullable_box): Ditto.
18879
18880         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18881
18882         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18883
18884         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18885         
18886 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18887
18888         * class.c (mono_class_is_assignable_from): Make T assignable to 
18889         Nullable<T>.
18890
18891 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18892
18893         * appdomain.c: Bump corlib version to 46.
18894         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18895         serialization purpose) and changed ves_icall_System_Reflection_
18896         Assembly_get_code_base signature to accept a boolean (to escape, or 
18897         not, the assembly code base).
18898
18899 2005-12-23  Dick Porter  <dick@ximian.com>
18900
18901         * icall.c: 
18902         * threads-types.h: 
18903         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18904         CreateEvent icall now returns "created" boolean parameter.
18905
18906 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18907
18908         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18909         #76967.
18910
18911         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18912         when attr_klass is an interface. Fixes #77045.
18913
18914 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18915
18916         * marshal.c (emit_struct_conv): Fix previous patch.
18917         
18918         * marshal.c (emit_struct_conv): Add a check for fields with the same
18919         offset.
18920
18921 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18922
18923         Fix regression in Mono.C5.
18924         * class.c (mono_class_create_generic): If 'klass' is an interface
18925         set up the interface offsets.
18926         (mono_class_is_assignable_from): Don't throw away generic arguments.
18927
18928 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18929
18930         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18931         type parameters.
18932
18933 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18934
18935         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18936         dead store.
18937         (do_mono_metadata_parse_generic_class): Don't pass the current
18938         generic context when parsing the type being instantiated: it
18939         cannot use it, anyway.
18940
18941         * loader.c (method_from_memberref): Don't inflate a signature if
18942         it doesn't contain any type parameters.
18943
18944 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18945
18946         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18947
18948 2005-12-14  Martin Baulig  <martin@ximian.com>
18949
18950         * class.c
18951         (mono_type_get_name_recurse): Don't return null for type
18952         parameters and open generic classes.
18953         (mono_class_setup_methods): Don't exclude generic instances.
18954         (mono_get_unique_iid): Use different IDs for different
18955         instantiations of the same generic type.
18956         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18957         open generic instances; create a normal vtable for closed generic
18958         instances.
18959         (mono_class_setup_vtable_general): We're now also called for
18960         closed generic instances.
18961
18962         * reflection.c
18963         (mono_reflection_bind_generic_parameters): Correctly use
18964         mono_metadata_lookup_generic_inst() everywhere.
18965
18966 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18967
18968         * object.c (mono_class_create_runtime_vtable): Call 
18969         mono_class_setup_vtable ().
18970
18971         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18972         function.
18973         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18974         #76959.
18975
18976         * loader.c (mono_loader_set_error_type_load): Print the type load
18977         warnings to the console so they are more visible to the user.
18978         (mono_loader_set_error_method_load): Ditto.
18979
18980         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18981         is still broken.
18982         
18983         * reflection.c (ensure_runtime_vtable): Fix build.
18984
18985         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18986         doesn't work in all cases.
18987
18988 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18989
18990         * object.c (mono_array_new_full): Treat a single dimensional array
18991         with 0 lower bounds as an szarray. Fixes #76973.
18992
18993         * reflection.c (custom_attr_visible): Really fix this.
18994
18995 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18996
18997         * reflection.c (custom_attr_visible): Allow nested public attributes
18998         as well.
18999
19000         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
19001         interface check.
19002
19003 2005-12-12  Raja R Harinath  <harinath@gmail.com>
19004
19005         * class.c (set_generic_param_owner): Delete.
19006         (mono_class_create_from_typedef): Don't set ->owner field of
19007         generic parameters to "param containers" of enclosing classes.
19008         * reflection.c (mono_reflection_initialize_generic_parameter):
19009         Likewise.
19010
19011 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
19012
19013         * reflection.c (custom_attr_visible): Fix build.
19014
19015 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
19016
19017         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
19018         private attributes.
19019         
19020         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
19021         handling of null parameter defaults.
19022
19023 2005-12-09  Raja R Harinath  <rharinath@novell.com>
19024
19025         * class.c (mono_class_from_generic_parameter): Don't set
19026         klass->generic_container.
19027         (my_mono_class_from_generic_parameter): Likewise.
19028
19029 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
19030
19031         * reflection.c (load_public_key): Fix a warning.
19032         (method_encode_code): Fix unaligned accesses.
19033
19034 2005-12-07  Martin Baulig  <martin@ximian.com>
19035
19036         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
19037
19038         * reflection.c
19039         (write_generic_param_entry): Encode our custom attrs.
19040
19041         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
19042
19043 2005-12-07  Martin Baulig  <martin@ximian.com>
19044
19045         * reflection.c (encode_new_constraint): Removed; we don't use the
19046         `NewConstraintAttribute' anymore.
19047
19048 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
19049
19050         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
19051         not fire a TypeResolve event when Assembly.GetType () is called.
19052
19053 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
19054
19055         Beginning of support for nullable types in the runtime. Parts of
19056         this patch are from Martin.
19057
19058         * appdomain.c (MONO_CORLIB_VERSION): Bump
19059
19060         * domain.c (mono_init_internal): get the nullable type
19061
19062         * class.c (mono_class_is_nullable): New method
19063         (mono_class_get_nullable_param): New mehod
19064         (mono_class_create_generic): In types T? set cast_class to T
19065
19066         * class-internals.h (MonoDefaults): new nullable default class
19067         (mono_class_get_nullable_param, mono_class_get_nullable_param):
19068         new methods.
19069
19070 2005-12-05  Raja R Harinath  <rharinath@novell.com>
19071
19072         * metadata.c (select_container): New.  Refactor code to select the
19073         appropriate GenericContainer given the type of generic parameter
19074         we are looking for.
19075         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
19076         not a MonoGenericContext.  Use select_container.  Update parameters.
19077         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
19078         and MONO_TYPE_MVAR.
19079         (unwrap_arrays): Remove duplicate tests.
19080         (find_generic_param): Rename from 'has_same_context'.  Now walks a
19081         generic instantiated class to find any arguments that are generic
19082         parameters.
19083         (mono_type_create_from_typespec_full): Use find_generic_param to
19084         avoid evicting some generic instantiations from the typespec
19085         cache.
19086
19087 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
19088
19089         * reflection.c: fixed writing of doubles on ARM FPA.
19090
19091 2005-12-02  Robert Jordan  <robertj@gmx.net>
19092
19093         * icall.c: Fixed EventInfo.ReflectedType (#76829).
19094
19095 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19096
19097         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
19098         least on SUSE 10 they are not the same (on debian, they are just the
19099         same thing).
19100
19101 2005-12-01  Raja R Harinath  <rharinath@novell.com>
19102
19103         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
19104         DeclaringType for VARs and MVARs.
19105         * class.c (set_generic_param_owner): Fix initialization of owner
19106         fields.
19107
19108 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
19109
19110         * icall.c: fixed Enum.ToObject() to correctly convert the values.
19111
19112 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19113
19114         * threadpool.c: workaround for a bug that shows up on the Mac:
19115         select()+connect() on a blocking socket is not like it should
19116         be, so we proceed to connect() in that case, wasting the I/O
19117         threadpool thread until connect succeedes. Fixes bug #75436.
19118
19119 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19120
19121         * threadpool.c: fix typo when setting file descriptor states.
19122
19123 2005-11-28  Raja R Harinath  <rharinath@novell.com>
19124
19125         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
19126         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19127         create a temporary signature container.
19128         (mono_metadata_parse_generic_param): Update to changes.
19129         (mono_type_create_from_typespec_full): Update to changes.
19130         * loader.c (method_from_memberref): Don't use a
19131         MonoGenericContainer while parsing a memberref signature.
19132         (method_from_methodspec): Remove dead-store of the 'container'
19133         variable.  It's overwritten before use.
19134
19135         * metadata.c (mono_type_create_from_typespec_full): Make debugging
19136         checks tighter.
19137         (mono_metadata_parse_generic_param): Likewise.
19138         * loader.c (find_method_in_class): Does not need a
19139         MonoGenericContainer.  Use 'mono_method_signature' rather than
19140         'mono_method_signature_full'.
19141         (find_method, mono_get_method_constrained, method_from_memberref):
19142         Update to changes.
19143
19144         * metadata.c (mono_type_create_from_typespec_full): Ensure that
19145         owner-less generic-parameters are never evicted from the typespec
19146         cache.
19147
19148         * loader.c (method_from_memberref): Don't use the current context
19149         when parsing signatures.
19150         (method_from_methodspec, mono_get_method_from_token): Update to changes.
19151
19152         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
19153         side-effects in g_assert.
19154         * loader.c (mono_get_method_from_token): Resolve klass earlier so
19155         that we don't potentially lose information.
19156
19157 2005-11-26  Dick Porter  <dick@ximian.com>
19158
19159         * icall.c:
19160         * threads.c: icalls to implement basic (ie, not named)
19161         System.Threading.Semaphore.
19162
19163 2005-11-24  Dick Porter  <dick@ximian.com>
19164
19165         * process.c
19166         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19167         Use GetProcessId() if it's available.
19168
19169 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
19170
19171         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
19172
19173 2005-11-23  Raja R Harinath  <rharinath@novell.com>
19174             Ankit Jain  <jankit@novell.com>
19175
19176         * loader.c (mono_get_method_from_token): Initialize 'method' field
19177         of all generic parameters before parsing the signature.  Remove
19178         code that "fixed"-up MVAR references.
19179
19180 2005-11-23  Ankit Jain  <jankit@novell.com>
19181
19182         * metadata.c (mono_metadata_has_generic_params):
19183         (mono_metadata_load_generic_param_constraints):
19184         (mono_metadata_load_generic_params): Move duplicate code ...
19185         (mono_metadata_get_generic_param_row): ... here. Returns the
19186         first row-id in GenericParam table for a given owner (token).
19187         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
19188         prototype.
19189
19190 2005-11-23  Raja R Harinath  <rharinath@novell.com>
19191             Ankit Jain  <jankit@novell.com>
19192
19193         * metadata.c (mono_metadata_class_equal): Pass signature_only when
19194         comparing VARs too.
19195         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
19196         type->data.generic_param only if the type is an MVAR.
19197         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
19198         leak owner-less VARs and MVARs into managed space.
19199
19200 2005-11-21  Martin Baulig  <martin@ximian.com>
19201
19202         * class-internals.h
19203         (MonoMethod): Moved the `generic_container' here from
19204         `MonoMethodNormal' since we now also need it for
19205         `MonoMethodPInvoke';
19206         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
19207         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
19208         an union containing both `MonoMethodNormal' and
19209         `MonoMethodPInvoke'.
19210
19211         * loader.c
19212         (mono_get_method_from_token): Allow implementing generic methods
19213         as interncalls.
19214
19215         * threads.c
19216         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
19217         icall.
19218
19219 2005-11-17  Dick Porter  <dick@ximian.com>
19220
19221         * icall.c: 
19222         * process.h: 
19223         * process.c: Split the Process Start_internal icall into
19224         ShellExecuteEx_internal and CreateProcess_internal, which are
19225         called depending on whether UseShellExecute is true.  Fixes bug
19226         76670.
19227
19228         * appdomain.c (MONO_CORLIB_VERSION): Incremented
19229
19230 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
19231
19232         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
19233         'msize' parameters, use the information in 'mspec' instead.
19234         (emit_object_to_ptr_conv): Ditto.
19235
19236         * marshal.c (emit_struct_conv): Handle explicit layout structs with
19237         fields out of order. Fixes #76733.
19238
19239 2005-11-17  Ankit Jain  <jankit@novell.com>
19240
19241         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
19242
19243 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
19244
19245         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
19246           bug #76575.
19247
19248 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
19249
19250         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
19251         for types with non-auto layout. Fixes #76717.
19252
19253 2005-11-16  Ankit Jain  <jankit@novell.com>
19254
19255         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
19256         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
19257         if generic_context is null.
19258           (mono_metadata_generic_param_equal): param->owner can be null.
19259           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
19260         null.
19261
19262 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
19263
19264         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
19265         the correct value.
19266
19267 2005-11-15  Martin Baulig  <martin@ximian.com>
19268
19269         * object.c (set_value): Use mono_class_from_mono_type() instead of
19270         the hack for generic instances; fixes #76136.
19271
19272 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
19273
19274         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
19275         fields.
19276
19277         * image.c (load_metadata_ptrs): Initialize the new fields.
19278
19279         * reflection.c (create_dynamic_mono_image): Ditto.
19280
19281         * reflection.c (build_compressed_metadata): Use the new fields.
19282
19283         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
19284         icall.
19285
19286         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
19287         icall.
19288         
19289 2005-11-15  Ankit Jain  <jankit@novell.com>
19290             Raja R Harinath  <harinath@gmail.com>
19291
19292         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
19293         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
19294         new per-generic_container cache if the cached MonoType's context matches
19295         the current context.
19296           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
19297         to the expected context.
19298           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
19299
19300 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19301
19302         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
19303         we changed the signature of an icall.
19304         * icall.c: Modify to mono_double_ParseImpl return true/false 
19305         depending on the success, instead of throwing the exception. This will
19306         help us in Double.TryParse methods.
19307         
19308 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
19309
19310         * marshal.c (emit_marshal_object): Throw an exception when
19311         marshalling 'object' instead of crashing. Fixes #76696.
19312
19313 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19314
19315         * class-internals.h: Add prototype for mono_type_get_full_name ().
19316
19317 2005-11-11  Dick Porter  <dick@ximian.com>
19318
19319         * threads.c (mono_thread_manage): Make sure the main thread has
19320         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
19321
19322 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19323
19324         * loader.c (mono_loader_set_error_type_load): Log a warning to the
19325         console about the missing type.
19326         (mono_loader_set_error_method_load): Ditto.
19327
19328 2005-11-09  Miguel de Icaza  <miguel@novell.com>
19329
19330         * mono-config.c (mono_get_config_dir): Set the system defaults if
19331         none is specified.
19332
19333         * assembly.c (mono_set_dirs): New API entry point to set the
19334         assembly and the config directory in one call
19335
19336 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
19337
19338         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
19339         the ftnptr was created from a delegate in a domain other than the
19340         current domain. Fixes #75377.
19341
19342         * exception.h exception.c: Add mono_get_exception_not_supported ().
19343
19344 2005-11-08  Martin Baulig  <martin@ximian.com>
19345
19346         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
19347
19348 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
19349
19350         * security-manager.h: Added definitions to deal with strongname key 
19351         pairs bigger (and smaller) than 1024 bits.
19352         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
19353         adjust wrt the public key length being used.
19354
19355 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
19356
19357         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
19358           Windows build (r51396-51397).
19359
19360 2005-11-03  Martin Baulig  <martin@ximian.com>
19361
19362         * class.c (mono_class_setup_vtable_general): Also add generic
19363         methods to the vtable; fixes #76581.
19364
19365 2005-11-01  Miguel de Icaza  <miguel@novell.com>
19366
19367         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
19368         sure that we lookup GetString method from the System.Text.Encoding
19369         class, not the derived class or we get an empty method.
19370
19371         Fixed class #76612.
19372
19373 2005-10-25  Miguel de Icaza  <miguel@novell.com>
19374
19375         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
19376         if it has been previously set (embedders). 
19377
19378         Make mono_set_rootdir available also on Unix.
19379
19380 005-10-24  Robert Jordan  <robertj@gmx.net>
19381
19382         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
19383
19384 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
19385
19386         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
19387         only calls which are made to native code use this flag.
19388
19389         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
19390
19391 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
19392
19393         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
19394         Add support for FieldBuilders.
19395
19396 2005-10-29  Martin Baulig  <martin@ximian.com>
19397
19398         * mono-debug.c
19399         (mono_debug_using_mono_debugger): New public method; returns
19400         whether we're running inside the debugger.
19401
19402 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
19403
19404         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
19405         for Method/Constructor/FieldBuilders.
19406
19407 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
19408
19409         * reflection.c (module_add_cattrs): Save custom attributes for global methods
19410         and fields as well.
19411
19412 2005-10-26  Martin Baulig  <martin@ximian.com>
19413
19414         * mono-debug-debugger.c
19415         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
19416
19417 2005-10-24  Raja R Harinath  <harinath@gmail.com>
19418
19419         * icall.c (base64_to_byte_array): Don't pass an out-of-range
19420         integer to isspace.
19421
19422 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
19423
19424         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
19425         when passing valuetypes byref. Fixes #76502.
19426
19427 2005-10-19  Jackson Harper  <jackson@ximian.com>
19428
19429         * profiler.c: Don't put a . in front of types that are not in a
19430         namespace.
19431
19432 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
19433
19434         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
19435
19436 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
19437
19438         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
19439         #76436.
19440         (mono_marshal_get_ldflda_wrapper): Fix a warning.
19441
19442 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19443
19444         * assembly.c metadata-internals.h icall.c: Define an additional
19445         parameter for mono_assembly_name_parse_full, so we can avoid creating
19446         S.R.AssemblyName.Version when no version info wasn't passed.
19447         
19448 2005-10-09  Miguel de Icaza  <miguel@novell.com>
19449
19450         * class.c (mono_type_get_full_name): Reimplement method that was
19451         removed. 
19452
19453         * image.c: Some docs
19454
19455 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
19456
19457         * profiler.c (output_newobj_profile): Fix printing of Total memory
19458         on x86.
19459
19460 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19461
19462         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
19463
19464 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
19465
19466         * threads.c: remove debug output.
19467
19468 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19469
19470         * threads.c (mono_thread_manage): Fix crashes if more than 64
19471         threads need to be aborted. Hopefully fixes #75899.
19472
19473         * assembly.c (mono_stringify_assembly_name): New helper function.
19474
19475         * class.c: Use mono_stringify_assembly_name instead of the similar
19476         static function.
19477
19478         * assembly.h assembly.c: Add support for calling a postload search 
19479         hook if an assembly cannot be loaded.
19480
19481         * appdomain.c: Register new search hooks which call the AssemblyResolve
19482         events in AppDomain. Fixes #75231
19483
19484 2005-10-07  Martin Baulig  <martin@ximian.com>
19485
19486         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
19487         methods without debug info.
19488
19489 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
19490
19491         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
19492         wrappers.
19493
19494 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19495
19496         * file-io.c: now that we return symlinks, use lstat and, when the file
19497         is a symbolic link, stat, to get the file attributes. Also avoid the
19498         conversion to/from utf16/external.
19499
19500 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
19501
19502         * class.c (mono_class_layout_fields): Compute klass->has_references
19503         correctly if an embedded valuetype is not yet initialized. Fixes
19504         #76331.
19505
19506 2005-10-04  Martin Baulig  <martin@ximian.com>
19507
19508         * metadata.c
19509         (mono_metadata_load_generic_param_constraints): New public
19510         function; splitted the constraints loading out from
19511         mono_metadata_load_generic_params().
19512
19513         * class.c (mono_class_create_from_typedef): Call
19514         mono_metadata_load_generic_param_constraints() after setting up
19515         the type and creating our parent; fixes #75329.
19516
19517 2005-10-04  Martin Baulig  <martin@ximian.com>
19518
19519         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
19520         non-dynamic parent classes.
19521
19522 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
19523
19524         * file-io.c : win32 build fix (ETXTBSY seems not found).
19525
19526 2005-10-04  Martin Baulig  <martin@ximian.com>
19527
19528         * reflection.c
19529         (mono_image_get_methodspec_token): Make the cache actually work;
19530         fixes #75974.
19531
19532 2005-10-04  Martin Baulig  <martin@ximian.com>
19533
19534         * class.c (mono_class_name_from_token): Removed the unneccessary
19535         `MonoGenericContext *' argument.
19536
19537 2005-10-04  Martin Baulig  <martin@ximian.com>
19538
19539         * loader.c
19540         (method_from_methodspec): Make the caching work again; fixes the
19541         performance regression from #76262.
19542
19543 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19544
19545         * file-io.c:
19546         * file-io.h:
19547         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
19548         GetFileSystemEntries that performs the same work but without going
19549         into io-layer, locking, etc.
19550
19551 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
19552
19553         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
19554         ThreadState_Stopped as well. Fixes #76047.
19555
19556 2005-09-29  Martin Baulig  <martin@ximian.com>
19557
19558         * class.c
19559         (inflate_generic_context): If the new context has a `gmethod', set
19560         its `container' that that gmethod's `container'.
19561
19562         * metadata.c
19563         (mono_metadata_parse_generic_param): Simplify things;
19564         `generic_container = generic_context->container;' is just fine.
19565
19566         * loader.c (method_from_methodspec): Code cleanups.
19567
19568 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
19569
19570         * decimal.c: fix warning (and let gcc generate correct
19571         code on ARM with optimizations).
19572
19573 2005-09-28  Martin Baulig  <martin@ximian.com>
19574
19575         * loader.c
19576         (method_from_memberref): Added `MonoGenericContext *class_context'
19577         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
19578         (method_from_methodspec): If we're a memberref, use the enclosing
19579         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
19580
19581 2005-09-28  Martin Baulig  <martin@ximian.com>
19582
19583         * object.c (mono_runtime_invoke_array): Added support for
19584         MONO_TYPE_GENERICINST; fixes #75917.
19585
19586 2005-09-27  Martin Baulig  <martin@ximian.com>
19587
19588         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
19589         `k->byval_arg.type' to determine the actual type.
19590
19591         * loader.c (method_from_methodspec): Removed some hacks.
19592
19593 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
19594
19595         * class-internals.h (mono_field_is_deleted): Do the test for
19596         rtspecialname before we check the actual name of the field. This
19597         prevents us from dereferencing a pointer into the string table,
19598         saving us from accessing a few pages
19599
19600         * *.c: Replace the use of {Enter,Leave}CriticalSection with
19601         macros. This will allow a deadlock debugger to easily be plugged
19602         in.
19603
19604 2005-09-27  Martin Baulig  <martin@ximian.com>
19605
19606         * loader.c (method_from_methodspec): Create a "signature"
19607         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
19608
19609 2005-09-27  Martin Baulig  <martin@ximian.com>
19610
19611         * class.c
19612         (inflate_generic_class): Correctly set the new context's
19613         container.
19614
19615         * loader.c
19616         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
19617         instead of a `MonoGenericContext *'.
19618         (mono_method_signature_full): Take a `MonoGenericContainer *'
19619         instead of a `MonoGenericContext *'.
19620
19621         * metadata.c
19622         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
19623         instead of a `MonoGenericContext *'.
19624         (mono_metadata_parse_method_signature_full): Likewise.
19625
19626 2005-09-26  Martin Baulig  <martin@ximian.com>
19627
19628         * class.c
19629         (mono_class_from_generic_parameter): Set `klass->generic_container'
19630         (mono_class_from_generic_parameter): Likewise.
19631         (mono_bounded_array_class_get): We inherit the generic container
19632         from the element class.
19633
19634         * loader.c
19635         (find_method, find_method_in_class): Take a `MonoGenericContext *'
19636         argument rather than computing it here.
19637         (method_from_memberref): Correctly set the generic context before
19638         parsing the signature.  Fixes #75681.
19639
19640 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
19641
19642         * object.c (mono_class_has_special_static_fields): Fix warnings.
19643
19644 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19645
19646         * assembly.c: Add parse_public_key function, to
19647         par the public keys. Also added mono_assembly_name_parse_full,
19648         to define it the parsed key should be freed or not.
19649         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
19650         to parse a long format assembly name.
19651         * metadata-internals.h: Keep mono_assembly_name_parse_full as
19652         private, since calling it to preserve the key requires
19653         freeing it manually.
19654         
19655 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
19656
19657         * locales.c : removed HAVE_ICU part.
19658
19659 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
19660
19661         * object.c (mono_class_create_runtime_vtable): Avoid calling 
19662         field_is_special_static if the klass has no special static fields.
19663
19664         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
19665         (MonoCachedClassInfo): Likewise.
19666
19667         * object.c (mono_class_has_special_static_fields): New helper function.
19668
19669 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19670
19671         * class.c (mono_class_create_from_typedef): Don't call 
19672         interfaces_from_typedef_full for enums.
19673         (mono_class_create_from_typedef): Compute the base types of enums directly
19674         without calling mono_class_setup_fields ().
19675         (mono_class_find_enum_basetype): New helper function.
19676
19677         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
19678         one place inside the string heap.
19679         
19680 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
19681
19682         * class.c: locking fixes, code cleanups, some docs added.
19683         Allocate some data structures in the image mempool.
19684
19685 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19686
19687         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19688         the example code.
19689         
19690 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
19691
19692         * class-internals.h, class.c, reflection.c: reduce memory taken by
19693         MonoClass.
19694
19695 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
19696
19697         * metadata.c, metadata.h, loader.h: documentation updates, code and
19698         API cleanups.
19699
19700 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19701
19702         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19703         the example code.
19704
19705         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
19706         page faults caused by the runtime while reading metadata.
19707
19708 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19709
19710         * socket-io.c: the field names were changed 3 months ago and no one
19711         realized until bug #76077 got filed!
19712
19713 2005-09-20  Martin Baulig  <martin@ximian.com>
19714
19715         * icall.c (assembly_icalls): Removed some unused debugger icalls.
19716
19717 2005-09-20  Martin Baulig  <martin@ximian.com>
19718
19719         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
19720         write the rank into the class entry.
19721
19722 2005-09-20  Martin Baulig  <martin@ximian.com>
19723
19724         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
19725
19726 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
19727
19728         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19729
19730         * icall.c (custom_attrs_defined_internal): New icall.
19731
19732         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
19733         function.
19734         (mono_custom_attrs_construct_by_type): New helper function.
19735
19736 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
19737
19738         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
19739         terminate the resulting string. Fixes #76123.
19740
19741 2005-09-16  Martin Baulig  <martin@ximian.com>
19742
19743         * mono-debug.c
19744         (mono_debug_add_method): Ignore inflated methods for the moment.
19745
19746 2005-09-14  Martin Baulig  <martin@ximian.com>
19747
19748         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
19749
19750 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
19751
19752         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
19753         return a success/failure indication.
19754         (mono_metadata_interfaces_from_typedef_full): Ditto.
19755         (get_constraints): Ditto.
19756
19757 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
19758
19759         * marshal.c (emit_marshal_array): Fix handling of null arrays.
19760         
19761         * marshal.c (emit_marshal_array): Add support for returning string
19762         arrays from delegates. Fixes #76063.
19763
19764         * marshal.c: Use the emit_ldloc/stloc macros where possible.
19765
19766 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
19767
19768         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
19769         icall.
19770
19771 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
19772
19773         * reflection.c icall.c: Fix after mono_get_exception_type_load
19774         signature change.
19775
19776         * assembly.c (mono_assembly_get_assemblyref): New helper function.
19777         (mono_assembly_load_reference): Use the new helper.
19778
19779         * class-internals.h (MonoLoaderError): New structure containing 
19780         information about type loading errors.
19781
19782         * class-internals.h loader.c: Add APIs to store per-thread loader
19783         error information.
19784
19785         * loader.c class.c: Set the loader error if needed.
19786
19787         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
19788
19789 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
19790
19791         * decimal.c: fixed to handle the broken ARM fp format.
19792
19793 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
19794
19795         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
19796         broken.
19797
19798 2005-09-06  Martin Baulig  <martin@ximian.com>
19799
19800         * domain.c (supported_runtimes): Added v2.0.50727.
19801
19802 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
19803
19804         * culture-info.h: reduce the size of some structures.
19805
19806 2005-09-05  Martin Baulig  <martin@ximian.com>
19807
19808         Reflect latest API changes in the August CTP.
19809
19810         * icall.c
19811         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
19812         ("MonoType.HasGenericArguments"): Removed.
19813         ("MonoMethod.BindGenericParameters"): Renamed to
19814         "MakeGenericMethod".
19815         ("MethodBuilder.BindGenericParameters"): Renamed to
19816         "MakeGenericMethod".    
19817
19818 2005-09-05  Martin Baulig  <martin@ximian.com>
19819
19820         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
19821
19822 2005-09-05  Martin Baulig  <martin@ximian.com>
19823
19824         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19825
19826         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
19827         generic_container is non-NULL.
19828
19829 2005-09-05  Martin Baulig  <martin@ximian.com>
19830
19831         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19832
19833         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19834
19835 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19836
19837         * reflection.c (encode_locals,
19838         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19839         for large generic types.
19840
19841 2005-09-05  Martin Baulig  <martin@ximian.com>
19842
19843         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19844
19845         * class.c (mono_dup_array_type): New public method.
19846         (mono_metadata_signature_deep_dup): New public method.
19847         (dup_type): Correctly duplicate array and function types.
19848
19849 2005-09-05  Martin Baulig  <martin@ximian.com>
19850
19851         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19852
19853         * reflection.c (get_default_param_value_blobs): Handle generic types
19854         and generic methods.
19855
19856 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19857
19858         * class.c: Fixed error reporting (method/class were inversed) for 
19859         inheritance demands.
19860         * security-manager.c|h: Added the AppDomain when calling the managed
19861         System.Security.SecurityManager.InheritanceDemand method.
19862
19863 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19864
19865         * reflection.c (encode_marshal_blob): 'marshaltype' and
19866         'marshaltyperef' are alternate sources for the custom marshaler
19867         name.
19868
19869 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19870
19871         * class.c: fix creation of array classes with rank == 1
19872         (patch by Ankit Jain <jankit@novell.com>).
19873
19874 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19875
19876         * object.c: fix check for creating the bound data for arrays vs
19877         szarrays.
19878
19879 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19880
19881         * object.c: configuration file name is now based on the executable name,
19882         not the image name. Fixes bug #75931.
19883
19884 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19885
19886         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19887         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19888
19889 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19890
19891         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19892
19893 2005-08-24  Ankit Jain  <jankit@novell.com>
19894             Raja R Harinath  <rharinath@novell.com>
19895
19896         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19897           called by it recursively.
19898           (mono_class_init): Remove special case in pending_init handling, since it's
19899           superseded by the fix to mono_class_from_typeref.
19900
19901 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19902
19903         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19904         BROKEN_THREAD_START stuff.
19905
19906 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19907
19908         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19909         trampoline.
19910
19911         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19912         
19913         * object.c (mono_delegate_ctor): Replace the original function address with
19914         a delegate trampoline.
19915
19916 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19917
19918         * icall.c: add boolean argument to base64_to_byte_array and 
19919         InternalFromBase64String to control whether a whitespace-only string
19920         is allowed (or should casue a FormatException to be thrown). We need
19921         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19922         to match the MS behaviour in both profiles.
19923         * appdomain.c: Bump corlib version.
19924
19925 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19926
19927         This patch implements a big portion of publisher policy
19928         support, used to bind assembly versions and redirect
19929         one assembly from version A to version B.
19930
19931         * assembly.c:
19932         New GSList loaded_assembly_bindings, for storing the cached
19933         assembly bindings.
19934         (assembly_binding_maps_name): New static function for checking if a 
19935         assembly binding information maps an assembly name.
19936         (mono_assembly_binding_info_free): New function for freeing
19937         assembly binding information resources.
19938         (get_publisher_policy_info): New static function for retrieving 
19939         assembly binding information from a MonoImage.
19940         (compare_versions): New static function for comparing an assembly
19941         binding information data and the version of an assembly name.
19942         (check_policy_versions): New static function for checking if an
19943         assembly binding info mapping an assembly name is valid for it.
19944         (mono_assembly_load_publisher_policy): New static function for
19945         loading the 'policy.major.minor.MyAssembly' image for an assembly
19946         with an assembly name 'aname'.
19947         (mono_assembly_bind_version): New static function for updating
19948         assembly redirection.
19949         (mono_assembly_apply_binding): New static function for applying
19950         assembly binding.
19951         (search_binding_loaded): New static function for searching 
19952         loaded assembly binding infos in the cache domain.
19953         (mono_assembly_load_full): Don't apply assembly binding for
19954         reflection only assemblies.
19955
19956         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19957         which contains information about assembly binding. Also
19958         declare signature for mono_config_parse_publisher_policy ()
19959         function, used to retrieve pub policy info.
19960         
19961         * mono-config.c:
19962         (publisher_policy_start): New static function used to parse publisher 
19963         policy config files.
19964         (publisher_policy_parser): New static MonoParseHandler containing 
19965         the functions used when parsing config files.
19966         (mono_config_parse_publisher_policy): New function for parsing
19967         publisher policy files.
19968         
19969 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19970
19971         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19972
19973         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19974
19975         * object.c (mono_get_addr_from_ftnptr): New helper function.
19976
19977         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19978
19979         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19980
19981 2005-08-19  Dick Porter  <dick@ximian.com>
19982
19983         * threads.c, threads.h, appdomain.c, appdomain.h,
19984         profiler-private.h, monitor.c, object.c, object-internals.h,
19985         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19986         store the thread ID, so it can hold a 64 bit value if needed.
19987
19988 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19989
19990         * reflection.c (mono_reflection_create_dynamic_method): Store the
19991         handle class into the method references as well so ldtoken works in
19992         dynamic methods.
19993
19994         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19995         types.
19996
19997 2005-08-19  Ankit Jain <jankit@novell.com>
19998
19999         Fix #75847.
20000         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
20001           here rather than using the method signature of a arbitrary function
20002           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
20003           two arguments.
20004           Hack done with Harinath.
20005
20006 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20007
20008         * threadpool.c: disable printing stack traces when we get a exception
20009         in a threadpool thread. I need to do more testing to figure out which
20010         cases actually print this. Fixes bug #75828.
20011
20012 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20013
20014         * icall.c: there might be ignored whitespace after the last '='. This
20015         fixes length computation and bug #75840.
20016
20017 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
20018
20019         * assembly.c (mono_assembly_load_full): Consider .exe extension as
20020         well. Fixes #75809.
20021
20022         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
20023         #75784.
20024         
20025         * reflection.c (create_custom_attr_data): Ditto.
20026
20027 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
20028
20029         * locales.c, culture-info.h : removed RegionLCIDMap.
20030         * culture-info-tables.h : regenerated.
20031
20032 2005-08-16  Martin Baulig  <martin@ximian.com>
20033
20034         * class.c (mono_type_get_name_recurse): Small fix.
20035
20036 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
20037
20038         * locales.c : indentation fixie.
20039
20040 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
20041
20042         * object-internals.h,
20043           locales.h,
20044           locales.c,
20045           culture-info.h,
20046           icall.c : added RegionInfo table support.
20047         * culture-info-table.h : regenerated for region support.
20048
20049 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
20050
20051         * reflection.c (resolve_object): handle all kinds of MonoMethod
20052         including generic ones
20053
20054 2005-08-12  Ankit Jain <jankit@novell.com>
20055
20056         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
20057           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
20058
20059 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
20060
20061         * process.c: Don't close a thread handle when it's NULL. This is a
20062         workaround for bug #75733.
20063
20064 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
20065
20066         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
20067
20068 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
20069
20070         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
20071
20072 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20073
20074         * threadpool.c: if a work item in the thread pool has a callback that
20075         catches a exception, don't propagate it after invoking the callback.
20076         Fixes bug #75336.
20077
20078 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
20079
20080         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
20081
20082         * class-internals.h (MonoCachedClassInfo): Add some new fields.
20083
20084         * class.c (mono_class_init): Load field info lazily in the AOT case.    
20085
20086         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
20087
20088 2005-08-03  Ankit Jain  <jankit@novell.com>
20089
20090         Fix #75683.
20091         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
20092           PInvoke calling convention is 0.
20093
20094 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
20095
20096         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
20097         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
20098
20099 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
20100
20101         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
20102         to handle threads not started by the GC (patch by Michael Meeks
20103         <michael.meeks@novell.com>).
20104
20105 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
20106
20107         * reflection.c: Make buffer used in emitting types larger for some
20108         big generic types (patch by Michal Moskal).
20109
20110 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
20111
20112         * mono-debug.c: Fix some (not all) alignment problems.
20113
20114 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20115
20116         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
20117         Invoke mono_image_load_from_data_full passing the refonly
20118         parameter.
20119
20120         * assembly.c
20121         (mono_assembly_open_from_bundle): Add the refonly argument, 
20122         in order to pass it to other methods it calls to.
20123         (do_mono_assembly_open): Add the refonly argument, in order 
20124         to pass it to other methods it calls to.
20125         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
20126         the refonly parameter to it.
20127
20128         * image.c: Add loaded_images_refonly_hash and
20129         loaded_images_refonly_guid_hash to cache the reflection
20130         only loaded images.
20131         (mono_images_init): Initialize the hash tables used for
20132         caching the reflection only images.
20133         (load_modules): Invoke mono_image_open_full passing the refonly
20134         parameter to load the modules the correct way.
20135         (build_guid_table): Add the refonly argument, to re-build the 
20136         correct hash table.
20137         (do_mono_image_open): Added the refonly argument, in order to
20138         define it for the loaded image.
20139         (mono_image_loaded_full): New function, which receives an
20140         additional parameter to look for the image in the refonly or
20141         non-refonly section.
20142         (mono_image_loaded): Updated, using mono_image_loaded_full.
20143         (mono_image_loaded_by_guid_full): The same case that happens
20144         with mono_image_loaded_full.
20145         (mono_image_loaded_by_guid): Likewise.
20146         (register_image): Use the ref_only variable inside MonoImage
20147         to decide in which hash table store the current image.
20148         (mono_image_open_from_data_full): Rename
20149         mono_image_open_from_data to mono_image_open_from_data_full,
20150         adding the refonly argument, to define the ref_only variable 
20151         inside MonoImage.
20152         (mono_image_open_from_data): Return 
20153         mono_image_open_from_data_full.
20154         (mono_image_open_full): Rename mono_image_open to
20155         mono_image_open_full, receiving the new refonly argument,
20156         to pass it to inner methods.
20157         (mono_pe_file_open): Update this function, to open
20158         a MonoImage as a non-refonly image.
20159         (mono_image_close): Use the refonly variable inside
20160         MonoImage to remove the image from the correct caches.
20161
20162         * image.h: Add the signatures of mono_image_open_full,
20163         mono_image_open_from_data_full, mono_image_loaded_full,
20164         mono_image_loaded_by_guid_full.
20165
20166         * metadata-internals.h: Add the ref_only field to 
20167         MonoImage.
20168         
20169 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20170
20171         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
20172         Fix the last behavior, which used to load the assemblies and
20173         extract MonoReflectionAssemblyName information, instead of
20174         extract it from the metadata tables. Needed for Reflection
20175         Only assemblies.
20176         
20177 2005-07-29  Martin Baulig  <martin@ximian.com>
20178
20179         * mono-debug-debugger.c
20180         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
20181         not initialized.
20182
20183         * mono-debug.c
20184         (mono_debug_address_from_il_offset): Check whether we have
20185         debugging support before attempting to take the lock.
20186         (mono_debug_source_location_from_address): Likewise.
20187         (mono_debug_source_location_from_il_offset): Likewise.
20188         (mono_debug_il_offset_from_address): Likewise.
20189         (mono_debug_address_from_il_offset): Likewise.
20190
20191 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
20192
20193         * class.c (mono_class_from_name_case): Add support for dynamic images.
20194         Fixes #75650.
20195
20196         * object.c (mono_class_compute_gc_descriptor): Add a workaround
20197         for #75479.
20198
20199 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
20200         
20201         * reflection.c (mono_method_get_object): Fix warning.
20202
20203 2005-07-28  Martin Baulig  <martin@ximian.com>
20204
20205         * mono-debug.c
20206         (mono_debug_add_wrapper): Also write the wrapper type.
20207
20208 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
20209
20210         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
20211         
20212         * class.c (mono_class_init): Avoid reading nested classes if the AOT
20213         data indicates the class has none.
20214
20215 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
20216
20217         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
20218         loader lock with the debugger lock. Prevents deadlocks for beagle.
20219
20220         Beagle can now run on an smp box for a weekend without any
20221         issues. Woohoo!
20222
20223 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
20224
20225         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
20226         in a module. Fixes #75629.
20227
20228 2005-07-26  Martin Baulig  <martin@ximian.com>
20229
20230         * mono-debug.c (mono_debug_add_wrapper): New static method.
20231         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
20232         interncall or a wrapper.
20233
20234         * mono-debug.h (MonoDebugWrapperData): New public typedef.
20235         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
20236         (MONO_DEBUGGER_VERSION): Bump to 51.
20237
20238         * mono-debug-debugger.c
20239         (mono_debugger_add_type): Removed this empty function.
20240         (mono_debugger_add_method): Likewise.
20241
20242 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
20243
20244         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
20245         before accessing method->slot.
20246
20247 2005-07-21  Jb Evain  <jbevain@gmail.com>
20248
20249         * reflection.c (method_encode_clauses/class): Handle filters clauses.
20250         Fixes #75010.
20251
20252 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
20253
20254         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
20255         #75587.
20256
20257 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
20258
20259         * image.h image.c: Add mono_image_get_guid () API function.
20260
20261 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
20262
20263         There were issues when multiple threads tried to load
20264         assemblies. A deadlock was created between assemblies_mutex and
20265         mono_domain_assemblies_lock. This fixes the issue by making the
20266         assembly ref counting be lock free. See bug 75586.
20267         
20268         * image.c (mono_image_close): The add ref function here was using
20269         Interlocked operations while the unref was using a mutex and a
20270         --. I don't think this was ever a bug that would be exposed in a
20271         non-pendantic way (ie, by an embedder doing a ref on one thread
20272         and an unref on another), but for the sake of correctness, this is
20273         now Interlocked.
20274
20275         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
20276         (mono_assembly_load_reference): Call mono_assembly_addref rather
20277         than touching the refcount ourselves.
20278         (mono_assembly_close): Use InterlockedDecrement to unref the
20279         assembly. Don't acquire the lock unless it is actually needed.
20280
20281 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
20282
20283         * class.c (mono_class_layout_fields): Fix calculation of has_references
20284         for generic types.
20285
20286 2005-07-12  Martin Baulig  <martin@ximian.com>
20287
20288         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20289
20290         * metadata.c
20291         (mono_type_hash): Provide better hashing for generic instances.
20292         (mono_generic_inst_hash): Improve hashing.
20293         (mono_generic_class_hash): Likewise.
20294
20295         * reflection.c (mymono_metadata_type_hash): Improve hashing for
20296         generic instances.
20297
20298 2005-07-12  Martin Baulig  <martin@ximian.com>
20299
20300         * reflection.c (mono_reflection_create_runtime_class): Remove the
20301         hack for generic type definitions and non-`Run' assemblies.
20302         (mono_reflection_bind_generic_parameters): Also use
20303         `klass->wastypebuilder' to check for TypeBuilders.
20304
20305 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
20306
20307         * class.c (mono_class_layout_fields): Fix calculation of has_references
20308         for generic types.
20309
20310         * class.c (inflate_generic_class): Fix a leak.
20311         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
20312         for generic types.
20313
20314 2005-07-11  Martin Baulig  <martin@ximian.com>
20315
20316         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
20317         on error.
20318
20319 2005-07-11  Martin Baulig  <martin@ximian.com>
20320
20321         * loader.c (find_method): Also lookup in
20322         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
20323
20324 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20325
20326         * appdomain.c (mono_domain_unload): Don't free the error message
20327         before passing it to mono_get_exception_...
20328
20329         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
20330         
20331 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
20332
20333         * threads.c: try to better guess an available RT signal (bug #75387).
20334
20335 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20336
20337         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
20338         and CACHE_OBJECT.
20339
20340 2005-07-07  Martin Baulig  <martin@ximian.com>
20341
20342         * class.c (mono_type_get_name_full): Return NULL for
20343         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
20344         fixes #75408.
20345
20346 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20347
20348         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
20349         exit the appdomain as well being aborted.
20350
20351         * threadpool.c: Create all threadpool threads inside the root appdomain, and
20352         change back to the root domain after calling managed code. This enables
20353         appdomains using threadpools to be unloaded.
20354
20355 2005-07-07  Martin Baulig  <martin@ximian.com>
20356
20357         * class-internals.h
20358         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
20359         into `MonoDynamicGenericClass' since we only need it for dynamic
20360         types.
20361
20362         * reflection.c (mono_class_bind_generic_parameters): We don't need
20363         to compute the `parent' here.
20364
20365 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
20366
20367         * culture-info-table.h : regenerated.
20368
20369 2005-07-06  Martin Baulig  <martin@ximian.com>
20370
20371         * icall.c
20372         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
20373
20374         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
20375
20376 2005-07-06  Martin Baulig  <martin@ximian.com>
20377
20378         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
20379         we're doing a signature-only comparision; fixes #74945.
20380
20381 2005-07-06  Martin Baulig  <martin@ximian.com>
20382
20383         * class-internals.h (MonoGenericClass): Moved some things out into
20384         a new `MonoInflatedGenericClass' type.  
20385         (MonoInflatedGenericClass): New type; the `klass' of a
20386         `MonoGenericClass' is now computed lazyly in
20387         mono_get_inflated_generic_class().      
20388
20389         * class.c (mono_get_inflated_generic_class): New public function.
20390         (mono_class_inflate_generic_method): Removed the unused
20391         `MonoClass *' argument.
20392         (setup_generic_vtable): Don't call mono_get_inflated_method() on
20393         all the methods.
20394         (mono_class_create_generic): Make this static and merge it with
20395         mono_class_create_generic_2(); we're now called automatically from
20396         mono_get_inflated_generic_class().
20397
20398         * loader.c (mono_method_signature): Call
20399         mono_get_inflated_method() here.
20400
20401 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
20402
20403         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
20404         type of fields with RVA.
20405
20406         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
20407         for this pseudo class.
20408         (my_mono_class_from_generic_parameter): Likewise.
20409         (mono_class_init): Allow interfaces to have cctors.
20410
20411 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20412
20413         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
20414         lazily for AOT methods.
20415
20416 2005-07-05  Martin Baulig  <martin@ximian.com>
20417
20418         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
20419         returns FALSE for a successful match, not TRUE.
20420
20421 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20422
20423         * loader.c (mono_method_get_index): Optimize this a bit.
20424
20425 2005-07-04  Martin Baulig  <martin@ximian.com>
20426
20427         * class.c
20428         (class_compute_field_layout): Move the check for generic type
20429         definitions into mono_class_layout_fields().  Fixes #74684.
20430         (mono_class_from_generic_parameter): Correctly compute
20431         `klass->parent'; fixes #75457.
20432
20433         * reflection.c (register_assembly, register_module): Make sure
20434         `domain->rejobject_hash' is already created.
20435
20436 2005-07-02  Martin Baulig  <martin@ximian.com>
20437
20438         * class-internals.h
20439         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
20440         `MonoDynamicGenericClass'.      
20441
20442 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
20443
20444         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
20445         returned by a field getter is null, since null is a valid value.
20446
20447 2005-07-01  Martin Baulig  <martin@ximian.com>
20448
20449         * reflection.c (mono_reflection_generic_class_initialize): Update
20450         the `dgclass->fields [i].parent' to the correct class.
20451         (mono_image_get_fieldref_token): Use the declaring type, not the
20452         reflected type.
20453
20454 2005-07-01  Martin Baulig  <martin@ximian.com>
20455
20456         * loader.c (find_method): Also look in the interfaces; fixes #75429.
20457
20458 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
20459
20460         * threads.c (thread_cleanup): assert that thread != NULL
20461         (wait_for_tids_or_state_change): We were using the wrong variable
20462         when accessing wait->threads. `i' was always out of the bounds of
20463         the array.
20464
20465 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20466
20467         * loader.c: map user32 and kernel32 to libMonoSupportW
20468
20469 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
20470
20471         * appdomain.c (unload_thread_main): Mark this as WINAPI.
20472
20473 2005-06-28  Martin Baulig  <martin@ximian.com>
20474
20475         * loader.c (method_from_methodspec): Fix #75334.
20476
20477 2005-06-28  Martin Baulig  <martin@ximian.com>
20478
20479         Fix #74953 - Arrays now implement the generic IList<T> interface
20480         on the 2.0 platform.
20481
20482         * class-internals.h (MonoDefaults): Added `generic_array_class'.
20483
20484         * reflection.c (mono_class_bind_generic_parameters): New public
20485         function; similar to mono_reflection_bind_generic_parameters(),
20486         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
20487
20488         * domain.c (mono_init_internal): Try to initialize.
20489         `mono_defaults.generic_array_class' here; this'll only succeed if
20490         we're using the 2.0 corlib.
20491
20492         * icall.c
20493         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
20494         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
20495         (mono_lookup_internal_call): Added support for nested classes.
20496
20497         * loader.c
20498         (mono_get_method_from_token): Set `result->signature->pinvoke' if
20499         we're an interncall and have generic arguments.
20500
20501         * class.c
20502         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
20503         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
20504         instance of System.Array.InternalArray<T> for arrays, so they
20505         implement the generic IList<T> interface.
20506
20507 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
20508
20509         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
20510         (chastamar@yahoo.com). Fixes #75374.    
20511
20512 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
20513
20514         * culture-info-table.h: regenerated.
20515
20516 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20517
20518         * icall.c: handle spaces correctly for base64 strings.
20519
20520 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
20521
20522         * *.c: Kill some warnings.
20523
20524 2005-06-23  Duncan Mak  <duncan@novell.com>
20525
20526         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
20527         that this builds on Solaris 10 (x86).
20528
20529 2005-06-23  Martin Baulig  <martin@ximian.com>
20530
20531         * class.c
20532         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
20533         generic type definitions.
20534
20535 2005-06-23  Martin Baulig  <martin@ximian.com>
20536
20537         Fix #75331.
20538
20539         * metadata.c (mono_class_get_overrides): Renamed to
20540         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
20541         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
20542         pass it to mono_get_method_full().
20543
20544 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
20545
20546         * reflection.c (mono_reflection_create_runtime_class): take the
20547         mono_domain_lock in this method. Prevents deadlocks
20548
20549 2005-06-22  Martin Baulig  <martin@ximian.com>
20550
20551         * loader.c (method_from_methodspec): Fix #75330.
20552
20553 2005-06-22  Martin Baulig  <martin@ximian.com>
20554
20555         * reflection.c (type_get_qualified_name): Use
20556         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
20557         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
20558         argument; use it if we don't have an assembly name.
20559
20560 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
20561
20562         * object.c: In mono_message_init, set "copy out" flag for in
20563         parameters with the [Out] flag.
20564
20565 2005-06-21  Martin Baulig  <martin@ximian.com>
20566
20567         * class.c
20568         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
20569         and MONO_TYPE_PTR.
20570
20571 2005-06-21  Martin Baulig  <martin@ximian.com>
20572
20573         * class.c (mono_class_init): Don't initialize `class->fields' for
20574         generic instances since they're initialized again in
20575         compute_field_layout(). 
20576         (compute_field_layout): Set the field's `generic_info' here; fix
20577         #75320. 
20578
20579 2005-06-21  Martin Baulig  <martin@ximian.com>
20580
20581         * class-internals.h
20582         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
20583
20584         * metadata.c (mono_metadata_generic_method_equal): Also
20585         distinguish the `generic_class'; fixes #75334.
20586
20587 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20588
20589         * domain.c:
20590         * appdomain.c:
20591         * domain-internals.h:
20592         * reflection.c: 'domain_assemblies' field is now protected by its own
20593         lock. Don't call into managed code to run the AssemblyLoad event if we
20594         now there are no registered delegates for it.
20595
20596 2005-06-20  Martin Baulig  <martin@ximian.com>
20597
20598         * class.c (mono_class_is_assignable_from): Use a custom version of
20599         mono_class_has_parent() to make things work for generic instances;
20600         fix #75300.
20601
20602 2005-06-20  Martin Baulig  <martin@ximian.com>
20603
20604         * loader.c (method_from_methodspec): Apply a patch from
20605         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
20606
20607 2005-06-20  Martin Baulig  <martin@ximian.com>
20608
20609         * class.c (mono_class_init): Reverted Zoltan's last change; it
20610         breaks generics.
20611
20612 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
20613
20614         * threads.c (wait_for_tids_or_state_change): Add missing locking.
20615
20616 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20617
20618         * socket-io.c: fix the index in the socket array for writable/error
20619         sockets. Fixes bug #75306.
20620
20621 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
20622
20623         * class.c (mono_class_init): Allow interfaces to have static ctors.
20624
20625 2005-06-17  Martin Baulig  <martin@ximian.com>
20626
20627         * loader.c (method_from_methodspec): Use `context->container' when
20628         parsing the `gmethod->inst'.
20629
20630 2005-06-17  Martin Baulig  <martin@ximian.com>
20631
20632         * class.c (mono_type_get_name_recurse): Don't add the assembly
20633         name for type arguments.
20634
20635 2005-06-15  Martin Baulig  <martin@ximian.com>
20636
20637         * reflection.c (mono_image_get_inflated_method_token): Encode
20638         correct klass; fixes #75260.
20639
20640 2005-06-13 Michal Moskal <malekith@nemerle.org>
20641
20642         * icall.c: Make GetCorrespondingMethod/Constructor take
20643         MonoReflectionMethod method not MonoMethod. Removed
20644         MonoType.GetCorrespondingField, and make
20645         MonoGenericType.GetCorrespondingField take name not
20646         MonoClassField.
20647
20648 2005-06-13  Michal Moskal <malekith@nemerle.org>
20649
20650         * reflection.c (field_encode_signature, encode_locals):
20651          Make sizes of buffers for types larger (for big generic types).
20652          (create_generic_typespec,
20653          mono_reflection_sighelper_get_signature_local,
20654          mono_reflection_sighelper_get_signature_field):
20655          Add asserts for too small buffers.
20656
20657 2005-06-15  Martin Baulig  <martin@ximian.com>
20658
20659         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
20660         if our parent is not a dynamic type.
20661
20662 2005-06-15  Martin Baulig  <martin@ximian.com>
20663
20664         * class-internals.h (MonoTypeNameFormat): New enum.
20665
20666         * class.c
20667         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
20668         (mono_type_get_full_name): Removed.
20669         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
20670         argument instead of the boolean's.
20671
20672         * icall.c (ves_icall_System_MonoType_getFullName):
20673         Added `gboolean assembly_qualified'.    
20674
20675         * reflection.h
20676         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
20677
20678         * reflection.c (mono_reflection_parse_type): Parse the new type
20679         name format.
20680
20681 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20682
20683         * icall.c: no need to convert from utf16 to utf8 and then back again
20684         after the call to GetLogicalDrives.
20685
20686 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20687
20688         * icall.c: frombase64. Fix problems exposed by new tests.
20689
20690 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20691
20692         * icall.c: added internal calls for converting char [] and strings in
20693         base64 into byte [].
20694
20695 2005-06-10  Martin Baulig  <martin@ximian.com>
20696
20697         * class.c (mono_class_create_generic_2): Read the nested classes
20698         from the metadata rather than from `gklass->nested_classes' since
20699         `gklass' might not be initialized yet.
20700
20701 2005-06-09  Duncan Mak  <duncan@novell.com>
20702
20703         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
20704         all public headers. Fixes #74919.
20705
20706 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
20707
20708         * domain.c: The key for proxy_vtable_hash is now a pointer
20709         array. Added new GHashFunc and GCompareFunc functions for this.
20710
20711         * class.h: The list of interfaces in MonoRemoteClass is known in
20712         advance and can't grow (we create a new MonoRemoteClass if needed),
20713         so now the interface array can be allocated together with
20714         MonoRemoteClass.
20715         
20716         * object.c: Added a new method create_remote_class_key.
20717         Fixed mono_remote_class so it does not depend on
20718         mono_upgrade_remote_class.
20719         Removed extend_interface_array.
20720         Added new method clone_remote_class(), which makes a copy of a remote
20721         class and adds a new interface or class to it.
20722         mono_upgrade_remote_class() now creates a new remote class (or gets
20723         it from the cache) if an vtable upgrade is needed. In this way
20724         we make sure that other objects sharing the same remote class
20725         don't get the new vtable with unwanted interfaces.
20726         
20727         * object-internals.h:
20728         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
20729         
20730         * marshal.c: Track changes in mono_upgrade_remote_class().
20731
20732 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
20733         * icall.c: Add runtime methods for obtaining members of inflated
20734         class, which were created from supplied non-inflated members. It
20735         is used in internal Get{Method,Constructor,Field} methods in
20736         System.Type
20737
20738 2005-06-09  Martin Baulig  <martin@ximian.com>
20739
20740         * reflection.c
20741         (mono_reflection_bind_generic_method_parameters): Fix #75169.
20742
20743 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20744         * reflection.c (mono_image_basic_init): Define
20745         Version in MonoDynamicAssembly. 
20746         
20747 2005-06-08  Martin Baulig  <martin@ximian.com>
20748
20749         Fix #75136.
20750
20751         * loader.c
20752         (mono_method_signature_full): New public method; takes a
20753         `MonoGenericContext *'.
20754         (find_method): Use mono_method_signature_full() and pass the
20755         klass'es context to it.
20756
20757         * class.c (mono_class_is_inflated_method): Use
20758         mono_method_signature_full() and pass the context to it.
20759
20760 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
20761
20762         * object.c: add proper locking in mono_remote_class_vtable(),
20763         fixes possible memory corruption.
20764
20765 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
20766
20767         * marshal.c (mono_remoting_marshal_init): set
20768         initialized after initialization.
20769
20770 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
20771
20772         * locales.c : hush.
20773
20774 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
20775
20776         * object.c (extend_interface_array): fix really silly
20777         memory corrupting / comparison bug.
20778
20779 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20780
20781         * reflection.c: Functions added to support the creation
20782         of CustomAttributeData, which includes Attribute data
20783         used by ReflectionOnly methods.
20784
20785         * reflection.h:  mono_reflection_get_custom_attrs_data and
20786          mono_custom_attrs_data_construct added (functions exposed).
20787
20788          * icall.c: Added mono_reflection_get_custom_attrs_data
20789          as icall.
20790         
20791 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
20792
20793         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
20794         lupus's request.
20795
20796 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
20797
20798         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
20799
20800         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
20801         dynamic DllImportAttribute.
20802
20803         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
20804         dynamic DllImportAttribute.
20805
20806         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
20807         Fixes #75162.
20808
20809 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20810
20811         * threads.c: avoid segfault when an unstarted thread is aborted.
20812
20813 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
20814
20815         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
20816         Returns the name and version of the runtime for reporting.
20817
20818 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20819
20820         * appdomain.c: bump corlib version.
20821         * object-internals.h: new field in MonoReflectionAssembly.
20822
20823 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20824
20825         * object-internals.h: Carlos forgot to add this field.
20826
20827 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20828
20829         * icall.c: Added create_version to create instances
20830         of Version of MonoReflectionAssemblyName. This change helps
20831         the AssemblyName tests to keep running fine.
20832         
20833 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20834   
20835         * object.c (mono_method_return_message_restore): A somehow less
20836         intrusive fix for #75138.
20837
20838 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20839
20840         * object.c (mono_method_return_message_restore): Fix computation
20841         of expected number of out args.
20842
20843 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20844
20845         * reflection.c (mono_image_get_method_info): Fix the case when the
20846         charset is empty.
20847
20848 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20849
20850         * object.c: Added missing null check in
20851           mono_method_return_message_restore.
20852
20853 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20854
20855         * reflection.c (mono_image_get_method_info): Handle the case when
20856         dllentry is empty.
20857
20858 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20859
20860         * object.c: When creating the vtable for a proxy, take into account
20861         all inherited interfaces, not only the ones registered in
20862         iclass->interfaces. This fixs bug #74996.
20863         Also, in mono_method_return_message_restore, verify that the array
20864         of out args has the expected lengh.
20865
20866 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20867
20868         * socket-io.c: update the timeout in Poll when the call is interrupte.
20869
20870 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20871
20872         * socket-io.c: support abort/suspend in Select_internal after last
20873         change.
20874
20875 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20876
20877         * threadpool.c: remove warning.
20878
20879 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20880
20881         * icall.c:
20882         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20883         removing the 1024 limit from select(). Runtime part of the fix for
20884         bug #71203.
20885
20886 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20887
20888         * socket-io.c: when resolving the addresses for the same
20889         host returned by gethostname(), get the local IPs from the interface
20890         list. Loopback addresses are discarded if the are interfaces up with
20891         non-loopback ones. Fixes bug #63265.
20892
20893 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20894
20895         * appdomain.c, verify.c, object-internals.h, reflection.c:
20896         bumped corlib number to 36, and added new extra_flags field
20897         to ReflectionMethodBuilder and friends.  Fixes #75060.
20898
20899 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20900
20901         * gc.c: register a new weak link only if the object is non-null
20902         (fixes bug#75047).
20903
20904 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20905
20906         * culture-info.h : short time pattern too.
20907
20908 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20909
20910         * culture-info.h : expand long time pattern string length.
20911
20912 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20913
20914         * culture-info-table.h : update (more French date format; #72788).
20915
20916 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20917
20918         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20919         the method is static. Fixes #75029.
20920
20921 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20922
20923         * reflection.c: Update the table_idx field of method builders after
20924         saving the module, since it can change. This is a workaround for
20925         bug #74914. 
20926
20927 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20928
20929         * culture-info-table.h : update (additional French date format).
20930
20931 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20932
20933         * icall.c (ves_icall_type_Equals): Revert last change.
20934         
20935         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20936
20937         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20938
20939 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20940
20941         * class-internals.h: Added executioncontext_class field to 
20942         MonoDefaults structure.
20943         * domain.c: Cache System.Threading.ExecutionContext class in 
20944         mono_defaults.
20945         * object.c: Capture the ExecutionContext for asynchroneous calls in
20946          mono_async_result_new.
20947         * object-internals.h: Added execution_context and original_context 
20948         fields to MonoAsyncResult. Added execution_context to MonoThread.
20949         * security-manager.c|.h: Added mono_get_context_capture_method to 
20950         return the capture method (if required by the security manager or by
20951         the framework version used).
20952         * threadpool.c: Apply capture (if present) ExecutionContext in 
20953         mono_async_invoke and revert to original context after it completes.
20954
20955 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20956
20957         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20958
20959 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20960
20961         * culture-info-table.h : zh-CHT related workaround.
20962
20963 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20964
20965         * marshal.c (emit_marshal_custom): Add some error checking and call the
20966         methods in the ICustomMarshaler interface. Fixes #74875.
20967         
20968         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20969         native->managed wrappers.
20970
20971 2005-05-12  Martin Baulig  <martin@ximian.com>
20972
20973         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20974         here and use the loader lock.
20975
20976         * mono-debug.c: Properly lock when the debugger is not attached.
20977         (mono_debug_init): Release the initial lock if we're not running
20978         in the debugger.
20979
20980 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20981
20982         * marshal.c (emit_marshal_custom): Pass through NULL values without
20983         calling the custom marshalling routines.
20984
20985         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20986         conversion in structures. Fixes #74882.
20987
20988 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20989
20990         * culture-info-table.h : zh-* cultures were missing.
20991
20992 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20993
20994         * threads.c: Added a new event background_change_event which is signaled
20995         when a thread changes its background mode.
20996         Moved here several checks previously done in managed code. The checks
20997         require the thread lock, and using the thread lock in managed code
20998         can result in deadlocks.
20999         Merged Start_internal and Thread_internal into a single method. Now 
21000         Thread_internal does all work of creating and starting a thread.
21001         Added icalls for setting and getting the state of the object. Moved from
21002         managed code to avoid locking there.
21003         Added wait_for_tids_or_state_change() which is called instad of
21004         wait_for_tids when waiting for non-backround threads to end. This method
21005         will return if one of the threads ends or the background_change_event
21006         is signaled.
21007         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
21008         the background mode. This method signals the background_change_event
21009         event.
21010         * icall.c:
21011         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
21012         removed Start_internal.
21013         
21014 2005-05-11  Martin Baulig  <martin@ximian.com>
21015
21016         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
21017         to order of some fields to get proper alignment on 64-bit machines.
21018
21019 2005-05-11  Martin Baulig  <martin@ximian.com>
21020
21021         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
21022         changes as they're broken and completely fuck up the debugger.
21023
21024         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
21025
21026 2005-05-10  Martin Baulig  <martin@ximian.com>
21027
21028         * reflection.c (mono_reflection_generic_class_initialize): Don't
21029         call mono_class_setup_parent() here.
21030
21031 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21032
21033         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
21034         send/receive timeout use an integer in milliseconds. We were using a
21035         struct timeval.
21036
21037 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21038
21039         * locales.c:
21040         (internal_get_cultures): reserve the first slot of the array for the
21041         InvariantCulture, which will be filled in managed code.
21042
21043 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
21044
21045         * reflection.c (mono_image_fill_module_table): Initialize the
21046         GENERATION field as well.
21047
21048 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21049
21050         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
21051         Monitor.Enter on the object.
21052
21053 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
21054
21055         * threads.c: Enable the wait for running threads when exiting.
21056         * icall.c: Suspend all threads before exiting.
21057
21058 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
21059
21060         * assembly.c (mono_assembly_load_reference): Fix warning.
21061
21062 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21063
21064         * threadpool.c: changed the default number of threads per cpu. From now
21065         on, the default will be 20 + (5 * number of cpus) instead of 50.
21066
21067 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
21068
21069         * loader.c (mono_method_get_signature_full): Add locking here.
21070
21071 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
21072
21073         * appdomain.c: Moved methods for parsing and freeing assembly
21074         names to assembly.c.
21075         * assembly.c, domain-internals.h: Created public methods for parsing
21076         assembly names. Fixed mono_assembly_load_with_partial_name:
21077         it now finds the best match, taking into account the version,
21078         token and culture specified in the partial name. Also return
21079         the latest version if no version information is specified.
21080
21081 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
21082
21083         * threadpool.c: replace check for SocketAsyncCall class.
21084
21085 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21086
21087         * threadpool-internals.h:
21088         * Makefile.am: added threadpool-internals.h
21089
21090         * threadpool.c: call mono_unhandled_exception on exceptions not handled
21091         that happen in threadpool threads (tested on MS).
21092         (mono_thread_pool_remove_socket): new function that dispatch any pending
21093         AIO call on a socket that is closing. By now only epoll really needs it,
21094         as select/poll wake up when the socket closes.
21095
21096
21097         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
21098
21099 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
21100
21101         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
21102
21103 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
21104
21105         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
21106
21107 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
21108
21109         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
21110         has an abort request, convert it into a suspend request.
21111
21112 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
21113
21114         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
21115         warning for the usage of `UnmanagedFunctionPointerAttribute' which
21116         is not supported yet.
21117
21118 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21119
21120         * image.c: register assemblies loaded from data (bundles) in the loaded
21121         assemblies hash. Fixes bug #74772.
21122
21123 2005-04-29  Martin Baulig  <martin@ximian.com>
21124
21125         * class.c (mono_type_get_name_recurse): Update to the new naming
21126         schema from the latest .NET 2.x beta2.
21127         (mono_class_setup_vtable_general): If we're a generic instance,
21128         copy the vtable from our generic type definition and inflate all
21129         the methods in it.
21130
21131         * loader.c (find_method): Update to the new naming schema from the
21132         latest .NET 2.x beta2.
21133
21134 2005-04-29  Raja R Harinath  <harinath@gmail.com>
21135
21136         * class.c (mono_class_init): Add a mono_loader_unlock to the
21137         #74734 fix.
21138
21139 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
21140
21141         * icall.c (ves_icall_System_Environment_Exit): Remove the 
21142         suspend_all_other_threads () call for the time being, since it can hang.
21143
21144         * threads.c (mono_thread_manage): Similarly, disable the waiting for
21145         the background threads to exit, since it can also hang.
21146
21147         * class.c (mono_class_init): Applied patch from Ankit Jain 
21148         (radical@gmail.com). Avoid pending init errors when a field refers
21149         to a nested class using a typeref. Fixes #74734.
21150
21151         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
21152         this for dynamic modules.
21153
21154 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21155
21156         * threads.c: don't wait for threads that are in the process of aborting
21157         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
21158         and waiting for background threads to finish. This makes xsp and
21159         mod-mono-server exit without random length delays and/or hangs.
21160
21161 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21162
21163         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
21164
21165 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
21166
21167         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
21168         dynamic types to prevent infinite loops. Fixes #74727.
21169
21170         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
21171         ..._is_assignable_to.
21172
21173 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
21174
21175         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
21176
21177 2005-04-25  Martin Baulig  <martin@ximian.com>
21178
21179         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
21180
21181         * domain.c
21182         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
21183
21184         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
21185
21186         * reflection.c (build_compressed_metadata): Set metadata header
21187         version to 2.0.
21188
21189 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
21190
21191         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
21192         number into an integral and a decimal part. Fixes #70473.
21193
21194         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
21195
21196 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
21197
21198         * culture-info-table.h : reflected the latest locale-builder output.
21199
21200 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21201
21202         * threadpool.c: check for SuspendRequested too when deciding if
21203         mono_thread_interruption_checkpoint should be called.
21204
21205 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21206
21207         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
21208         * threads.c: remove interruption_mutex and use Interlocked instead. When
21209         suspending all the threads, wait for all the suspended events at once.
21210         If we're shutting down and get an APC that is going to be queued,
21211         call mono_thread_execute_interruption immediately, as the thread might
21212         be sleeping on a pthread condition or mutex.
21213
21214         * icall.c: call mono_runtime_set_shutting_down before suspending the
21215         threads.
21216
21217         Fixes bug #74693. And now xsp is happier when exiting.
21218
21219 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
21220
21221         * loader.c (mono_stack_walk): Fix #74690.
21222
21223 2005-04-22  Martin Baulig  <martin@ximian.com>
21224
21225         * mono-debug.h (MonoDebugMethodJitInfo): Added
21226         `MonoDebugMethodJitInfo *jit'.
21227
21228         * mono-debug.c (mono_debug_read_method): Cache the
21229         MonoDebugMethodJitInfo in `address->jit'.
21230         (mono_debug_free_method_jit_info): New public method.
21231
21232 2005-04-22  Martin Baulig  <martin@ximian.com>
21233
21234         * class.c (mono_class_is_assignable_from): Disallow
21235         type parameter -> interface.
21236
21237 2005-04-21  Dick Porter  <dick@ximian.com>
21238
21239         * threads.c (mono_thread_create): Turn an assertion into an error.
21240
21241 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
21242
21243         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
21244         
21245         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
21246         Fix some gcc 4.0 warnings.
21247
21248 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
21249
21250         * file-io.c: fix alt dir separator char on unix systems
21251         and cleanup (fixes bug #71214).
21252
21253 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
21254
21255         * marshal.c: Use CALLVIRT instead of CALL when dispatching
21256         a call to a remote domain, since the method may be an
21257         interface method in the client domain. This fixes bug #74192.
21258
21259 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21260
21261         * threadpool.c: recv/send are now performed before going back to managed
21262         code to save one transition.
21263
21264 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21265
21266         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
21267
21268         * metadata/threadpool.c: removed hack to workaround the bug above.
21269
21270         Fixes bug #74618.
21271
21272 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
21273
21274         * reflection.c reflection.h: Fix handling of parameter defaults in
21275         dynamic methods. Also fixes handling of parameter attributes.
21276         Fixes #74609.
21277
21278         * mono-debug.c (mono_debug_close_image): Fix warning.
21279
21280 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21281
21282         * socket-io.h: replaced old unused field with new 'blocking'.
21283         * threadpool.c: restore socket blocking state on windows(tm).
21284
21285 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
21286
21287         * icall.c: don't return the codebase in the AssemblyName[] returned by
21288         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
21289         * object-internals.h: Removed FIXME (fields were presents) and fixed
21290         versioncompat declaration.
21291
21292 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21293
21294         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
21295         not closed, so don't cleanup when it happens.
21296
21297 2005-04-13  Chris Toshok  <toshok@ximian.com>
21298
21299         * mono-debug-debugger.h: change prototype for
21300         mono_debugger_lookup_type.
21301
21302         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
21303         this function, although it should probably be named
21304         mono_debugger_init_type.
21305
21306 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21307
21308         * threadpool.c: fix non-AIO case.
21309
21310 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
21311
21312         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
21313         the built-in profiler to measure just JIT compilation times.
21314
21315 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21316
21317         * threadpool.c: the epollfd might be closed by another thread at
21318         any time, so ignore EBADF at treat it as a "we're closing" sign.
21319
21320 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21321
21322         * threadpool.c: release the semaphores with a count equals to the number
21323         of working threads in both IO and regular pools. Fixed typo that messed
21324         up the count of IO pool threads. Don't initialize the pipe handles if
21325         we're using epoll.
21326
21327 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21328
21329         * threadpool.c: some systems don't like a NULL when deleting the socket
21330         from epoll.
21331
21332 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21333
21334         * threadpool.c: fix semaphore allocation.
21335
21336 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21337
21338         * threadpool.c: added epoll() based implementation for asynchronous IO
21339         that is used instead of the default poll() when available.
21340         It can be disabled by setting MONO_DISABLE_AIO.
21341
21342 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21343
21344         * threadpool.c: windows needs 'closesocket' and instead of returning
21345         0 when the stream is closed while in select, it returns -1. Fixes bug
21346         #74573.
21347
21348 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
21349
21350         * class.c (class_compute_field_layout): Fix the regression caused by
21351         the previous try.
21352
21353 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21354
21355         * threadpool.c: separate pool for socket async. IO.
21356         * threadpool.h: mono_max_worker_threads is not a global any more.
21357
21358 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
21359
21360         * class.c (class_compute_field_layout): Fix #74549.
21361
21362 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21363
21364         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
21365         use 2 connected sockets instead.
21366
21367 2005-04-08  Miguel de Icaza  <miguel@novell.com>
21368
21369         * mono-config.c: Add new entry point for mkbundle
21370         mono_config_parse_memory. 
21371
21372 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21373
21374         * threadpool.c: removed another unused function.
21375
21376 2005-04-08  Ankit Jain  <radical@corewars.org>
21377
21378         * reflection.c (get_default_param_value_blobs): Add 'types'
21379         parameter to get the types encoded in the constant table.
21380         (mono_param_get_objects): Use the type from the constant table,
21381         not the type of the parameter, when creating default values.
21382         Handle null default values correctly.
21383
21384 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21385
21386         * file-io.c:
21387         * file-io.h:
21388         * threadpool.c:
21389         * threadpool.h:
21390         * icall.c:
21391         * socket-io.c: removed dead code for async IO.
21392
21393 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21394
21395         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
21396
21397         * threadpool.c: intercept socket async. calls and pass them to a thread
21398         that is polling and dispatching the job items to the threadpool as
21399         socket become ready. Fixes bugs #71217, #71933.
21400
21401         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
21402         between char and short/ushort arrays.
21403
21404         * socket-io.c: remove dead code.
21405
21406 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21407
21408         * locales.c,
21409           icall.c : removed InternalToUpper_Comp() and
21410           InternalToLower_Comp().
21411
21412 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21413
21414         * char-conversions.h : The tables were incorrectly generated. Should
21415           be generated against invariant culture.
21416
21417 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
21418
21419         * object.c (mono_runtime_invoke_array): Fix return value when 
21420         passing pre-created valuetype objects to ctors.
21421
21422         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
21423         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
21424         Fixes #74338.
21425
21426 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
21427
21428         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
21429         only used with --security and hides the wrong corlib version error.
21430
21431 2005-03-30  Joshua Tauberer  <tauberer@for.net>
21432
21433         * class.c: Changed mono_class_name_from_token so that types
21434         outside of a namespace don't have an initial period.  Improved
21435         the g_warning message used in _mono_class_get when loading
21436         fails.
21437         * assembly.c: In mono_assembly_load_reference, when an assembly
21438         can't be found, "No such file or directory" is misleading and
21439         unhelpful because a few paths were checked for the presence of
21440         the assembly.  When that happens (ENOENT), display a nicer
21441         message indicating the directories that were searched.  In all
21442         cases, the warning is made easier to read for non-hackers.
21443
21444 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
21445
21446         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
21447         project/solution.
21448         * appdomain.h|domain.c: Removed inline from functions.
21449         * appdomain.c: Reduced warnings when compiling on windows.
21450         * icall.c: Fixed output_debug declaration to gunichar2*.
21451         * mono-config.c: Reduced warnings when compiling on windows.
21452         * rand.c: Added missing "windows.h". Added missing return value.
21453         * rawbuffer.c: Added missing winsock2.h for windows.
21454         * sysmath.h: Added mono-compiler.h header to allow/ease 
21455         compilation with non-GCC compilers.
21456         * threads.c: Fixed declarations to compile with VS.NET C compiler.
21457         Removed cast warnings.
21458
21459         Adapted from the work of J Lothian (for VC6).
21460
21461 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
21462
21463         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
21464         from default_path.
21465
21466 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
21467
21468         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
21469         the 2.0 profile.
21470
21471 2005-03-27  Raja R Harinath  <harinath@gmail.com>
21472
21473         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
21474         has to be in $(exec_prefix).  $(prefix) is for arch-independent
21475         stuff, and it would probably use $(prefix)/share rather than
21476         $(prefix)/lib.
21477
21478 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21479
21480         * console-io.c: added 2 includes that might be missing.
21481
21482 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
21483
21484         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
21485         profile.
21486
21487         * reflection.c (create_custom_attr): Allocate the params array using
21488         alloca so it gets GC tracking.
21489
21490 2005-03-23  Chris Toshok  <toshok@ximian.com>
21491
21492         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
21493         out some spew.
21494
21495 2005-03-24  Raja R Harinath  <rharinath@novell.com>
21496
21497         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
21498         changes to pick up any changes in prefix, etc.
21499
21500 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21501
21502         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
21503         
21504         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
21505         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
21506
21507 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21508
21509         * class-internals.h object-internals.h class.c reflection.c: Extend the
21510         mono_lookup_dynamic_token () function to return the class of the
21511         token as well. 
21512
21513         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
21514         well. Fixes #73848.
21515
21516 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
21517
21518         * security-manager.c: Skip inheritance checks for intra-corlib
21519         class inheritance and method overrides. This skips a lot of checks
21520         and (anyway) permissions cannot work until corlib is loaded.
21521
21522 2005-03-23  Martin Baulig  <martin@ximian.com>
21523
21524         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
21525         MONO_TYPE_GENERICINST.  
21526
21527 2005-03-23  Martin Baulig  <martin@ximian.com>
21528
21529         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
21530
21531 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21532
21533         * class.c: added locking comments to some functions.
21534         Cache the interface offsets arrays (saves about 20 KB
21535         of runtime memory in a typical app).
21536         Reduce the time overhead in mono_class_setup_supertypes ().
21537
21538 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
21539
21540         * icall.c: speedup and fix leaks in GetMethodsByName and
21541         GetPropertiesByName.
21542
21543 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21544
21545         * reflection.c: some locking fixes.
21546
21547 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21548
21549         * metadata.c: added missing break in case statement.
21550
21551 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
21552
21553         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21554         typedbyref return values. Fixes #73941.
21555
21556 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
21557
21558         * security-manager.c|h: Added demandunmanaged method and 
21559         suppressunmanagedcodesecurity class to MonoSecurityManager.
21560         Renamed aptc class to allowpartiallytrustedcallers.
21561
21562 2005-03-17  Martin Baulig  <martin@ximian.com>
21563
21564         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
21565
21566 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21567
21568         * file-io.c: disabled file async. IO using aio_*. It uses the
21569         threadpool now. Workaround for bug #73718.
21570
21571 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21572
21573         * assembly.h, mono-config.c: added code to deal with bundled configs
21574         for bundled assemblies.
21575
21576 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
21577
21578         * *.c, private.h: cleanup, removing old private.h header file.
21579
21580 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
21581
21582         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
21583         and throw_on_unmappable_char attributes.
21584
21585 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
21586
21587         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
21588         _ProcessName_internal.
21589
21590 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
21591
21592         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
21593         #73631.
21594
21595         * icall.c threads.c threads-types.h: Remove slothash icalls as they
21596         are no longer used.
21597
21598 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
21599
21600         * object.c (compute_class_bitmap): Add support for generics. Fixes
21601         #73527.
21602
21603 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21604
21605         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
21606
21607 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21608
21609         * filewatcher.c: commented out the code for windows watcher, as we don't
21610         use it (we use the managed implementation instead).
21611
21612 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21613
21614         * object-internals.h (MonoThread): Remove 'unused1' field.
21615
21616         * appdomain.c: Bump corlib version.
21617
21618         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
21619
21620         * reflection.c (mono_reflection_create_runtime_class): Remove the
21621         AssemblyBuilder.Save optimization since it causes too many problems.
21622
21623 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
21624
21625         * exception.c|h: Added mono_get_exception_reflection_type_load to
21626         create a ReflectionTypeLoadException object.
21627         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
21628         to return NULL is a InheritanceDemand fails during reflection. Updated
21629         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
21630         ReflectionTypeLoadException if an InheritanceDemand fails during 
21631         reflection. Added icall mapping for GetLinkDemandSecurity.
21632         * security-manager.c|h: Added ves_icall_System_Security_
21633         SecurityManager_GetLinkDemandSecurity internal call to return the
21634         class and methods permissions set for a LinkDemand. Removed unused
21635         fields in MonoSecurityManager.
21636
21637 2005-03-10  Martin Baulig  <martin@ximian.com>
21638
21639         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
21640         it's a generic instance.
21641
21642 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
21643
21644         * reflection.c (mono_get_object_from_blob): Applied patch from
21645         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
21646
21647         * class.c (mono_class_is_assignable_from): Another try at fixing 
21648         #73469 without breaking anything.
21649
21650 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
21651
21652         * class.c: (mono_class_is_assignable_from): Revert the last changes
21653         since they don't work with generics.
21654         
21655         * class.c (mono_class_is_assignable_from): Fix build bustage.
21656
21657         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
21658         the managed IsAssignableFrom method. Fixes #73469.
21659
21660         * reflection.c (mono_reflection_call_is_assignable_from): New helper
21661         function.
21662
21663 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
21664
21665         * object.c (mono_load_remote_field_new): Fix returning uninitialized
21666         memory when the remoting callback does not sets the out arguments.
21667         Fixes #73007.
21668
21669         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
21670         by mistake.
21671
21672         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
21673
21674         * object-internals.h (MonoStackFrame): Sync with managed object layout.
21675
21676         * appdomain.c: Bump corlib version.
21677
21678 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
21679
21680         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
21681         function.
21682
21683         * threads.c (mono_thread_attach): Detect threads which are not started
21684         by the GC pthread wrappers.
21685
21686 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
21687
21688         * icall.c: Added new icall for RNG.
21689         * rand.c|h: Added new icall to open the RNG. This allows to share a 
21690         single handle on Linux to access /dev/urandom and fix #73183.
21691
21692 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
21693
21694         * object.c: setting the new vtable in a transparent proxy object must
21695         not change the GC descriptor.
21696
21697 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21698
21699         * object.c: fixed compilation without GCJ support.
21700         * reflection.c: for runtime-created types ensure klass->has_references
21701         is correct (bug #73215).
21702
21703 2005-03-02  Martin Baulig  <martin@ximian.com>
21704
21705         * class.c (mono_class_is_assignable_from): Make this work if
21706         `oklass' is a generic instance; fixes #72831.
21707
21708 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21709
21710         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
21711         with hasthis set.
21712         
21713         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
21714
21715         * marshal.c: Reorganize native->managed marshalling code to also use
21716         the emit_marshal_... functions.
21717
21718 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21719
21720         * object.c: typed allocs have issues with bitmap sizes > 30,
21721         so check for max_set >= 30.
21722
21723 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21724
21725         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
21726         managed code. Fixes #73012.
21727
21728         * metadata.h (MonoMarshalSpec): Add elem_mult field.
21729
21730         * metadata.c reflection.c: Load/Emit elem_mult as well.
21731         
21732         * metadata.h (MonoMarshalSpec): Add comment.
21733
21734         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
21735
21736         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
21737         num_elem to -1 if not given.
21738
21739         * object-internals.h (MonoReflectionMarshal): Add has_size field.
21740
21741         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
21742         given values.
21743
21744 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
21745
21746         * null-gc.c (mono_gc_free_fixed): Was not compilable.
21747
21748 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
21749
21750         * reflection.c (encode_marshal_blob): Encode param_num field as well.
21751
21752         * object-internals.h (MonoReflectionMarshal): Add param_num field.
21753
21754 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21755
21756         * object.c: generalized the reference bitmap creation
21757         and added hooks for the new GC.
21758         * class-internals.c: removed the gc_bitmap field from MonoClass.
21759
21760 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21761
21762         * domain.c: help the compiler to produce better code
21763         in mono_jit_info_table_find ().
21764
21765 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21766
21767         * object.c: make all allocations look typed.
21768
21769 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21770
21771         * socket-io.c: load Mono.Posix if it's not loaded already
21772         (fixes bug#73033).
21773
21774 2005-02-24  Martin Baulig  <martin@ximian.com>
21775
21776         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
21777         * reflection.c (dup_type): Likewise.
21778
21779 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
21780
21781         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
21782         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
21783
21784 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21785
21786         * domain.c, threads.c, object-internals.h: make the critical thread
21787         local vars use the fast access mode (even when we're compiled in
21788         a lib). Provide accessors to be used by the jit during codegen.
21789
21790 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21791
21792         * appdomain.c: Changed hook functios behavior to include
21793         support for the reflection only assemblies. Some icalls were changed
21794         to support the mentioned assemblies too. Signatures of static methods
21795         try_assembly_resolve and real_load now have an additional parameter:
21796         refonly.
21797
21798         * assembly.c: General changes to mono_assembly_ methods to support
21799         reflection only api. Functions mono_assembly_open, mono_assembly_load,
21800         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
21801         suffix, to support an additional gbool parameter to specify whether
21802         the assembli is reflection only or not. Created some new hook functions 
21803         to add support for reflection only assemblies. Signatures of static 
21804         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
21805         have now an additional parameter: refonly.
21806
21807         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
21808         indicating whether the assembly is reflection only or not.
21809
21810         * exception.c: Add mono_get_exception_invalid_operation.
21811
21812         * icall.c: Throw an InvalidOperationException when trying to invoke
21813         a property/method/event, or trying to set/get the value of a field.
21814         Also add an icall to retrieve the ref_only flag to the
21815         MonoReflectionAssembly.
21816
21817 2005-02-23  Chris Toshok  <toshok@ximian.com>
21818
21819         Part of fix for #72827.
21820         * mono-debug.c (mono_debug_add_method): add lexical block data to
21821         the info we write.  Kind of a hack at the moment - we copy the
21822         lexical block info from the MonoDebugMethodInfo to the
21823         MonoDebugMethodJitInfo here, before writing it.
21824         (mono_debug_read_method): read the lexical block info.
21825
21826         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
21827
21828         * debug-mono-symfile.h: add lexical block support.
21829
21830         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
21831         support.
21832
21833 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21834
21835         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21836
21837         * object.c (mono_runtime_free_method): Call mono_free_method () and
21838         put the TODOs there.
21839
21840         * loader.c (mono_free_method): Free up most memory allocated for 
21841         dynamic methods.
21842
21843 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21844
21845         * reflection.c: properly flag a Type argument to a
21846         named custom attr value (bug #72248).
21847
21848 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21849
21850         * reflection.c: reduce code duplication in named custom
21851         attribute encoding.
21852
21853 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21854
21855         * reflection.c: properly encode custom attrs of type object
21856         (bug #72649).
21857
21858 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21859
21860         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21861
21862 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21863
21864         * socket-io.c: load System.dll if it's not loaded already
21865         (bug #72850 and #70477).
21866
21867 2005-02-21  Martin Baulig  <martin@ximian.com>
21868
21869         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21870         generic instances.
21871
21872 2005-02-21  Martin Baulig  <martin@ximian.com>
21873
21874         * reflection.c (mono_image_build_metadata): We also need to
21875         "fixup" the MethodImpl table after we computed the final method
21876         indices.  Call fixup_methodimpl() to do that.
21877         (fixup_methodimpl): New private method.
21878
21879 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21880
21881         * assembly.c: special case mscorlib.dll (bug#72536),
21882         patch from Carlos Alberto Cortez.
21883
21884 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21885
21886         * threads-types.h threads.c: Fix build bustage.
21887
21888         * threads.c: Use a union for long<->double conversions.
21889
21890         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21891         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21892
21893         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21894         containing the checkpoint call with NOT_TAKEN.
21895         
21896         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21897         checkpoint before pushing the arguments, so they won't have to be
21898         spilled to stack.
21899
21900 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21901
21902         * domain.c, assembly.c, domain-internals.h: make some data
21903         const and relocation-free.
21904
21905 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21906
21907         * object.c, appdomain.c, class-internals.h: introduce the
21908         MonoClassRuntimeInfo structure to hold the info needed to
21909         use a class at runtime. Made mono_class_vtable() lock-free
21910         for all the appdomains.
21911
21912 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21913
21914         * metadata-internals.h, image.c: introduce a per-image mempool to
21915         be used for memory that has the same lifetime as the image.
21916
21917 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21918
21919         * domain.c: In mono_init_internal(), instead of selecting the first
21920         runtime version supported by an executable, get a list of all
21921         supported versions and select the one for which an mscorlib exists
21922         (since even if the runtime supports a given version, it doesn't mean
21923         that the framework for that version is installed).
21924         Modified get_runtimes_from_exe to support this behavior.
21925         In supported_runtimes, added information about additional system
21926         assembly versions.
21927         
21928         * assembly.c: Added support for more than one system assembly version
21929         per runtime version. Updated the assembly list.
21930         In mono_assembly_remap_version, removed the initial version check,
21931         since we don't know to which version we need to compare until we
21932         get the version set on which the assembly is based.
21933         Moved the code for loading corlib into the new method
21934         mono_assembly_load_corlib(), so it can be used by the initialization
21935         code.
21936         
21937         * domain-internals.h: Updated data structures and added declaration
21938         for mono_assembly_load_corlib.
21939
21940 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21941
21942         * reflection.c (resolve_object): Fix the creation of the signature in 
21943         the SignatureHelper case.
21944
21945         * assembly.c (mono_assembly_remap_version): Fix binary search.
21946         
21947 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21948  
21949         * class.c: Added inheritance check when a method is overloaded (from a
21950         virtual method or when implementing an interface) and when a class is
21951         inherited. Added functions to set a failure for a class and to 
21952         retreive the exception from a failure.
21953         * class-internals.h: Added fields to MonoClass to keep the exception
21954         information status for inheritance (or other exceptions) to be thrown
21955         later (i.e. not at load time).
21956         * object.c: Throw the inheritance SecurityException when a type is to 
21957         be created with either class or method inheritance violations.
21958         * reflection.c|h: Fix when getting declsec from a class. Removed 
21959         unrequired code for class. Improved sanity in parameter naming.
21960         * security-manager.c|h: Added functions to check for class and method
21961         inheritance.
21962
21963 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21964
21965         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21966         and has_finalize in dynamic types as well.
21967
21968 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21969
21970         * culture-info-table.h : fixed currency format for en-GB (and so on).
21971
21972 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21973
21974         * gc.c: ensure the GC handles never have 0 as a value.
21975
21976 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21977
21978         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21979         a pointer to a struct to unmanaged code. Fixes #72625.
21980
21981 2005-02-16  Martin Baulig  <martin@ximian.com>
21982
21983         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21984
21985 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21986
21987         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21988
21989 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21990
21991         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21992
21993         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21994         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21995         etc. Fixes #71471.
21996
21997         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21998
21999         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
22000
22001 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
22002
22003         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
22004         changes to make the current context a field in MonoThread.
22005
22006 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22007
22008         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
22009         the last change.
22010         
22011         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
22012         extracted from mono_marshal_get_native_wrapper.
22013
22014         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
22015         to create wrappers around native functions.
22016
22017         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
22018         delegates for arbitrary function pointers. Fixes #71472.
22019
22020 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22021
22022         * threads.c: cleaned up the code a little.
22023
22024 2005-02-15  Martin Baulig  <martin@ximian.com>
22025
22026         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
22027         the data table.
22028
22029         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
22030         allocate larger chunks if needed.
22031
22032 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22033
22034         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
22035         in by mistake.
22036
22037 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
22038
22039         * domain.c: keep the domains in an array and ensure the domain ids
22040         are kept small, so they can be used as indexes to domain-specific data
22041         with a small memory overhead.
22042
22043 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22044
22045         * icall.c: Handle byref types in Type icalls. Fixes #72544.
22046
22047 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
22048
22049         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
22050
22051 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
22052
22053         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
22054
22055         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
22056         values.
22057
22058         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
22059         
22060 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
22061
22062         * domain-internals.h: add the hashtable here.
22063
22064         * class-internals.h: Remove `info' from MonoMethod
22065
22066         * domain.c: Add a new hashtable, jit_trampoline_hash
22067
22068 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22069
22070         * object.c: don't set the value of static fields
22071         (fixes bug#72494).
22072
22073 2005-02-11  Martin Baulig  <martin@ximian.com>
22074
22075         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
22076         (mono_debug_add_method): Silently ignore the method if it's too big.
22077         (mono_debug_add_type): Likewise.
22078
22079 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
22080
22081         * threads.c, appdomain.c: remove #ifdefs from the code.
22082
22083 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
22084
22085         * metadata-internals.h: Added flags to MonoAssembly to cache the most
22086         common security informations. This allows us to stay in unmanaged code
22087         when doing LinkDemand and it's special cases (except for the first 
22088         time for initialization). The flags a very much used with --security.
22089         * reflection.c|h: Added code to get declarative security attributes 
22090         for LinkDemand and InheritanceDemand. This required to refactor the
22091         existing code for Demand.
22092         * security-manager.c|h: Added new method fields for the special cases
22093         of LinkDemand.
22094
22095 2005-02-10  Martin Baulig  <martin@ximian.com>
22096
22097         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
22098         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
22099
22100 2005-02-10  Martin Baulig  <martin@ximian.com>
22101
22102         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
22103         debugging code; this is almost a complete rewrite.
22104
22105         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
22106
22107 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22108
22109         * domain.c, object.h: expose mono_string_equal () and 
22110         mono_string_hash ().
22111         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
22112         it's implemented in managed code.
22113
22114 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22115
22116         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
22117         lo leak objects between appdomains.
22118
22119 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22120
22121         * assembly.c: old compilers compilation fix from 
22122         robertj@gmx.net (Robert Jordan).
22123
22124 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
22125
22126         * class-internals.h: Little reminder for the future.
22127
22128         * debug-helpers.c: Fix up wrapper_type_names
22129
22130 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22131
22132         * image.c, metadata-internals.h: when loading an image from a file,
22133         mmap all of it and use the same codepaths as when using a
22134         in-memory image: the code is simpler and we use less memory
22135         (both writable and readonly).
22136
22137 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
22138
22139         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
22140         API to alloc runtime data structures that need to be tracked by the
22141         GC and contain pointers.
22142         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
22143         make the code more readable and eventually use a different GC.
22144
22145 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
22146
22147         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
22148         for out arguments.
22149         
22150 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
22151
22152         * object.c: In release_type_locks(), don't release the cctor lock
22153         if it has already been released. This fixes a crash in the
22154         thread5 test.
22155
22156 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22157
22158         * gc.c, marshal.c, icall.c: register a delegate for finalization
22159         only when the native function pointer has been allocated for it.
22160
22161 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22162
22163         * object.c: cleaned up some code, allocate objects that are
22164         pointer free with the atomic malloc variant. Allocate memory
22165         for static data from the mempool if it's pointer-free.
22166         Allocate the bounds array at the end of the array data, when needed.
22167         * object-internals.h, object.h: move a private function in a private
22168         header.
22169         * class.c: handle missing case in tracking references in fields.
22170
22171 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
22172
22173         * class.c, class-internals.h: keep track if a type has
22174         reference fields in either the instance or static fields.
22175
22176 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
22177
22178         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
22179         and renamed to MonoRuntimeInfo. Added fields to store the expected
22180         framework assembly version. Changed mono_get_framework_version and
22181         mono_get_runtime_version for a single mono_get_runtime_info method.
22182         
22183         * assembly.c: Added method to remap system assembly versions to the
22184         current executing runtime version. Removed old mapping code.
22185         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
22186         
22187         * icall.c, reflection.c: Track api changes.
22188
22189 2005-02-06  Miguel de Icaza  <miguel@novell.com>
22190
22191         * loader.c (method_from_memberref): Improve error reporting,
22192         produce the class name instead of the typeref/typedef index. 
22193
22194 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
22195
22196         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
22197
22198 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
22199
22200         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
22201         stdcall and charset name mangling.  Reorganize the code and add
22202         some tracing stuff.
22203
22204 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
22205
22206         * monodiet.c: More iters!
22207
22208         * marshal.c: Iter usage.
22209
22210         * icall.c: Iter usage.
22211
22212         * object.c: Use iters.
22213
22214         * debug-helpers.c: More iters
22215
22216 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
22217
22218         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
22219         under win32.
22220
22221 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
22222
22223         * mono-debug-debugger.c: use iters
22224
22225         * class.c, class-internals.h: mono_class_setup_events is static
22226         now
22227
22228         * All callers: use iters
22229
22230 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
22231
22232         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
22233         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
22234
22235 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
22236
22237         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
22238
22239         * marshal.h: Add prototypes for ldfld/stfld_remote.
22240
22241         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
22242         this is called during startup.
22243         
22244 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
22245
22246         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
22247         MonoThreadsSync struct private in monitor.c. Changed the way
22248         MonoThreadsSync is allocated so it's faster and there is no
22249         need to keep track of it with a finalizer and it uses less memory.
22250         This also finally allows us to allocate mono objects as ptrfree when
22251         there are no reference fields.
22252
22253 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
22254
22255         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
22256         disappearing link to the GC interface and use them to simplify
22257         the gchandles code.
22258
22259 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
22260
22261         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
22262         stfld_remote which call mono_load/store_field_new. This allows methods
22263         calling ldfld/stfld wrappers to be AOTed.
22264
22265         * console-io.c: Include sys/filio.h under solaris.
22266         
22267         * console-io.c: Include curses.h if needed correctly.
22268
22269 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
22270         
22271         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
22272         method->klass as well.
22273
22274         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
22275
22276         * class.c (mono_class_init): Switch on lazy initialization of 
22277         methods.
22278
22279         * class.c (mono_class_get_finalizer): Handle the case when the 
22280         finalizer is inherited.
22281
22282 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22283
22284         * console-io.c: <curses.h> is needed by term.h on solaris.
22285
22286 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
22287
22288         * icall.c, class-internals.h, monodiet.c, class.c: Remove
22289         mono_class_setup_properties where possible. Remove this ftn from
22290         the header file, and make it static.
22291
22292 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
22293
22294         * loader.c: Add missing setup_... call.
22295
22296         * class.c: Add missing setup_... calls.
22297
22298         * class.c (mono_class_init): Switch on lazy initialization of 
22299         the generic vtable.
22300         
22301         * class.c (mono_class_init): Fix generics broken by the recent changes.
22302
22303         * monodiet.c (handle_type): Add missing setup_... calls.
22304
22305         * class.c: Back out garbage in previous patch.
22306         
22307         * class.c: Add missing setup_... calls.
22308
22309         * class.c (mono_class_get_method_from_name_flags): Avoid calling
22310         mono_class_setup_methods () if possible.
22311
22312         * class-internals.h (MonoClass): Add 'has_cctor' flag.
22313
22314         * class-internals.h (MonoCachedClassInfo): New structure.
22315
22316         * class.c: Initialize properties and events fields of MonoClass lazily.
22317
22318         * class.c: Add infrastructure for lazily initializing the methods and
22319         vtable fields of MonoClass. Not yet used.
22320
22321         * class.c (mono_class_get_finalizer): New helper function.
22322
22323         * class.c: Add infrastructure for loading some class related data from
22324         an AOT file.
22325
22326         * object.c: Add infrastructure for initializing the vtable from data
22327         in the AOT file.
22328
22329         * gc.c (run_finalize): Use mono_class_get_finalizer ().
22330
22331         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
22332         appropriate initialization function before accessing parts of the
22333         MonoClass structure.
22334
22335         * marshal.c: Fix warnings.
22336         
22337         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
22338
22339         * mono-debug-debugger.c (get_exception_message): Use 
22340         mono_class_get_method_from_name_flags ().
22341
22342 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
22343
22344         * reflection.c, appdomain.c: Replace a few manual searches that
22345         Zoltan missed. (Paolo approved this part of my initial patch).
22346
22347 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
22348
22349         * profiler.c: disable recording statistical events at report time.
22350
22351 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22352
22353         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
22354         to byteswap arrays of enum values, too (bug #72080).
22355
22356 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
22357
22358         * appdomain.c (set_domain_search_path): Allow this to be called if
22359         domain->setup is not yet set.
22360
22361         * loader.c (mono_method_get_index): New helper function.
22362
22363         * loader.c reflection.c: Use mono_method_get_index ().
22364
22365         * class.c (mono_class_get_method_from_name_flags): New helper method.
22366
22367         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
22368         this.
22369
22370         * class.c (mono_class_get_cctor): New helper method.
22371
22372         * string-icalls.c object.c class.c marshal.c reflection.c: Use
22373         mono_class_get_method () to look up methods.
22374
22375 2005-02-01  Miguel de Icaza  <miguel@novell.com>
22376
22377         * console-io.c: Fix the build, this should work on Windows.
22378
22379 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
22380
22381         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
22382         be set to null to keep things valid
22383
22384 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22385
22386         * icall.c: added Console 2.0 icalls.
22387         * Makefile.am: added console-io.[ch]
22388         * console-io.[ch]: internal calls for Console 2.0 API.
22389
22390 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22391
22392         * class.c: make sure we consider all the interfaces
22393         when calculating max_interface_id (bug found by
22394         Jeroen Frijters running ikvm).
22395
22396 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
22397
22398         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
22399         valuetype fields to null.
22400
22401         * object.c (set_value): Ditto. Fixes #71669.    
22402
22403 2005-01-31  Martin Baulig  <martin@ximian.com>
22404
22405         * metadata.c (mono_metadata_has_generic_params): New public
22406         function; checks whether something is a generic method.
22407
22408 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
22409
22410         * appdomain.c: fix infinite recursion when adding assemblies.
22411
22412 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
22413
22414         * object.c: Fix small typo to return all items for Environment.
22415         GetCommandLineArgs.
22416
22417 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22418
22419         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
22420         reflection.c: more domain and assembly-unload related fixes
22421         and memory leaks plugs.
22422
22423 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
22424
22425         * 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.
22426
22427 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
22428
22429         * loader.c (mono_method_signature): Make this method lazy
22430         (mono_get_method_from_token): Don't computate the signature here.
22431
22432         Doing this saves quite a bit of memory. I got 90 kb on starting up
22433         monodoc. It should also save some disk reads on startup.
22434
22435         * *: MonoMethod->signature might be NULL now. You *MUST* use
22436         mono_method_signature.
22437
22438 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
22439
22440         * object.c (mono_runtime_get_main_args): Return an array from the
22441         current domain here. Fixes #71938.
22442
22443 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
22444
22445         * monitor.c: formatting changes to comply with the
22446         mono coding style and remove #ifdefs from the code.
22447
22448 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22449
22450         * metadata.c, private.h: remove some unneeded data
22451         and use a more compact representation for table schemas.
22452
22453 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
22454
22455         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
22456         to get a better distribution in hash tables.
22457         * *.c: use mono_aligned_addr_hash() where appropriate.
22458         * assembly.c: make var static.
22459
22460 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
22461
22462         * domain-internals.h: Put MonoJitInfo on a diet.
22463
22464         * domain.c: Fix a warning.
22465
22466 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22467
22468         * gc.c: rework the gc handles code to reuse handles
22469         when freed.
22470
22471 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22472
22473         * domain.c: fixed long standing bug in mono_string_equal() which
22474         was brought to light with the ldstr changes.
22475
22476 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
22477
22478         * reflection.c: Remove warning by adding missing include for marshal.h
22479
22480 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22481
22482         * domain.c, object.c: change the ldstr_table to hold
22483         MonoString* as keys: makes the runtime isinterned lookup
22484         faster and simplifies memory management.
22485
22486 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
22487  
22488         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
22489         possible to add imperative security checks before calling the icall.
22490         * reflection.c: Return security attributes on the original MonoMethod
22491         (and not the wrapped one). This fix permissions on icalls.
22492
22493 2005-01-25  Dick Porter  <dick@ximian.com>
22494
22495         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
22496         the check for mktime() support actually test the mktime() return
22497         value.  "Fixes" bug 71682, though the output is still different to
22498         MS.
22499
22500 2005-01-25  Martin Baulig  <martin@ximian.com>
22501
22502         * class.c (mono_class_is_assignable_from): Make this work for
22503         generic instances.
22504
22505 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
22506
22507         * marshal.c (mono_string_utf8_to_builder)
22508         (mono_string_builder_to_utf16): We might not have ownership of the
22509         string. In thise case, we need to create a new buffer.
22510
22511         * object-internals.h (mono_stringbuilder_capacity): sb->str might
22512         be null, in which case, use the default capacity.
22513
22514 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22515
22516         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
22517         GC events to the profiler.
22518
22519 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22520
22521         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
22522         if you don't want the GC to run.
22523
22524 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
22525
22526         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
22527         start providing a GC API and keeping different implementations in
22528         their own file.
22529         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
22530
22531 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
22532
22533         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
22534         mmap rather than allocating a huge buffer.
22535         (mono_debug_close_mono_symbol_file): Free the buffer allocated
22536         above.
22537
22538 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
22539
22540         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
22541         and CheckExecutionRights.
22542         * reflection.c|h: Keep the index of the declarative security to be 
22543         used, instead of the pointer, when AOT compiler is used. Also add 
22544         class initialization when requesting demands.
22545         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
22546         CheckExecutionRights. Both properties are now FALSE by default, and
22547         unmodifiable, unless the --security option is used.
22548
22549 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22550
22551         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
22552         reflection.c: properly refcount images and assemblies, many leaks fixed.
22553
22554 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22555
22556         * threadpool.c: increase the timeout for threads in the thread pool to
22557         10s.  Fixes bug #67159.
22558
22559 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
22560
22561         * class-internals.h: Sun's compiler insists on explicit
22562         signed on bit fields to handle then correctly.
22563
22564 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
22565
22566         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
22567         Make the size of the array fit only the number of invalid path
22568         chars that we have.
22569
22570         * class.c (_mono_class_get): Improve the error reporting when a
22571         class referenced is not found, to assist debugging. 
22572
22573 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
22574
22575         * threads.c: fix off-by-one error.
22576         * domain.c: free data allocated in the domain.
22577
22578 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22579
22580         * reflection.c (mono_method_body_get_object): Fill out exception info
22581         as well.
22582
22583         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
22584         structure.
22585         
22586 2005-01-19  Martin Baulig  <martin@ximian.com>
22587
22588         * loader.c (mono_get_method_constrained): Make this work again.
22589
22590 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22591
22592         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
22593         guint16 to match the managed side.
22594
22595         * reflection.c (mono_reflection_body_get_object): Fill out local
22596         variables array.
22597
22598         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
22599         as well.
22600
22601         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
22602         'local_var_sig_token'.
22603
22604 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
22605
22606         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
22607         System.Drawing.
22608
22609         * reflection.c (mono_method_body_get_object): Handle abstract and
22610         runtime methods.
22611
22612 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
22613
22614         * marshal.c, loader.c, class-internals.h, reflection.c:
22615         store the emthod data for a wrapper in an array instead of a list.
22616
22617 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
22618
22619         * marshal.c: change the code to allocate memory more
22620         conservatively for method wrappers.
22621
22622 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
22623
22624         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
22625         fields from MonoClass to the marshal info structure where they belong.
22626
22627 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22628
22629         * class.c, object.c, class-internals.h, marshal.c: rearrange
22630         some fields and tweak some types to lower memory usage.
22631
22632 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
22633
22634         * threads.c (signal_thread_state_change): Handle the case when the
22635         target thread is the current thread.
22636
22637         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
22638
22639         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
22640         emit_ptr_to_object_conv. 
22641
22642         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
22643         marshalling. Fixes #71352.
22644
22645 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22646
22647         * metadata.h, blob.h: move table enum to blob.h so it can be included
22648         in any header.
22649         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
22650         cut the size of MonoImage/MonoDynamicImage.
22651
22652 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
22653
22654         * profiler.c (mono_profiler_install_simple): Fix default arguments.
22655
22656 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
22657
22658         * reflection.c, reflection.h, icall.c: add a function to check
22659         if an attribute type is defined for a metadata object.
22660
22661 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
22662
22663         * object-internals.h: Added some needed fields from StringBuilder class.
22664         * marshal.c: Set the maxCapacity when creating a StringBuilder.
22665
22666 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
22667
22668         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
22669         threads before shutting down the runtime.
22670
22671         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
22672
22673 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22674
22675         * object-internal.h, threads.c: implement stacksize and 
22676         parameterized thread start functionality (requires
22677         matching corlib). Marked broken code for later removal.
22678
22679 2005-01-12  Martin Baulig  <martin@ximian.com>
22680
22681         * class-internals.h (MonoGenericClass): Moved the `initialized'
22682         flag to MonoDynamicGenericClass, removed `init_pending'.
22683         (MonoGenericInst): Added `is_reference' flag.
22684
22685 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
22686
22687         * reflection.c (mono_image_create_pefile): Only set the pe_offset
22688         inside the MSDOS header. Fixes #71201.
22689
22690         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
22691         gc thread.
22692         (mono_domain_finalize): Ditto.
22693
22694 2005-01-12  Martin Baulig  <martin@ximian.com>
22695
22696         * class.c (mono_get_shared_generic_class): Use the cache for
22697         non-dynamic generic classes.
22698
22699         * class-internals.h (mono_class_create_generic_2): Removed
22700         function prototype, this function is now static inside class.c.
22701
22702         * class.c (mono_class_create_generic_2): Made this static, only
22703         call it from mono_class_init() and mono_class_setup_parent().
22704         (collect_implemented_interfaces_aux): Call mono_class_init() on
22705         the interfaces we collect.
22706         (mono_class_setup_vtable): Call mono_class_init (class->parent).
22707
22708 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22709
22710         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
22711         it a real thread handle.
22712
22713         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
22714         MonoJitExceptionInfo, since each catch clause needs its own variable.
22715         
22716 2005-01-11  Dick Porter  <dick@ximian.com>
22717
22718         * image.c (mono_pe_file_open): New variant on mono_image_open()
22719         that does not set up the CLI metadata; used for FileVersionInfo so
22720         it can get the data for windows binaries too.
22721         
22722         * process.c (process_read_string_block): Don't read off the end of
22723         the StringTable block.
22724
22725         These both fix bug 70766.
22726
22727 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
22728
22729         * gc.c: set some fields to NULL at GC cleanup time.
22730         * threads.c: if we quit the main thread, call exit ().
22731
22732 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22733
22734         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
22735
22736 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
22737
22738         * threads.h, threads.c, object.c: added accessor and settor for
22739         main_thread. Handle it specially when exiting from it: wait
22740         for other foreground threads to exit.
22741
22742 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
22743
22744         * process.c, verify.c: remove some bloat.
22745
22746 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
22747
22748         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
22749         the calling convention to cdecl under win32.
22750
22751 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
22752
22753         * object.c (mono_object_get_size): New function to get the size of
22754         an object instance.
22755
22756         * profiler.c (simple_allocation): Use above.
22757
22758 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
22759
22760         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
22761         ves_icall_System_AppDomain_getRootDomain (as it's not required to
22762         get an appdomain by it's id and we can't assume the root's id is 0).
22763         * domain-internals.h: Change the function prototype to match.
22764         * icall.c: Change the icall table for AppDomain.
22765
22766 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
22767
22768         * locales.c (string_invariant_compare_char): Only compute
22769         GUnicodeTypes in the case where we need them.  Test for ordinality
22770         first and return if so.
22771
22772         From the commit:
22773
22774                 /*
22775                  * FIXME: here we must use the information from c1type and c2type
22776                  * to find out the proper collation, even on the InvariantCulture, the
22777                  * sorting is not done by computing the unicode values, but their
22778                  * actual sort order.
22779                  */
22780
22781 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22782
22783         * loader.c: for P/Invoke methods, allow the "Internal" shared
22784         library name to refer to the calling process symbol namespace.
22785
22786 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
22787
22788         * Makefile.am: Add the security manager to the build.
22789         * security-manager.c|h: New. Initialization of the security manager.
22790
22791 2005-01-07  Dick Porter  <dick@ximian.com>
22792
22793         * threads.c: 
22794         * monitor.c: Update thread state during Monitor and WaitHandle
22795         waits.  Fixes bug 71031.
22796
22797 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
22798
22799         * reflection.c (property_encode_signature): Correctly handle when the
22800         property has no methods.
22801
22802 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
22803
22804         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
22805         
22806         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
22807         fields from mb, not rmb. Fixes #71017.
22808
22809         * marshal.c (emit_ptr_to_str_conv): Add support for 
22810         ByValTStr -> string conversion. Fixes #71015.
22811
22812         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
22813
22814         * mempool.c (mono_mempool_contains_addr): New helper function.
22815
22816 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22817
22818         * metadata.c (mono_metadata_compute_size): Fix size calculation of
22819         HasSematics encoded fields.
22820         
22821         * metadata.c (mono_type_to_unmanaged): Improve error message for 
22822         invalid string marshalling.
22823
22824         * metadata.c: Fix warnings.
22825         
22826 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22827
22828         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
22829         profiler support.
22830
22831 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22832
22833         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22834         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22835         tests.
22836
22837 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22838
22839         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22840         so methods containing these can be AOTed.
22841
22842 2005-01-03  Martin Baulig  <martin@ximian.com>
22843
22844         * loader.c (find_method): Removed the hack for generic instances.
22845         (method_from_memberref): If our parent is a generic instance, pass
22846         its generic type definition to find_method() and then inflate the
22847         method.
22848         (mono_get_method_constrained): Pass the generic type definition to
22849         find_method() and inflate the method later.
22850
22851         * class-internals.h (MonoStats): Added `generic_class_count'.
22852
22853         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22854         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22855
22856         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22857         generic type definitions.
22858
22859 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22860
22861         * loader.c icall.c: Fix warnings.
22862
22863 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22864
22865         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22866         blittable types. Fixes #70864.
22867
22868 2004-12-29  Martin Baulig  <martin@ximian.com>
22869
22870         * icall.c
22871         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22872
22873         * reflection.c (mono_method_get_object): Create a
22874         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22875         call mono_get_inflated_method().
22876
22877         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22878
22879 2004-12-27  Martin Baulig  <martin@ximian.com>
22880
22881         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22882         (MonoMethodInflated): Added `inflated' field.
22883
22884         * class.c (mono_class_inflate_generic_method): Don't really
22885         inflate the method here; just set the `is_inflated' flag in the
22886         MonoMethod.
22887         (mono_class_get_inflated_method): Actually inflate the method here
22888         if it's not already inflated; we use the MonoMethodInflated's new
22889         `inflated' field as a cache.
22890
22891 2004-12-26  Martin Baulig  <martin@ximian.com>
22892
22893         * class.c
22894         (inflate_generic_class): Moved some code out of inflate_generic_type().
22895         (mono_class_inflate_generic_method): If we're already inflated,
22896         inflate the context and use the declaring method; ie. make sure
22897         the declaring method of an inflated method is always the generic
22898         method definition.
22899         (mono_class_create_from_typedef): Create
22900         `class->generic_container->context->gclass'.
22901
22902 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22903
22904         * metadata-internals.h, marshal.c, reflection.c: More
22905         MonoGHashTable->GHashTable.
22906
22907         * domain-internals.h, class.c: Change MonoGHashTable's into
22908         GHashTables for some cases where no gc stuff is used
22909
22910         All users: update apis
22911
22912 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22913
22914         * metadata.c (builtin_types): Make this `const'. Makes this get
22915         put into the shareable section.
22916         (mono_metadata_init): Casts to make gcc happy.
22917
22918 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22919
22920         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22921
22922 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22923
22924         * icall.c: Added an internal call to retrieve the position and length
22925         of assembly-level declarative security attributes (RequestMinimum, 
22926         RequestOptional and RequestRefuse). This is used by the Assembly class
22927         to re-create the corresponding permission sets.
22928
22929 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22930
22931         * marshal.c: fix the stelemref wrapper to be type correct
22932         (and faster).
22933
22934 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22935
22936         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22937         to do key & 0x7fffffff. Hashtable already does this. It just
22938         results in longer code.
22939
22940 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22941
22942         * appdomain.c: Bump corlib version.
22943         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22944         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22945         * reflection.c|h: Add functions to get declarative security infos
22946         (blob position and length) for assemblies, classes and methods.
22947
22948 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22949
22950         * reflection.c: sort the constant table (bug #70693).
22951
22952 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22953
22954         * object-internals.h, threads.c, domain.c: add accessors for
22955         the MonoThread and MonoDomain tls keys.
22956
22957 2004-12-18  Martin Baulig  <martin@ximian.com>
22958
22959         * class.c (inflate_generic_type): If we're inflating a generic
22960         instance, set `ngclass->context->container = context->container';
22961         ie. the container we inflated into.
22962
22963         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22964         inflate_generic_type() changes.
22965
22966 2004-12-17  Martin Baulig  <martin@ximian.com>
22967
22968         * class-internals.h
22969         (MonoGenericClass): Replaced `MonoType *generic_type' with
22970         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22971         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22972         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22973
22974 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22975
22976         * exception.c (mono_exception_from_token): New helper function.
22977
22978 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22979
22980         * assembly.c (mono_assembly_load_with_partial_name): Call 
22981         mono_assembly_loaded before invoking the preload hooks. Fixes
22982         #70564.
22983
22984         * object-internals.h (MonoThread): Change culture_info and 
22985         ui_culture_info into an array.
22986
22987         * threads.c: Cache culture info objects from more than one appdomain.
22988
22989         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22990         current UI culture.
22991
22992 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22993
22994         * threads.h threads.c appdomain.c: Clear the culture_info field of
22995         all threads during unloading if they point to an object in the dying
22996         appdomain.
22997
22998 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22999
23000         * culture-info.h (TextInfoEntry): New struct
23001         * object-internals.h: sync with managed
23002         * locales.c: fill the `text_info_data' field
23003         * culture-info-tables.h: update
23004
23005 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
23006
23007         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
23008         collector.
23009
23010 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
23011
23012         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
23013         (ves_icall_ModuleBuilder_getMethodToken): Ditto
23014
23015 2004-12-12  Martin Baulig  <martin@ximian.com>
23016
23017         * mono-debug-debugger.c (write_type): If we're an enum and the
23018         builtin types have already been initialized, call mono_class_init().
23019
23020 2004-12-11  Martin Baulig  <martin@ximian.com>
23021
23022         * metadata.c (mono_metadata_load_generic_params): Added
23023         `MonoGenericContainer *parent_container' argument; automatically
23024         compute `container->is_method'; pass the correct owner to
23025         get_constraints().      
23026
23027         * reflection.c (compare_genericparam): Sort the GenericParam table
23028         according to increasing owners. 
23029
23030 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
23031
23032         * profiler.c: allow disabling the default profiler.
23033
23034 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
23035
23036         * decimal.c, icall.c: allow disabling System.Decimal support.
23037
23038 2004-12-09  Marek Safar <marek.safar@seznam.cz>
23039
23040         * reflection.c: Add support for null attribute arguments.
23041
23042 2004-12-09  Martin Baulig  <martin@ximian.com>
23043
23044         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
23045         names to get rid of compiler warnings.
23046
23047 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23048
23049         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
23050         mono_marshal_load_type_info (). Fixes #69625.
23051         (mono_marshal_get_ptr_to_struct): Likewise.
23052
23053 2004-12-08  Martin Baulig  <martin@ximian.com>
23054
23055         * mono-debug.h: Bumped version number to 47.
23056
23057         * mono-debug-debugger.c
23058         (mono_debugger_event_handler, mono_debugger_event): Take two
23059         guint64 arguments insteed of a gpointer and a guint32.  
23060
23061 2004-12-08  Martin Baulig  <martin@ximian.com>
23062
23063         * debug-mono-symfile.h
23064         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
23065         `address' to `native_offset'.
23066
23067 2004-12-08  Martin Baulig  <martin@ximian.com>
23068
23069         * class.c (mono_class_create_from_typespec): Only inflate if we
23070         either have `context->gclass' or `context->gmethod'.
23071
23072 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23073
23074         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
23075
23076         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
23077
23078         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
23079
23080         * reflection.c (mono_assembly_get_object): Remove the workaround put
23081         in for the release.
23082         
23083         * appdomain.c: Use the corlib_internal field from MonoAssembly.
23084
23085         * appdomain.c: Bump corlib version.
23086
23087         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
23088         be visible in other appdomains.
23089
23090 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
23091
23092         * threads.c: Interlocked inc and dec for longs were messed up,
23093         use a KISS based impl for this. Fixes 70234
23094
23095 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
23096
23097         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
23098
23099 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
23100
23101         * icall.c: fix to follow policy not to allow struct
23102         arguments in icalls.
23103
23104 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23105
23106         * process.c: make the patch that handles spaces in file paths work
23107         on mono/windows too.
23108
23109 2004-12-06  Martin Baulig  <martin@ximian.com>
23110
23111         * class.c (mono_class_create_generic): Call
23112         mono_class_setup_supertypes() if we're dynamic.
23113         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
23114
23115 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
23116
23117         * object-internals.h: Add new fields to MonoThread.
23118
23119         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23120
23121         * icall.c threads-types.h threads.c: Add new icalls.
23122
23123         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
23124
23125         * object-internals.h (MonoReflectionAssembly): Sync object layout with
23126         managed side.
23127
23128         * appdomain.c: Bump corlib version.
23129
23130         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
23131         internal assemblies. Fixes #69181.
23132
23133 2004-12-05  Martin Baulig  <martin@ximian.com>
23134
23135         * class.c (mono_class_inflate_generic_signature): Make this a
23136         no-op if `context' is NULL or we don't have any type parameters;
23137         also copy `sentinelpos'.        
23138
23139 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
23140
23141         * image.c: Add unbox_wrapper_cache.
23142
23143         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
23144
23145         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
23146         function generator.
23147         
23148         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
23149         Fixes #70173.
23150
23151         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
23152         
23153 2004-12-04  Martin Baulig  <martin@ximian.com>
23154
23155         * loader.c (mono_method_get_signature_full): New public function;
23156         like mono_method_get_signature(), but with an additional
23157         `MonoGenericContext *' argument.
23158
23159         * class.c (mono_class_inflate_generic_signature): Formerly known
23160         as inflate_generic_signature(); make this public.
23161
23162 2004-12-04  Martin Baulig  <martin@ximian.com>
23163
23164         * metadata.c
23165         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
23166         instead of a `MonoGenericContainer *'.  
23167         (mono_metadata_parse_array_full): Likewise.
23168         (mono_metadata_parse_signature_full): Likewise.
23169         (mono_metadata_parse_method_signature_full): Likewise.
23170         (mono_metadata_parse_generic_inst): Likewise.
23171         (mono_metadata_parse_generic_param): Likewise.
23172         (mono_metadata_parse_mh_full): Likewise.
23173         (mono_type_create_from_typespec_full): Likewise.
23174
23175 2004-12-03  Martin Baulig  <martin@ximian.com>
23176
23177         * class-internals.h (MonoGenericContainer): Replaced the
23178         `MonoGenericContext * pointer with a `MonoGenericContext'
23179         structure and made it the first element.
23180
23181 2004-12-03  Martin Baulig  <martin@ximian.com>
23182
23183         * class.c
23184         (inflate_generic_type): Set the `context->container' when creating
23185         a new MonoGenericContext.
23186         (mono_class_inflate_generic_method): Likewise.
23187         (mono_class_create_from_typespec): Just use `context->container'
23188         to get the container.
23189
23190         * loader.c (method_from_methodspec): Set `context->parent' from
23191         `context->container' - and if that's a method container, use its
23192         parent.  Also set the `context->container' when creating a new
23193         MonoGenericContext.
23194         (mono_get_method_from_token): Use just `context->container' to get
23195         the container.
23196
23197         * metadata.c (do_mono_metadata_parse_generic_class): Also set
23198         `gclass->context->container'.
23199
23200         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
23201         the `context->container' when creating a new MonoGenericContext.
23202
23203 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
23204
23205         * reflection.c (compare_genericparam): Sort params with identical
23206         owner by their number. Fixes gen-111 on sparc.
23207
23208 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
23209
23210         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
23211         around the domain changes.
23212
23213         * appdomain.c (mono_domain_unload): Handle the case when the thread
23214         calling Unload is itself being aborted during unloading. Fixes #70022.
23215
23216         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
23217
23218         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
23219         checkpoint_func as an icall so it gets a wrapper.
23220         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
23221         in the cross-appdomain wrappers too.
23222
23223         * threads.c (mono_thread_has_appdomain_ref): Make this public.
23224
23225         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
23226
23227         * reflection.c: Fix some memory leaks.
23228         
23229 2004-12-02  Martin Baulig  <martin@ximian.com>
23230
23231         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
23232
23233         * metadata.c (generic_class_cache): New static hashtable.
23234         (mono_metadata_lookup_generic_class): New public method.
23235
23236 2004-12-02  Martin Baulig  <martin@ximian.com>
23237
23238         * class.c (mono_class_create_from_typedef): Call
23239         mono_class_setup_parent() and mono_class_create_mono_type() before
23240         parsing the interfaces.
23241
23242 2004-12-02  Martin Baulig  <martin@ximian.com>
23243
23244         * metadata.c (generic_inst_cache): New static hashtable.
23245         (mono_metadata_lookup_generic_inst): New public function.
23246         (mono_metadata_inflate_generic_inst): New public function.
23247         (mono_metadata_parse_generic_inst): New public function.
23248         (do_mono_metadata_parse_generic_class): Use the new
23249         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
23250         since this'll also use the cache.
23251
23252         * reflection.c (mono_reflection_bind_generic_method_parameters):
23253         Use mono_metadata_lookup_generic_inst() to use the new cache.
23254
23255         * class.c (inflate_mono_type): Use
23256         mono_metadata_inflate_generic_inst() to inflate a generic
23257         instance; this'll also use the new cache.
23258
23259         * loader.c (method_from_methodspec): Use
23260         mono_metadata_parse_generic_inst() and
23261         mono_metadata_inflate_generic_inst() rather than parsing it
23262         manually, so we can use the new cache.
23263
23264 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
23265
23266         * threads.c (wait_for_tids): Do not incorrectly free threads when 
23267         the wait times out.
23268
23269 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
23270
23271         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
23272         iter->args based on whether parameters are passed in registers (i.e.
23273         MONO_ARCH_REGPARMS is defined)
23274
23275 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
23276
23277         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
23278         the exception message. Fixes #70070.
23279         (method_from_methodspec): Fix warnings.
23280
23281 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23282
23283         * process.c: (complete_path) return the path quoted
23284
23285 2004-12-01  Martin Baulig  <martin@ximian.com>
23286
23287         * class-internals.h (MonoGenericInst): New structure.
23288         (MonoGenericClass): Replaced `type_argc', `type_argv' and
23289         `is_open' with `MonoGenericInst *inst'.
23290         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
23291         `is_open' with `MonoGenericInst *inst'.
23292
23293 2004-11-30  Martin Baulig  <martin@ximian.com>
23294
23295         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
23296
23297         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
23298         to `generic_class_cache'.
23299
23300         * metadata.c
23301         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
23302         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
23303         (mono_generic_inst_is_valuetype): Renamed to
23304         mono_generic_class_is_valuetype().
23305
23306         * class-internals.h
23307         (MonoGenericInst): Renamed to MonoGenericClass.
23308         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
23309         (MonoClass): Renamed `generic_inst' to `generic_class'.
23310         (MonoGenericContext): Renamed `ginst' to `gclass'.
23311
23312         * object-internals.h
23313         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
23314
23315         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
23316         mono_reflection_generic_class_initialize().
23317
23318         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
23319         now known as "System.Reflection.MonoGenericClass".
23320         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
23321
23322 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
23323
23324         * class-internals.h: Added a flag field to MonoClass to cache the
23325         declarative security attributes actions associated with the class.
23326         * domain-internals.h: Added booleans to MonoJitInfo to cache the
23327         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
23328         applicable to the JITted method.
23329         * reflection.c|h: Added functions to extract (as flags) which security
23330         actions are available (declaratively) for a method, class or assembly.
23331         * metadata.c|h: Added functions to search the declarative security
23332         table in the metadata.
23333         
23334 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
23335
23336         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
23337         EXPORTEDTYPES are already in the class name cache, so there is no
23338         need to add extra code here to look at them. Just removes a bit of
23339         cruft.
23340
23341         (ves_icall_System_Environment_get_TickCount): No need for #if
23342         WINDOWS. We already have the code in io-layer.
23343
23344 2004-11-28  Martin Baulig  <martin@ximian.com>
23345
23346         * loader.c
23347         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
23348         Fixes gen-112.cs.
23349
23350 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
23351
23352         * assembly.c (do_mono_assembly_open): Instead of having a
23353         conditional WITH_BUNDLE, incorporate support for bundles here, by
23354         having a global `bundles' variable holding a pointer to the actual
23355         bundles. 
23356
23357         (mono_register_bundled_assemblies): New API call used by the
23358         bundle code. 
23359
23360         See mkbundle.1 for details.
23361         
23362 2004-11-27  Martin Baulig  <martin@ximian.com>
23363
23364         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
23365         the vtable for generic methods.
23366
23367 2004-11-26  Martin Baulig  <martin@ximian.com>
23368
23369         * metadata.c
23370         (mono_metadata_generic_method_hash): New public function.
23371         (mono_metadata_generic_method_equal): Likewise.
23372
23373         * class-internals.h
23374         (MonoGenericContainer): Added `GHashTable *method_hash'.
23375
23376         * reflection.c (ReflectionMethodBuilder): Added
23377         `MonoGenericContainer *generic_container'.
23378         (reflection_methodbuilder_to_mono_method): Don't create a new
23379         MonoGenericContainer each time we're called.
23380         (mono_reflection_bind_generic_method_parameters): Use
23381         `container->method_hash' to cache the results so we don't create a
23382         different method if we're called several times with the same
23383         arguments.
23384
23385         * loader.c (method_from_methodspec): Use the new
23386         `container->method_hash' here, too.
23387
23388 2004-11-26  Martin Baulig  <martin@ximian.com>
23389
23390         * class.c (inflate_generic_signature): Correctly compute
23391         `res->has_type_parameters'.
23392         (mono_class_vtable): Use the `has_type_parameters' flag to
23393         determine whether we're a generic method.
23394
23395         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
23396
23397 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
23398
23399         * object.c (mono_runtime_run_main): Fix a small memory leak.
23400
23401 2004-11-25  Martin Baulig  <martin@ximian.com>
23402
23403         * class.c (set_generic_param_owner): Fixed the loop.
23404
23405 2004-11-25  Martin Baulig  <martin@ximian.com>
23406
23407         * object.c (mono_class_vtable): Don't create any JIT wrappers for
23408         generic methods.
23409
23410 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
23411
23412         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
23413         names. Fixes #69787.
23414
23415 2004-11-24  Martin Baulig  <martin@ximian.com>
23416
23417         * class.c (mono_class_create_generic_2): If we don't have a
23418         `ginst->parent', inflate `gklass->parent' to get our parent.
23419
23420 2004-11-24  Martin Baulig  <martin@ximian.com>
23421
23422         * reflection.c (compare_genericparam): Correctly sort the
23423         GenericParam table; fixes #69779.
23424
23425 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
23426
23427         * reflection.c: When writing a PE file, don't create a huge
23428         buffer in memory. Just write the arrays we have to the file.
23429         This reduces memory usage.
23430
23431         * metadata-internals.h: MonoDynamicStream pefile is no longer used
23432         globally.
23433
23434 2004-11-17  Martin Baulig  <martin@ximian.com>
23435
23436         * class.c (mono_class_init): Don't setup `class->parent' for
23437         dynamic instances; moved this to mono_class_generic_2().
23438         (mono_class_create_generic): Also set `klass->inited' for dynamic
23439         generic instances.
23440         (mono_class_create_generic_2): Don't do anything for dynamic
23441         generic instances.  Set `klass->parent' here and also call
23442         mono_class_setup_parent() here. 
23443
23444         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
23445         `MonoType *parent' argument; set `ginst->parent' before calling
23446         mono_class_create_generic_2(), so we set the correct parent.
23447
23448 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
23449
23450         * reflection.c: allow getting attributes from ModuleBuilder
23451         (used by ikvm).
23452
23453 2004-11-17  Martin Baulig  <martin@ximian.com>
23454
23455         * class.c (mono_class_create_from_typedef): If a type parameter is
23456         inherited from an outer class, set its owner to that class.
23457
23458 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
23459
23460         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
23461           for (int*) written size. This fixes bug #69592.
23462
23463 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
23464
23465         * icall.c: Added IsAuthenticodePresnet internal call.
23466         * image.c|h: New function that check a MonoImage for an Authenticode
23467         signature in the certificate PE data directory.
23468         * security.c|h: New internal call to ask the runtime if an 
23469         Authenticode signature seems referenced in the PE header.
23470
23471 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
23472
23473         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
23474
23475         * reflection.c (mono_image_create_pefile): Free the assembly streams
23476         after writing out the assembly file.
23477
23478         * object.c (mono_runtime_run_main): Fix small memory leak.
23479
23480         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
23481         property access modifiers. Fixes #69389.
23482
23483 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
23484
23485         * domain.c, object.c, object-internals.h, domain-internals.h,
23486         object.h, marshal.c: keep dynamic code info per domain.
23487
23488 2004-11-15  Martin Baulig  <martin@ximian.com>
23489
23490         * class.c (mono_type_get_name_recurse): Put type arguments in
23491         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
23492         see bug #68387.
23493
23494 2004-11-15  Martin Baulig  <martin@ximian.com>
23495
23496         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
23497         (mono_class_setup_vtable): When computing `the_cname' for a
23498         generic instance, don't include the namespace since we'd otherwise
23499         add it twice.
23500
23501 2004-11-15  Martin Baulig  <martin@ximian.com>
23502
23503         * class.c (mono_class_create_generic): Changed return type to void.
23504         (mono_class_create_generic_2): New public function; setup
23505         `class->method', `class->field' and `class->interfaces' here
23506         instead of in mono_class_init().
23507
23508         * class.h (mono_class_create_generic): Moved to class-internals.h.
23509
23510 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
23511
23512         * reflection.c (mono_image_create_pefile): take a file HANDLE.
23513         rather than writing to memory, write to this file. Right now,
23514         we are just writting into a buffer, and copying that. However
23515         we can avoid the buffer later.
23516
23517         (mono_dynamic_stream_reset): new function
23518
23519         * icall.c, object-internals.h: update for the above.
23520
23521 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
23522
23523         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
23524         have been using gc'd memory. First it is slower, unlikely
23525         the comment in the source code said, secondly, it increases
23526         our footprint to do it in the gc.
23527
23528         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
23529         the method so that it does not have to copy to managed code.
23530
23531 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
23532
23533         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
23534
23535 2004-11-12  Martin Baulig  <martin@localhost>
23536
23537         * reflection.c (mono_image_create_token): Allow generic method
23538         definitions here, since they may appear in an `.override'; see
23539         gen-98/gen-99 for an example.
23540
23541 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
23542
23543         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
23544         #69365.
23545
23546         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
23547         descriptive.
23548
23549 2004-11-11  Martin Baulig  <martin@ximian.com>
23550
23551         * class.c (mono_class_setup_vtable): In an explicit interface
23552         implementation, the method name now includes the arity.
23553
23554 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
23555
23556         * object.c (mono_array_full_copy): Fix warning.
23557
23558 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
23559
23560         * appdomain.c: Removed look_for_method_by_name(). Use the new method
23561         mono_class_get_method_from_name() instead.
23562         
23563         * class-internals.h: Added two new types of wrappers. 
23564         Added MonoRemotingTarget enum. Added new trampoline function type, which
23565         takes an additional MonoRemotingTarget value as parameter, so it is
23566         possible to request a trampoline for a specific target.
23567         
23568         * class.c: Added new mono_class_get_method_from_name() method.
23569         
23570         * class.h: In MonoRemoteClass, we can have now to vtables, one for
23571         general remoting sinks and one specific for cross domain calls.
23572         
23573         * debug-helpers.c: Added new wrapper names.
23574         
23575         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
23576         of a remote class.
23577         
23578         * image.c: Porperly delete value objects form the remoting invoke hashtable.
23579         
23580         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
23581         with several other methods (mono_marshal_get_xappdomain_dispatch,
23582         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
23583         and others) can generate a fast remoting wrapper for cross domain calls.
23584         More information can be found in docs/remoting.
23585         Other changes: Removed mono_find_method_by_name, and used
23586         mono_class_get_method_from_name instead.
23587         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
23588         is stored in the remoting invoke hashtable.
23589         
23590         * marshal.h: published the new method for getting the xdomain wrapper,
23591         and also added a method for getting the adequate wrapper for a given
23592         method and target.
23593         
23594         * object-internals.h, object.c: Added a couple of methods for capying and
23595         cloning arrays.
23596         Modified mono_install_remoting_trampoline, which takes the new remoting
23597         trampoline that has a remoting target as parameter.
23598         mono_class_proxy_vtable now also takes a remoting target as parameter, and
23599         will return the most suitable vtable for the target.
23600         Added mono_remote_class_vtable, which returns the vtable of a remote class
23601         (which can be the normal remoting vtable or the xdomain vtable).
23602         
23603         * threads.c: the xdomain invoke and dispatch wrappers must also be
23604         protected against interruptions.
23605
23606 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23607
23608         * icall.c: use memmove in BlockCopyInternal when the source and
23609         destination arrays are the same.
23610
23611 2004-11-09  Martin Baulig  <martin@ximian.com>
23612
23613         * class-internals.h (MonoGenericContainer): Removed `method' and
23614         `signature', replaced them with `is_method' and `is_signature'
23615         flags.  Added `context'.
23616
23617         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
23618         instead of a `MonoGenericContainer *'.
23619
23620         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
23621         for dynamic type parameters.
23622         (mono_metadata_load_generic_params): Setup `container->context'.
23623
23624         * reflection.c (mono_reflection_setup_generic_class): Setup
23625         `tb->generic_container->context'.
23626         (do_mono_reflection_bind_generic_parameters): Use
23627         mono_class_inflate_generic_type() to correctly inflate types,
23628         rather than using our own hack just for MONO_TYPE_VAR.
23629
23630 2004-11-09  Martin Baulig  <martin@ximian.com>
23631
23632         * class.c (mono_class_inflate_generic_method): Small fix; don't
23633         crash here.
23634
23635         * icall.c
23636         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
23637         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
23638         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
23639         (ves_icall_Type_BindGenericParameters): Likewise.
23640         (ves_icall_Type_get_IsGenericInstance): Likewise.
23641         (ves_icall_Type_GetGenericParameterPosition): Likewise.
23642         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
23643         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
23644         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
23645
23646 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
23647
23648         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
23649         assembly versions and public key tokens. Fixes #69113.
23650
23651 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
23652
23653         * metadata.c: fix bug introduced with the type cache changes
23654         on 2004-11-06.
23655
23656 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
23657
23658         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
23659         the MonoClass pointer instead of the token in exception clauses.
23660         * reflection.c: updates for the above and make the code not depend
23661         on the structure of MonoExceptionClause.
23662
23663 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
23664
23665         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23666         Add support for dynamic assemblies. Fixes #69114.
23667
23668         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
23669
23670 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
23671
23672         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
23673         since most only those methods use it. the code member of
23674         MonoMethodPInvoke was dead, so that can be removed too. Also,
23675         remove inline_count (again, not used), and move slot so that it
23676         can share bits with some other flags. This saves 8 bytes in the
23677         structure and gives us about 50 kb back for mcs helloworld.cs
23678
23679         * *.[ch]: Do naming changes for the above.
23680
23681         * loader.c (mono_method_get_header): Lazily init the header
23682         on first access.
23683         (mono_get_method_from_token): don't init the header here
23684         (mono_free_method): the header may never be allocated
23685
23686         Overall, this saves 150 kb of unmanaged allocations
23687         for mcs helloworld.cs. That accounts for 10% of the unmanaged
23688         memory at runtime.
23689         
23690         * loader.c, loader.h (mono_method_get_header): new accessor.
23691
23692         * *.[ch]: use the above method. Prepares us to lazily load
23693         the header.
23694
23695         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
23696         three warnings, which are actual bugs (see 69206).
23697
23698         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
23699         unused. Saves a cool 4 bytes / method.
23700
23701 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
23702
23703         * metadata.c (builtin_types): Add types for System.Object here.
23704         (mono_metadata_parse_type_full): Cache MonoType*'s that are
23705         for a class or valuetype from klass->this_arg or klass->byval_arg.
23706
23707         On mcs for a hello world, this gets us down from 21836 MonoType's
23708         to 14560.
23709
23710         (mono_metadata_free_type): Account for the above change.
23711
23712 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
23713
23714         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
23715         exception instead of asserting if name is null.
23716         (ves_icall_System_AppDomain_GetData): Ditto.
23717
23718 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
23719
23720         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
23721         EnumBuilder.
23722
23723         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
23724         Return NULL when the domain does not have entry_assembly set.
23725
23726         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
23727         Add a 'resource_modules' argument.
23728         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
23729
23730         * reflection.c (mono_reflection_create_runtime_class): Move setting
23731         of wastypebuilder here, so mono_get_type_object () returns a MonoType
23732         for enums too.
23733
23734         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
23735         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
23736         Throw an ArgumentNullException if 'ptr' is null.
23737
23738         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
23739         assemblies here. Fixes #69020.
23740
23741 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
23742
23743         * reflection.c (build_compressed_metadata): Fix the previous patch for
23744         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
23745         the stack.
23746
23747 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
23748
23749         * assembly.c (mono_assembly_names_equal): Allow a match if one of
23750         the cultures is false. Fixes #69090.
23751
23752         * reflection.c (build_compressed_metadata): Fix invalid memory read 
23753         detected by valgrind.
23754         
23755         * reflection.c (mono_reflection_get_type): Avoid triggering a 
23756         TypeResolve multiple times for the same type. Fixes #65577.
23757
23758 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
23759
23760         * marshal.c: Avoid using ldftn to call managed functions. It is
23761         much slower than just a call.
23762
23763         * reflection.c (mono_module_get_object): free the basename we
23764         allocate here from glib.
23765         
23766         * reflection.c (ensure_runtime_vtable): make sure to free
23767         overrides.  Also, we were allocating an array of MonoMethod not an
23768         array of MonoMethod*.
23769
23770         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
23771
23772         * image.c (mono_image_close): free image->guid here.
23773
23774 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
23775
23776         * reflection.c: Fix some spec conformance issues with the PE file
23777         structures so mcs compiled apps run on the Net 2.0 beta.
23778
23779 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
23780
23781         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
23782         Implement this. Fixes #67264.
23783
23784         * debug-helpers.h debug-helpers.c marshal.c: Move 
23785         mono_find_method_by_name to debug-helpers.c.
23786
23787 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
23788
23789         * object.c (mono_release_type_locks): type_initialization_hash is
23790         a GHashTable.
23791
23792         * reflection.c object.c object-internals.h: Fix warnings.
23793
23794         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
23795         without accessors. Fixes #61561.
23796
23797         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
23798         application base from the root domain if not set. Fixes #65641.
23799         (mono_runtime_init): Fix warning.
23800
23801 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23802
23803         * appdomain.c: call mono_thread_pool_init.
23804         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
23805         of worker threads based on the number of CPUs and the environment
23806         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
23807         for non-windows (windows) systems.
23808
23809 2004-10-27  Chris Toshok  <toshok@ximian.com>
23810
23811         * mono-debug-debugger.c (write_class): don't call mono_class_init
23812         here, as even with the check for (!klass->init_pending), we get
23813         into a situation where we're hitting cycles in class
23814         initialization.  Fixes #68816.
23815
23816 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
23817
23818         * image.c: Avoid overwriting values in the loaded_images_hash when an
23819         assembly is loaded multiple times. Fixes #61152.
23820
23821         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
23822         so multiple satellite assemblies for the same name can be loaded.
23823         Fixes #68259.
23824
23825         * mono_domain_assembly_preload: Actually return the loaded assembly, 
23826         not NULL.
23827
23828         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
23829         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
23830
23831         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
23832         pending finalizers are not invoked after the appdomain has been 
23833         unloaded. Fixes #67862.
23834
23835 2004-10-22  Martin Baulig  <martin@ximian.com>
23836
23837         * mono-debug-debugger.c
23838         (mono_debugger_runtime_invoke): Don't box valuetypes.
23839
23840 2004-10-22  Chris Toshok  <toshok@ximian.com>
23841
23842         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23843         don't hide private methods.
23844
23845 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23846
23847         * icall.c: Allows the runtime to "share" (when known) the public key
23848         token of an assembly. This avoid the need to recalculate the token 
23849         (from the public key) in managed code.
23850
23851 2004-10-21  Chris Toshok  <toshok@ximian.com>
23852
23853         * debug-helpers.c (append_class_name): argh, revert last patch.
23854         
23855 2004-10-21  Chris Toshok  <toshok@ximian.com>
23856
23857         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23858         not '/', so that it matches what the debugger uses to look up
23859         methods.
23860
23861 2004-10-21  Martin Baulig  <martin@ximian.com>
23862
23863         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23864         public method; this is called each time an exception is thrown and
23865         allows the debugger to use exception catch points.
23866
23867 2004-10-21  Martin Baulig  <martin@ximian.com>
23868
23869         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23870         the stack pointer and the exception object in some struct and pass
23871         that to the debugger.
23872
23873 2004-10-21  Chris Toshok  <toshok@ximian.com>
23874
23875         * mono-debug-debugger.c (do_write_class): add instance/static
23876         event support.  We don't expose "raise" or "other" yet.
23877         (event_is_static): new method.
23878
23879 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23880
23881         * mono-debug-debugger.c
23882         (mono_debugger_handle_exception): Remove
23883         bogus return value for fussy compilers.
23884
23885 2004-10-20  Martin Baulig  <martin@ximian.com>
23886
23887         * mono-debug-debugger.c
23888         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23889         (mono_debugger_handled_exception): Likewise.
23890
23891 2004-10-20  Martin Baulig  <martin@ximian.com>
23892
23893         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23894         MONO_DEBUGGER_EVENT_EXCEPTION.
23895
23896         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23897         public function to send the debugger a notification for an
23898         exception and inform it about a catch/finally clause.
23899
23900 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23901
23902         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23903         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23904         fix 2.95 build. 
23905
23906         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23907
23908 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23909
23910         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23911         marshalled as [In,Out]. Fixes #58325.
23912
23913 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23914
23915         * reflection.c (mono_method_body_get_object): Implement some fields.
23916
23917 2004-10-12  Martin Baulig  <martin@ximian.com>
23918
23919         * reflection.c (mono_reflection_bind_generic_parameters): Small
23920         fix, correctly retrieve our parent from a generic instance.
23921
23922 2004-10-12  Martin Baulig  <martin@ximian.com>
23923
23924         * metadata.c (mono_metadata_generic_param_equal): We always have
23925         an owner.
23926
23927         * class.c
23928         (mono_class_from_generic_parameter): We need to have an owner.
23929         (my_mono_class_from_generic_parameter): Likewise.
23930
23931         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23932         mono_reflection_create_generic_class() and added a new
23933         mono_reflection_setup_generic_class().  
23934         (mono_reflection_initialize_generic_param): If we're a nested
23935         generic type and inherited from the containing class, set our
23936         owner to the outer class.
23937
23938 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23939
23940         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23941
23942         * reflection.c (mono_method_body_get_object): New function to create
23943         a MethodBody object.
23944
23945         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23946
23947 2004-10-11  Martin Baulig  <martin@ximian.com>
23948
23949         * metadata.c (_mono_metadata_type_equal): Renamed to
23950         do_mono_metadata_type_equal() and made static.
23951
23952 2004-10-11  Martin Baulig  <martin@ximian.com>
23953
23954         * appdomain.c: Bump corlib version number to 28.
23955
23956 2004-10-10  Martin Baulig  <martin@ximian.com>
23957
23958         * class-internals.h
23959         (MonoGenericInst): Added `MonoGenericContainer *container'.
23960         (MonoGenericMethod): Likewise.
23961         (MonoGenericContext): Likewise.
23962         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23963
23964         * metadata.c
23965         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23966         (do_mono_metadata_parse_generic_inst): Likewise.
23967         (mono_metadata_parse_type_full): New public method.  This is the actual
23968         mono_metadata_parse_type() implementation - with an additional
23969         `MonoGenericContainer *' argument.
23970         (mono_metadata_parse_array_full): Likewise.
23971         (mono_metadata_parse_signature_full): Likewise.
23972         (mono_metadata_parse_method_signature_full): Likewise.
23973         (mono_metadata_parse_mh_full): Likewise.
23974         (mono_type_create_from_typespec): Likewise.
23975         (mono_metadata_interfaces_from_typedef_full): New public method;
23976         this is similar to the other _full() methods, but we take a
23977         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23978         (mono_metadata_parse_generic_param): Take an additional
23979         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23980         from that container.
23981         (mono_metadata_generic_param_equal): New static method to compare
23982         two type parameters.
23983         (_mono_metadata_type_equal): New static method; takes an
23984         additional `gboolean signature_only' argument - if true, we don't
23985         compare the owners of generic parameters.
23986         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23987         with a TRUE argument - do a signature-only comparision.
23988
23989         * loader.c: Use the new _full() methods and pass the
23990         MonoGenericContainer to them.
23991
23992         * object-internals.h (MonoReflectionTypeBuilder): Added
23993         `MonoGenericContainer *generic_container' field.
23994         (MonoReflectionMethodBuilder): Likewise.
23995
23996 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23997
23998         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23999         case initial images of dynamic assemblies.
24000
24001         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
24002
24003         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
24004
24005         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
24006         length of event->other array.
24007         (typebuilder_setup_events): Ditto.
24008
24009         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
24010         'assembly_by_name' and add an 'assemblies' list.
24011
24012         * assembly.h assembly.c: Add a new search hook for determining whenever
24013         an assembly is already loaded. Use this instead of searching in the
24014         loaded_assemblies list.
24015
24016         * domain.c appdomain.c: Implement the new search hook so loaded 
24017         assemblies are now scoped by appdomain. Fixes #67727.
24018
24019 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
24020
24021         * threads.c (mono_thread_attach): Initialize synch_lock field so
24022         mono_thread_detach works again.
24023
24024         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
24025         'lib' too. Fixes #63130.
24026
24027 2004-10-06  Jackson Harper  <jackson@ximian.com>
24028
24029         * culture-info-tables.h: regenerated.
24030
24031 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
24032
24033         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
24034         implemented by other interfaces in the result. Fixes #65764.
24035         
24036         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24037         Handle unloadable modules without crashing.
24038
24039         * image.c (load_modules): Revert the previous patch since modules must
24040         have a fixed index inside the array.
24041         
24042         * image.c (load_modules): Don't include native modules in the modules
24043         array.
24044
24045 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
24046
24047         * reflection.h: Add param_defaults field.
24048
24049         * reflection.c: Add support for parameter defaults in dynamic methods.
24050         Fixes #64595.
24051
24052         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
24053         an empty string when a type has no namespace. Fixes #64230.
24054
24055 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
24056
24057         * tabledefs.h: Added "internal" security actions to support non-CAS
24058         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
24059         Note: they do not seems to be used anymore in 2.0 (new metadata format)
24060
24061 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
24062
24063         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
24064         constructor of abstract class. Fixes #61689.
24065
24066 2004-10-04  Martin Baulig  <martin@ximian.com>
24067
24068         * class-internals.h (MonoGenericContainer): New type.
24069         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
24070         `MonoGenericContainer *generic_container'.
24071         (MonoClass): Replaced `gen_params' and `num_gen_params' with
24072         `MonoGenericContainer *generic_container'.
24073
24074         * metadata.c (mono_metadata_load_generic_params): Return a
24075         `MonoGenericContainer *' instead of a `MonoGenericParam *';
24076         removed the `num' argument.
24077
24078 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
24079
24080         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
24081         for dynamic images.
24082
24083         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
24084         machine fields.
24085
24086         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
24087
24088         * reflection.c: Save pe_kind and machine values into the generated
24089         image file.
24090
24091         * appdomain.c: Bump corlib version number.
24092
24093         * object-internals.h: Reorganize layout of LocalBuilder.
24094
24095         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
24096         New helper function.
24097
24098         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
24099         created MonoType for dynamic types. Fixes #66180.
24100
24101 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
24102
24103         * threadpool.c: the ares hashtable needs a critical section around it.
24104         this prevents some nasty segfaults
24105
24106 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
24107
24108         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
24109         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
24110         bug 67324).
24111         
24112 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
24113
24114         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
24115         
24116 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
24117
24118         * image.c: Always canonicalize image file names, to avoid loading
24119         the same assembly twice when referenced using a relative path.
24120
24121 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
24122
24123         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
24124
24125         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
24126
24127         * marshal.c: Fix warnings.
24128
24129 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
24130
24131         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
24132         attempting to marshal the delegate_trampoline as the method_addr.
24133         This patch has a static hashtable of marshalled delegates so that 
24134         we can map delegate_trampoline addresses back to delegates.  This
24135         allows a delegate passed to managed code to be passed back into native
24136         code.  Fixes #67039
24137
24138 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
24139
24140         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
24141
24142         * reflection.c (method_encode_code): Align method headers properly.
24143         Fixes #66025.
24144
24145 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
24146
24147         * marshal.c: In the runtime invoke wrapper, reset the abort
24148         exception if it is cached. This avoids the automatic rethrowal of 
24149         the exception after the catch of the wrapper. Also check for pending
24150         interruptions before calling the managed method. This is done using
24151         the new method emit_thread_force_interrupt_checkpoint, since the
24152         normal checkpoint method is ignored when running the invoke wrapper.
24153         * object.c: If the abort exception is rethrown, set the abort_exc
24154         field of the thread, so it will be rethrown aftere every catch.
24155         * threadpool.c: Only run an interruption checkpoint if what has been
24156         requested is a stop of the thread (aborts will be ignored).
24157         * threads.c: By default, a thread will now never be interrumped while
24158         running the runtime invoke wrapper (this ensures that runtime_invoke
24159         will always return to the caller if an exception pointer is provided).
24160         There is a new special method mono_thread_force_interruption_checkpoint()
24161         to force an interruption checkpoint even if running a protected
24162         wrapper, which is used by the same runtime invoke wrapper to do a check
24163         at a safe point.
24164
24165 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
24166
24167         * object.c, object-internals.h: Implemented mono_release_type_locks,
24168         which releases the cctor locks held by a thread.
24169         * threads.c, threads.h: In thread_cleanup, release cctor locks held
24170         by a thread. Added mono_thread_exit() method to be used to safely stop
24171         a thread.
24172
24173 2004-09-28  Raja R Harinath  <rharinath@novell.com>
24174
24175         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24176         Move null check before dereference.  Avoid indexing beyond the end
24177         of the 'modules' array.
24178
24179 2004-09-28  Raja R Harinath  <rharinath@novell.com>
24180
24181         * metadata-internals.h (MonoImage): Add module_count field.
24182         * image.c (load_modules): Set image->module_count.
24183         (mono_image_load_file_for_image): Use image->module_count.
24184         * reflection.c (mono_image_load_module): Append to image->modules array 
24185         of dynamic assembly.
24186         (mono_module_get_object): Fix loop to actually increment index.
24187         Use image->module_count.
24188         * assembly.c (mono_assembly_load_references): Use image->module_count.
24189         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
24190         Likewise.
24191
24192 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
24193
24194         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
24195         Avoid assert on generic types.
24196
24197 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
24198
24199         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
24200
24201         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
24202
24203         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
24204         function to convert a MarshalSpec structure to its managed counterpart.
24205
24206         * reflection.c: Fix warnings.
24207         
24208         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
24209         field.
24210
24211         * icall.c (mono_create_icall_signature): Fix build.
24212
24213 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
24214
24215         * icall.c: Add MakePointType icall.
24216
24217         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
24218         warnings.
24219
24220 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24221
24222         * threadpool.c: reuse allocated slots in the queue.
24223
24224 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
24225
24226         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
24227
24228         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
24229
24230         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
24231         previous change.
24232
24233         * tabledefs.h: Add constants for pinvoke attributes BestFit and
24234         ThrowOnUnmappableChar.
24235
24236         * icall.c (ves_icall_Type_GetPacking): New icall.
24237
24238 2004-09-24  Martin Baulig  <martin@ximian.com>
24239
24240         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
24241
24242 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24243
24244         * appdomain.c:
24245         (mono_domain_set): allow setting a domain that is being unloaded.
24246         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
24247         being unloaded.
24248
24249 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
24250
24251         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
24252         the GetCustomAttributes icall.
24253
24254 2004-09-23  Martin Baulig  <martin@ximian.com>
24255
24256         * object-internals.h (MonoReflectionGenericParam): Replaced
24257         'has_ctor_constraint', `has_reference_type' and `has_value_type'
24258         with `guint32 attrs'.
24259
24260 2004-09-23  Martin Baulig  <martin@ximian.com>
24261
24262         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
24263
24264 2004-09-23  Martin Baulig  <martin@ximian.com>
24265
24266         * object-internals.h (GenericParameterAttributes): New enum.
24267
24268 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
24269
24270         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
24271         
24272         * class.c (init_events): Fill out event->other field.
24273
24274         * class.c: Fix warnings.
24275
24276         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
24277
24278 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
24279
24280         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
24281         walk which doesn't supply the IL offset.
24282
24283 2004-09-22  Martin Baulig  <martin@ximian.com>
24284
24285         * reflection.c (mono_reflection_setup_internal_class): If we're
24286         System.ValueType, System.Object or System.Enum, set
24287         `klass->instance_size' and create the vtable.
24288         (mono_reflection_create_internal_class): If we're an enum type,
24289         get the base class from our current corlib.
24290
24291 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
24292
24293         * reflection.h (MonoResolveTokenError): New type.
24294
24295         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
24296         icall.
24297
24298         * icall.c: Add an 'error' argument to the ResolveToken icalls.
24299
24300 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
24301
24302         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
24303         Support also calling constructors, but only for already allocated objects.
24304
24305 2004-09-17  Geoff Norton <gnorton@customerdna.com>
24306
24307         * reflection.c (type_get_qualified_name): If the klass is null
24308         return the typename to avoid a NullRefEx.
24309         (encode_cattr_value): Get the qualified name of the boxed type,
24310         not the underlying enumtype.  Fixes #62984.
24311
24312 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
24313
24314         * marshal.c: Fix problems with previous checkin.
24315
24316 2004-09-21    <vargaz@freemail.hu>
24317
24318         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
24319         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
24320
24321         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
24322
24323 2004-09-21  Geoff Norton <gnorton@customerdna.com>
24324
24325         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
24326         should only return a type for pointers, arrays, and passbyref types.
24327         Fixes bug #63841.
24328
24329 2004-09-21  Martin Baulig  <martin@ximian.com>
24330
24331         * domain.c (mono_debugger_check_runtime_version): New public
24332         function.
24333
24334         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
24335
24336 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
24337
24338         * reflection.c: Added missing sort to the declarative security 
24339         attributes table. MS implementation stops seeing the attributes if the
24340         token number regress in the table (as shown by ildasm and permview).
24341
24342 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
24343
24344         * object-internals.h (MonoReflectionModule): Add 'token' field.
24345         
24346         * reflection.c (mono_reflection_get_token): Add support for Module
24347         and Assembly.
24348         (mono_module_get_object): Set 'token' field.
24349         (mono_module_file_get_object): Set 'token' field.
24350
24351         * icall.c: Add new Assembly and Module icalls.
24352
24353         * appdomain.c: Bump corlib version.
24354
24355 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
24356
24357         * loader.h loader.c class.h class.c: Add helper functions for obtaining
24358         tokens of metadata objects.
24359
24360         * reflection.h reflection.c (mono_reflection_get_token): New function
24361         to obtain the token of a metadata object.
24362
24363         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
24364
24365 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
24366
24367         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
24368         
24369         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
24370
24371 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
24372
24373         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
24374         * object-internals.h: Added 3 MonoArray* members to MonoReflection
24375         AssemblyBuilder to access the permissions set in the class lib.
24376         * reflection.c: Added security attributes encoding step in 
24377         mono_image_build_metadata.
24378         * tabledefs.h: Added new security actions defined in 2.0:
24379         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
24380
24381 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24382
24383         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
24384         macro parameter.
24385
24386 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24387  
24388         * locales.c: nullify the ICU_collator member of CompareInfo when it is
24389           finalized. There where random SIGSEVs at program termination, when
24390           an object being finalized was trying to do a string comparison and
24391           the current culture was already finalized.
24392  
24393 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24394
24395         * threads.c: call thread_cleanup before finishing the thread if we get
24396         there.
24397
24398 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
24399
24400         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
24401         assemblies from the parent. Fixes #65665.
24402
24403 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
24404
24405         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
24406         modifiers.
24407
24408 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
24409
24410         * reflection.h: add prototype for mono_get_dbnull_object
24411         * reflection.c: add prototypes for get_default_param_value_blobs 
24412         and mono_get_object_from_blob for fussier compilers
24413
24414 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
24415  
24416         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
24417         false deadlock checks in class initialization.
24418  
24419 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
24420
24421         * image.c (mono_image_addref): Fix comment.
24422
24423         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
24424         possible.
24425
24426 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
24427
24428         * reflection.c (mono_param_get_objects): Modified to return
24429         ParameterInfo.DefaultValue object.
24430
24431         (get_default_param_value_blobs):
24432         (mono_get_object_from_blob):
24433         (mono_get_dbnull_object): New helper routines. 
24434
24435         * object.c (mono_get_constant_value_from_blob): New helper routine
24436         carved out from get_default_field_value ()
24437
24438         * object-internals.h (mono_get_constant_value_from_blob): Added
24439         function declaration.
24440
24441 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
24442
24443         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
24444         referenced assemblies. Fixes #62135.
24445
24446         * exception.h exception.c (mono_get_exception_file_not_found2): New
24447         helper function.
24448
24449 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
24450
24451         * class.h class.c: Add mono_type_get_underlying_type ().
24452
24453 2004-09-09  Geoff Norton <gnorton@customerndna.com>
24454
24455         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
24456         Fix GetTypes() to support dynamically created assemblies.
24457
24458 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
24459
24460         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
24461         
24462         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
24463         previous patch.
24464
24465         * reflection.h reflection.c loader.c: Allow dynamic construction of
24466         pinvoke methods. Fixes #65571.
24467         
24468         * reflection.c (mono_reflection_get_type): Revert previous change since
24469         it causes regressions.
24470
24471 2004-09-08  Martin Baulig  <martin@ximian.com>
24472
24473         * class.c (class_compute_field_layout): Don't call
24474         mono_class_layout_fields() for open generic instances.
24475
24476 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
24477         * threads.c appdomain.c: fix typo in GC macro
24478
24479 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24480
24481         * threads.c: don't call mono_thread_detach() in start_wrapper(),
24482         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
24483
24484 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
24485
24486         * image.c (mono_image_close): Applied patch from 
24487         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
24488         assembly is loaded multiple times from data.
24489         
24490         * image.c (mono_image_open): Fix warning.
24491
24492 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24493
24494         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
24495         once. Fixes #58334.
24496         
24497         * reflection.c (mono_reflection_create_runtime_class): Initialize
24498         klass->nested_classes. Fixes #61224.
24499
24500 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24501
24502         * threads.c: sched_yield() on exit, to allow threads to quit.
24503
24504 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24505
24506         * object.c (mono_unhandled_exception): Remove leftover debug code.
24507
24508 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
24509
24510         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
24511
24512 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24513
24514         * marshal.c (emit_marshal_array): Really null terminate string arrays.
24515         
24516         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
24517
24518 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24519
24520         * marshal.c (emit_marshal_array): Null terminate string arrays.
24521         
24522         * marshal.c (raise_auto_layout_exception): Fix warning.
24523
24524         * reflection.c (mono_param_get_objects): Initialize the default value
24525         with DBNull.Value, not null. Fixes #62123.
24526
24527 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
24528
24529         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
24530         throw an exception with a cute explanation.
24531
24532 2004-09-06  Dick Porter  <dick@ximian.com>
24533
24534         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
24535         Close the new process's thread handle, as we don't use it.  The
24536         handle stays around forever otherwise.
24537
24538 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24539
24540         * object.c (arith_overflow): Fix warning.
24541
24542         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
24543         calling conventions in method refs. Fixes #65352.
24544
24545         * reflection.c: Fix warnings.
24546
24547 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24548
24549         * icall.c: Add a new icall for Array.Clear
24550
24551 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24552
24553         * object.c: When allocating an array, we have to throw
24554         an overflow exception if any of the lengths are < 0.
24555
24556 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24557
24558         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
24559         properly. Also move implementation of string array marshalling to 
24560         managed code. Fixes #42316.
24561
24562 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24563
24564         * assembly.c: provide more information when loading an assembly fails.
24565
24566 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24567
24568         * filewatcher.c: don't expect the development fam package to be
24569         installed.
24570
24571 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
24572
24573         * marshal.c: Make a copy of the signature cookie since it will be
24574         freed by the caller.
24575         
24576         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
24577
24578         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
24579
24580         * metadata.c (mono_metadata_free_marshal_spec): New function to free
24581         marshal specs.
24582
24583         * marshal.c: More refactoring.
24584         
24585         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
24586         smaller functions.
24587
24588 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
24589
24590         * object.c: In mono_message_invoke, fill the output parameter array after
24591           calling the managed method (it was done before the call). This fixes
24592           bug #59299.
24593
24594 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24595
24596         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
24597         as well.
24598
24599 2004-09-02  Martin Baulig  <martin@ximian.com>
24600
24601         * class.c (mono_class_instance_size): Don't allow generic type
24602         definitions or open generic instances.
24603         (mono_class_array_element_size): If we're a value type, call
24604         mono_class_instance_size() on the original class.
24605
24606         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
24607         handle generic instances.
24608
24609         * mono-debug-debugger.c (write_type): Handle generic instances
24610         like classes.
24611
24612 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24613
24614         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
24615         the allocation request fails. Fixes #65089.
24616
24617         * object.c (mono_runtime_free_method): Do not call mono_free_method.
24618         
24619         * object.c (mono_runtime_free_method): New function to free a dynamic
24620         method.
24621
24622         * marshal.c (mono_delegate_free_ftnptr): New function to free the
24623         delegate trampoline.
24624
24625         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
24626         with hasthis as dynamic,
24627
24628         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
24629
24630         * domain.c (mono_jit_info_table_remove): New function to remove an
24631         entry from the jit info table.
24632
24633         * class-internals.h (MonoMethod): Add 'dynamic' field.
24634
24635         * loader.c: Fix warnings.
24636
24637 2004-09-01  Martin Baulig  <martin@ximian.com>
24638
24639         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
24640         instead of mono_debugger_lock() because the latter one is a no-op
24641         unless running in the debugger.
24642
24643 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24644
24645         * class.c (class_compute_field_layout): Classes with auto-layout or
24646         reference fields are not blittable.
24647         
24648 2004-09-01  Dick Porter  <dick@ximian.com>
24649
24650         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
24651         mono_image_get_filename() to get the assembly location.
24652
24653         * icall.c:
24654         * metadata.h: Fix compile warnings
24655
24656 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24657
24658         * class.c (class_compute_field_layout): System.Object is blittable.
24659
24660         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
24661         as in/out. Fixes #59909.
24662
24663 2004-09-01  Martin Baulig  <martin@ximian.com>
24664
24665         * metadata.h (MONO_TYPE_ISREFERENCE): Call
24666         mono_metadata_generic_inst_is_valuetype() if we're a generic
24667         instance to check whether our underlying type is a reference type.
24668
24669 2004-09-01  Martin Baulig  <martin@ximian.com>
24670
24671         * metadata.c (mono_type_size): If we're a generic instance, call
24672         mono_class_value_size() for value types.
24673
24674 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
24675
24676         * marshal.c: Implement more custom marshalling functionality. Fixes
24677         #64915.
24678
24679 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24680
24681         * mono-debug.c, debug-mono-symfile.c: add some locking love.
24682
24683 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
24684
24685         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
24686
24687         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
24688
24689         * icall.c: Fix some warnings.
24690
24691         * threads.c (abort_appdomain_thread): Fix unref errors.
24692         (mono_thread_current): Fix THREAD_DEBUG define.
24693
24694 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
24695
24696         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
24697
24698         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
24699
24700 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
24701
24702         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
24703         string arrays.
24704
24705 2004-08-28  Martin Baulig  <martin@ximian.com>
24706
24707         * metadata.c
24708         (mono_metadata_generic_inst_is_valuetype): New public function.
24709
24710         * metadata.h (MONO_TYPE_ISSTRUCT): Call
24711         mono_metadata_generic_inst_is_valuetype() if we're a generic
24712         instance to check whether our underlying type is a valuetype.
24713
24714 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
24715
24716         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
24717         #63768.
24718
24719 2004-08-25  Martin Baulig  <martin@ximian.com>
24720
24721         * loader.c (mono_get_method_from_token): Abstract methods can also
24722         be generic and thus have type parameters.
24723
24724         * metadata-internals.h
24725         (MonoDynamicImage): Added `GPtrArray *gen_params'.
24726
24727         * reflection.c (mono_image_get_generic_param_info): Don't create a
24728         metadata row, just add an entry to the `gen_params' array.
24729         (build_compressed_metadata): Sort the `gen_params' array and then
24730         actually create the metadata.
24731
24732 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24733
24734         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
24735
24736 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
24737
24738         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
24739
24740 2004-08-24  Martin Baulig  <martin@ximian.com>
24741
24742         * class.cs (mono_class_is_subclass_of): Like an interface, a
24743         generic instance also derives from System.Object.
24744
24745 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
24746
24747         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
24748         custom modifiers to be in any order. Fixes #61990.
24749
24750 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
24751
24752         * object.c: Register mono_object_new_fast icall.
24753         
24754         * object.c (mono_class_get_allocation_ftn): Return to calling
24755         mono_object_new_fast, since it seems faster to compute the object 
24756         size in unmanaged code than passing it as a parameter.
24757
24758         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
24759
24760         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
24761         this function with Boehm as the oom handler, so we don't have to check
24762         the result of GC_malloc.
24763
24764         * object.c: Remove checks for oom.
24765
24766         * object.h object.c (mono_class_get_allocation_ftn): New function to
24767         return the icall which can be used to allocate an instance of a given
24768         class. 
24769
24770         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
24771
24772         * class-internals.h: Add 'enabled' field.
24773
24774 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
24775
24776         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
24777
24778 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
24779         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
24780         value 0x0010.
24781
24782 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
24783
24784         * appdomain.c: use the Tls function for appdomain too,
24785         at Zoltan's request. Actually return in mono_context_get
24786
24787         * appdomain.c, profiler.c, threads.c: use __thread
24788
24789 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
24790
24791         * appdomain.c threads.c: Call GC_CreateThread on windows.
24792
24793         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
24794         multiple libraries since this don't work on windows.
24795
24796 2004-08-18  Martin Baulig  <martin@ximian.com>
24797
24798         * class-internals.h
24799         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
24800         MonoMethodHeader.
24801
24802         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
24803         MonoMethodNormal since we also need it for abstract and interface
24804         methods.
24805
24806         * reflection.c
24807         (build_compressed_metadata): Sort the GenericParam table.
24808         (mono_image_create_token): Added `gboolean create_methodspec'
24809         argument; this is false when generating a MethodImpl token.
24810         (reflection_methodbuilder_to_mono_method): Abstract and interface
24811         methods may also have generic parameters.
24812
24813 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
24814
24815         * appdomain.c: thread local alloc
24816
24817 2004-08-17  Martin Baulig  <martin@ximian.com>
24818
24819         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
24820
24821         * icall.c
24822         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
24823         argument.
24824
24825         * class.c (mono_type_get_full_name): New public function.
24826         (mono_type_get_name): Don't include the type arguments.
24827
24828 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
24829
24830         * Makefile.am: Build static versions of libmetadata and libmonoruntime
24831         for inclusion into the mono executable.
24832
24833 2004-08-16  Martin Baulig  <martin@ximian.com>
24834
24835         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24836         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24837
24838 2004-08-14  Martin Baulig  <martin@ximian.com>
24839
24840         * class.c (dup_type): Also copy the `byref' field.
24841
24842 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24843
24844         * reflection.c (create_dynamic_mono_image): Revert the last change 
24845         since it breaks bootstrap.
24846
24847 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24848
24849         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24850
24851         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24852         not free them with g_free.
24853
24854 2004-08-11  Martin Baulig  <martin@ximian.com>
24855
24856         * reflection.c (mono_reflection_setup_internal_class): Also call
24857         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24858
24859 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24860
24861         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24862         called during default (first) AppDomain creation. Keep track of
24863         Evidence when loading assemblies.
24864
24865 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24866
24867         * opcodes.c, opcodes.h: reduce runtime relocations.
24868
24869 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24870
24871         * culture-info.h, locales.c: fixes and chages to sue the new
24872         optimized format of the locale data.
24873         * culture-info-tables.h: regenerated.
24874
24875 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24876         
24877         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24878
24879 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24880
24881         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24882         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24883         * domain-internals.h: icall declaration.
24884         * icall.c: icall registration.
24885         * object-internals.h: New fields in MonoAssembly for CAS.
24886
24887 2004-08-05  Duncan Mak  <duncan@ximian.com>
24888
24889         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24890         CEE_LDELEM_ANY.
24891
24892 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24893
24894         * reflection.c: fix to deal with object[] arrays in custom ctors
24895         (bug #62550).
24896
24897 2004-08-05  Martin Baulig  <martin@ximian.com>
24898
24899         * class.c (mono_class_array_element_size): Added support for
24900         generic instances and correctly handle "recursive" types.
24901
24902 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24903
24904         * assembly.c: Fix warnings.
24905
24906 2004-08-04  Martin Baulig  <martin@ximian.com>
24907
24908         * class.c
24909         (mono_type_get_name_recurse): Added `gboolean include_arity'
24910         argument specifying whether or not we should include the generic
24911         arity in the type name.
24912         (_mono_type_get_name): New static function.
24913         (mono_class_setup_vtable): If we're a generic instance, don't
24914         include the generic arity in the names of explicit method
24915         implementations.        
24916
24917 2004-08-03  Martin Baulig  <martin@ximian.com>
24918
24919         * class.c (mono_type_get_name_recurse): Enclose the generic type
24920         arguments in `<', '>'.
24921
24922 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24923
24924         * gc.c: make GC warning messages use the trace API, they are just
24925         noise to most of the users.
24926
24927 2004-08-03  Martin Baulig  <martin@ximian.com>
24928
24929         * debug-mono-symfile.c (read_string): Correctly read the string.
24930
24931 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24932
24933         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24934         
24935         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24936         icalls.
24937         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24938
24939 2004-07-30  Martin Baulig  <martin@ximian.com>
24940
24941         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24942         Reflect latest symbol writer changes.   
24943
24944 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24945
24946         * object.c: always create an object if null is passed
24947         to Invoke() where a valuetype is expected.
24948
24949 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24950
24951         * marshal.c (mono_marshal_init): make managed
24952         signatures match native ones better for 64bits.
24953
24954 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24955
24956         * appdomain.c: hack to build correctly the private bin path on windows.
24957         Fixes bug #61991.
24958
24959 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24960
24961         * assembly.c: Load mscorlib from the correct framework directory
24962           (mono/<version>/mscorlib.dll).
24963         * appdomain.h: Added prototypes for new functions.
24964         * internals.h: Added some prototypes.
24965         * domain.c: When initializing the runtime, get from the executable and
24966           the configuration files the runtime version that the app supports.
24967           Added support methods for reading app.exe.config. Added list of versions
24968           supported by the JIT. Added two new methods: mono_init_from_assembly,
24969           which initializes the runtime and determines the required version from
24970           the provided exe file, and mono_init_version, which initializes
24971           the runtime using the provided version.
24972         * icall.c: Get machine.config from version-specific directory.
24973         * reflection.c: When generating an image, embed the version number
24974           of the current runtime.
24975
24976 2004-07-28  Dick Porter  <dick@ximian.com>
24977
24978         * socket-io.c
24979         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24980         returned sockaddr size before creating the remote address object.
24981         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24982         61608.
24983
24984 2004-07-28  Dick Porter  <dick@ximian.com>
24985
24986         * locales.c (string_invariant_compare_char): Fix invariant char
24987         compares between upper and lower cases.  Fixes bug 61458.
24988
24989 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24990         
24991         * marshal.c: actually cache stelem.ref wrappers.
24992         
24993 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24994
24995         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24996         sections and remove the mono_cli_rva_map () function.
24997
24998 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24999
25000         * debug-mono-symfile.c: fix one more endianess issue, from a patch
25001         by Geoff Norton (<gnorton@customerdna.com>).
25002
25003 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25004
25005         * class.c: fix class loads for pointer types (typeof(int) !=
25006         typeof(int*)).
25007
25008 2004-07-27  Martin Baulig  <martin@ximian.com>
25009
25010         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
25011         reading the debugging information from an external ".mdb" file.
25012
25013 2004-07-24  Martin Baulig  <martin@ximian.com>
25014
25015         * reflection.c (mono_image_get_type_info): Only write a class
25016         layout entry if we actually have a size or a packing size.
25017
25018 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25019
25020         * reflection.c (type_get_fully_qualified_name): 
25021         insert cast to get type checking of ?: with non-gcc compilers
25022
25023 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25024
25025         * rand.c: use g_getenv for both lookups of
25026         MONO_EGD_SOCKET
25027
25028 2004-07-17  Martin Baulig  <martin@ximian.com>
25029
25030         * reflection.c (mono_reflection_bind_generic_method_parameters):
25031         Set `gmethod->reflection_info'.
25032
25033 2004-07-17  Martin Baulig  <martin@ximian.com>
25034
25035         * class.c (mono_class_create_from_typedef): Insert the newly
25036         created class into the hash table before computing the interfaces
25037         since we could be called recursively.
25038
25039 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
25040
25041         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
25042         function to implement stelem.ref in managed code
25043         * class-internals.h, debug-helpers.c: a new wrapper type
25044         for the above.
25045
25046 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25047
25048         * gc.c: allow GC handles to work even when no GC is compiled in.
25049         Fix part of bug #61134 (GetAddrOfPinnedObject).
25050
25051 2004-07-13  Peter Williams  <peter@newton.cx>
25052  
25053         * process.c (complete_path): Make sure we don't attempt to execute
25054         directories.
25055  
25056 2004-07-12  Geoff Norton <gnorton@customerdna.com>
25057
25058         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
25059           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
25060           and will add/subtract the hour if needed
25061
25062 2004-07-12  Martin Baulig  <martin@ximian.com>
25063
25064         * reflection.c (mono_field_get_object): If we have
25065         `field->generic_info', take the attributes from
25066         `field->generic_info->generic_type'.    
25067
25068 2004-07-12  Martin Baulig  <martin@ximian.com>
25069
25070         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
25071         This function must be called before initializing the runtime.
25072         (mono_debug_init_1): New function; call this after initializing
25073         the runtime, but before loading the assembly.  It tells the
25074         debugger to load corlib and the builtin types.
25075
25076         * mono-debug-debugger.c: Did some larger changes in the debugging
25077         code; support recursive class declarations, make sure we actually
25078         add all classes.
25079
25080 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25081
25082         * debug-helpers.c: undo my previous patch and fixed the real issue in
25083         ../mini/exceptions-x86.c
25084
25085 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25086
25087         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
25088         when no HOME env. variable was set and a NullRef was thrown in a .cctor
25089         called from other .cctors.
25090
25091 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
25092
25093         * loader.c: Removed the mono_loader_wine_init hack now that we are
25094         doing a managed version of Windows.Forms.
25095
25096 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
25097
25098         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
25099         threadpool.c, threads.c: remove static data from rootset.
25100
25101 2004-07-09  Dick Porter  <dick@ximian.com>
25102
25103         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
25104         Don't do any more processing if the matched length was 0.  It was
25105         increasing the size of the string before.  Fixes bug 61167.
25106
25107 2004-07-09  Dick Porter  <dick@ximian.com>
25108
25109         * socket-io.h:
25110         * socket-io.c
25111         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
25112         Add support for SO_PEERCRED if its available.
25113
25114 2004-07-09  Peter Bartok <pbartok@novell.com>
25115         * loader.c: winelib.exe.so error message is now only displayed if
25116         MONO_DEBUG is set. To help us avoid questions when people are trying
25117         out the new Managed.Windows.Forms.
25118
25119 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
25120
25121         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
25122         for isinst and castclass wrappers.
25123
25124         * class-internals.h icall.c: Move registration and lookup of JIT icalls
25125         to libmetadata from the JIT, so they could be used by the marshalling
25126         code and the interpreter.
25127
25128         * marshal.c: Register marshalling related JIT icalls here instead of
25129         in mini.c. Use CEE_MONO_ICALL instead of the family of 
25130         CEE_MONO_PROC<x> opcodes to call marshalling functions.
25131
25132         * metadata.h: Remove unneeded marshalling conversions.
25133
25134         * opcodes.c: Update for new opcodes.
25135         
25136 2004-07-08  Martin Baulig  <martin@ximian.com>
25137
25138         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
25139         (mono_debug_get_domain_data): Make this function static.
25140
25141 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
25142
25143         * gc.c, object.h: add nice GC handle API for embedders.
25144
25145 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
25146
25147         * reflection.c: more changes for the new api
25148
25149         * object.c: When we reflect on a field w/ a constant value, it
25150         will not have a memory location, so we must access metadata. Also,
25151         allow easier reading of strings so that we can read them from
25152         the constant data.
25153
25154         * class.c (mono_class_layout_fields): no need for literal fields here.
25155
25156         * class-internals.h: api changes for const fields
25157
25158         * icall.c (ves_icall_get_enum_info): use new apis for const fields
25159
25160 2004-07-06  Martin Baulig  <martin@ximian.com>
25161
25162         * mono-debug.h: Increment version number to 44.
25163
25164         * mono-debug.c (mono_debug_add_wrapper): The second argument is
25165         now a gpointer, rewrote this whole method.
25166
25167         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
25168         function.  Add information about the wrapper in a new "misc table".
25169
25170         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
25171         for the new misc table.
25172
25173 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
25174
25175         * metadata-internals.h image.c: Add a cache for helper signatures.
25176
25177         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
25178
25179 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
25180
25181         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
25182         delegates from a delegate. Fixes #61033.
25183         
25184         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
25185         marshalling of stringbuilder arrays. Fixes #59900.
25186
25187 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
25188
25189         * icall.c: Add EnumBuilder:setup_enum_type icall.
25190
25191 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
25192
25193         * icall.c: Added a new icall for the property version of
25194         OffsetOfStringData.
25195
25196 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
25197
25198         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
25199         it has a constant size across platforms.
25200
25201         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
25202         stack trace.
25203
25204 2004-06-29  Martin Baulig  <martin@ximian.com>
25205
25206         * mono-debug.c (mono_debug_add_method): Protect the whole function
25207         in mono_debugger_lock(), not just parts of it.
25208
25209 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25210
25211         * reflection.c: make sure padding bytes in heaps are zeroed.
25212
25213 2004-06-24  David Waite  <mass@akuma.org>
25214
25215         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
25216         image.c, loader.c, locales.c, marshal.c, metadata.c,
25217         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
25218         string-icalls.c, threads.c: change to C90-style comments from C99 /
25219         C++ -style
25220
25221 2004-06-24  Dick Porter  <dick@ximian.com>
25222
25223         * threads.c
25224         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
25225         return createdNew.  Fixes bug 60412.
25226
25227         * threads-types.h: 
25228         * icall.c: Add createdNew parameter to CreateMutex icall
25229
25230 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
25231
25232         * reflection.c, object-internals.h: save default value in params.
25233
25234 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25235
25236         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
25237         no need to build a new path combining that with the application base.
25238         Fixes bug #60442.
25239
25240 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
25241
25242         * reflection.c: fixed minor standard compliance issues.
25243
25244 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
25245
25246         * reflection.c: fixed issue with encoding some custom attributes
25247         (arrays in properties and fields, bug #60411).
25248
25249 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25250
25251         * reflection.c: fix start address when copying the public key token.
25252
25253 2004-06-23  Martin Baulig  <martin@ximian.com>
25254
25255         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
25256         the `exc' object in a static object to put it into the GC's root set.
25257
25258 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
25259
25260         * reflection.c: make mono_reflection_setup_internal_class ()
25261         callable a second time to setup a new parent class.
25262
25263 2004-06-23  Dick Porter  <dick@ximian.com>
25264
25265         * threads.c: Check for WAIT_IO_COMPLETION return values.
25266
25267 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
25268
25269         * appdomain.c: Removed the g_free on the public key token. Now copy 
25270         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
25271         * assembly.c: Added public key token string value when loading 
25272         assemblies. Fix bug #60439.
25273         * icall.c: Added missing informations (like public key) in 
25274         GetReferencedAssemblies. Fix #60519.
25275         * image.h: Changed definition for public key token from const char*
25276         public_tok_value to guchar public_key_token [17];
25277         * reflection.c: Updated for changes to public key token.
25278
25279 2004-06-22  Lluis Sanchez Gual
25280
25281         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
25282         for the field in base classes.
25283
25284 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25285
25286         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
25287         mark headers as not supported, they are installed only for use by the
25288         debugger.
25289
25290 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
25291
25292         * *.c, *.h: avoid namespace pollution in public headers.
25293
25294 2004-06-21  Martin Baulig  <martin@ximian.com>
25295
25296         * exception.c (mono_get_exception_security): It's in
25297         "System.Security", not in "System".
25298
25299         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
25300         the exception classes.
25301
25302 2004-06-21  Martin Baulig  <martin@ximian.com>
25303
25304         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
25305         Protect the exception object from being finalized.
25306
25307 2004-06-21  Martin Baulig  <martin@ximian.com>
25308
25309         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
25310         public function.
25311
25312 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
25313
25314         * reflection.c: Load the assembly in mono_reflection_type_from_name,
25315         if it was not loaded before. Fix parts of #60439.
25316
25317 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
25318
25319         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
25320         code that was broken since Ben's change: wrappers are now
25321         dependent on the method signature only again.
25322
25323 2004-06-21  Martin Baulig  <martin@ximian.com>
25324
25325         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
25326         added interface support.
25327
25328 2004-06-21  Martin Baulig  <martin@ximian.com>
25329
25330         * class.c (mono_vtable_get_static_field_data): New public method.
25331
25332 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
25333
25334         * filewatcher.c : Windows build fix to be compliant with API changes.
25335
25336 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25337
25338         * class.h, class.c: more accessors.
25339         * metadata.h, metadata.c: prepare for hiding MonoType and
25340         MonoMethodSignature: people should use the accessors from now on
25341         outside of the tree.
25342
25343 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25344
25345         * *.c, *.h: more API cleanups.
25346
25347 2004-06-18  Jackson Harper  <jackson@ximian.com>
25348
25349         * assembly.c: Trace loading assemblies.
25350         * loader.c: Trace loading native libraries.
25351         * mono-config.c: Trace loading config files.
25352         
25353 2004-06-18  Dick Porter  <dick@ximian.com>
25354
25355         * locales.c: Tell ICU the lengths of strings, it can cope with
25356         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
25357
25358 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
25359
25360         * image.c: swapped name/filename;
25361
25362 2004-06-18  Martin Baulig  <martin@ximian.com>
25363
25364         * mono-debug-debugger.c (write_class): Write the parent class at
25365         the end of the header.
25366
25367 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25368
25369         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
25370
25371 2004-06-17  Raja R Harinath  <rharinath@novell.com>
25372
25373         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
25374         (bundle_obj): New conditional define.
25375         (BUILT_SOURCES): Remove.
25376         ($(bundle_srcs)): Make parallel-make safe.
25377         (libmonoruntime_la_LIBADD): Make unconditional.
25378         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
25379         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
25380
25381 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
25382
25383         * culture-info-tables.h: It was inconsistent with the latest
25384           supp info files.
25385
25386 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
25387
25388         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
25389         be loaded.
25390
25391         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
25392         with gcc 2.95.
25393
25394 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25395
25396         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
25397         cleaned up public header threads.h.
25398
25399 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
25400
25401         * Makefile.am, *.c, *.h: more API cleanups.
25402
25403 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
25404
25405         * Makefile.am: removed monosn from compilation.
25406         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
25407         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
25408         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
25409         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
25410         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
25411         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
25412
25413 2004-06-15  Jackson Harper  <jackson@ximian.com>
25414
25415         * assembly.c: Make locales lower case when searching the GAC for
25416         assemblies. gacutil will always make locales lowercase when
25417         installing so this effectively makes them case insensitive.
25418         
25419 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
25420
25421         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
25422         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
25423           parameter which allows to choose whether the wait can be interrupted or 
25424           not. Also added the method mono_monitor_enter(), which locks the monitor
25425           using an infinite wait and without allowing interruption.
25426           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
25427           interrupted.
25428         * object.h: Added new fields in MonoThread. suspend_event holds the event
25429           used to susped/resume the thread. synch_lock is the lock object to use for
25430           modifying the thread state.
25431         * threads.c: Use the new synch_lock object for locking, instead of "this",
25432           which can generate deadlocks.
25433           Moved thread state change in Thread.Sleep and Thread.Join from managed
25434           to unmanaged code. This avoids a deadlock when the thread was suspended
25435           just after acquiring the thread lock.
25436           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
25437           Implemented Thread.Suspend using an event instead of ThreadSuspend,
25438           which is not fully implemented in the io-layer.
25439         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
25440
25441 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
25442
25443         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
25444         threads-types.h: more API cleanups.
25445
25446 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25447
25448         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
25449         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
25450         threadpool.c, threads.c: first pass at the exported API cleanup.
25451
25452 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
25453
25454         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
25455
25456 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25457
25458         * icall.c: added internalGetHome.
25459
25460 2004-06-14  Dick Porter  <dick@ximian.com>
25461
25462         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
25463         possible to return successfully when '.' or '..' were the only
25464         entries in a directory, but were skipped.  The MonoIOStat was not
25465         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
25466         Fixes bug 59574.
25467
25468 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25469
25470         * reflection.c: make binaries run on .Net 1.1 by default.
25471
25472 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25473
25474         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
25475
25476 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
25477
25478         * marshal.c: keep track of struct size with explicit layout
25479         (bug #59979).
25480
25481 2004-06-12  Martin Baulig  <martin@ximian.com>
25482
25483         * mono-debug-debugger.c: Comment out a debugging g_message().
25484
25485 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25486
25487         * reflection.c, reflection.h: do not free custom attrs that are cached.
25488         * icall.c: use braces to make code clearer.
25489
25490 2004-06-11  Martin Baulig  <martin@ximian.com>
25491
25492         * class.h (MonoInflatedField): New type.
25493         (MonoClassField): Replaced `MonoType *generic_type' with
25494         `MonoInflatedField *generic_info'.
25495
25496         * icall.c
25497         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
25498
25499 2004-06-11  Martin Baulig  <martin@ximian.com>
25500
25501         * reflection.c (mono_image_create_method_token): Correctly encode
25502         varargs methods.
25503
25504 2004-06-11  Martin Baulig  <martin@ximian.com>
25505
25506         * metadata.c (mono_metadata_parse_method_signature): When parsing
25507         a MethodDef which has VarArgs, also set sentinelpos if we don't
25508         have any parameters.
25509
25510 2004-06-11  Martin Baulig  <martin@ximian.com>
25511
25512         * verify.c (mono_method_verify): In CEE_CALL, use
25513         mono_method_get_signature() to get the method's signature, unless
25514         we're a PInvoke method.
25515
25516 2004-06-10  Jackson Harper  <jackson@ximian.com>
25517
25518         * assembly.c: Use <path>/lib/mono/gac for the extra paths
25519         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
25520         logical name as the supplied path is just a prefix to the gac not
25521         the direct path to it.
25522         
25523 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
25524
25525         * reflection.c: make the token for a created method match
25526         the token of the MethodBuilder it was created from
25527         (IKVM requires this behaviour now).
25528
25529 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
25530
25531         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
25532         reflection.c, socket-io.c: leak fixes.
25533
25534 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
25535
25536         * icall.c: handle sentinel pos in vararg methods in position different
25537         from 0.
25538
25539 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25540
25541         * culture-info-tables.h: freshly generated.
25542
25543 2004-06-09  Martin Baulig  <martin@ximian.com>
25544
25545         * loader.c (mono_get_method_constrained): Call `mono_class_init
25546         (constrained_class)'.   
25547
25548 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
25549
25550         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
25551         any methods. Fixes #59629.
25552
25553 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25554
25555         * culture-info-tables.h: reflecting locale-builder updates.
25556
25557 2004-06-08  Dick Porter  <dick@ximian.com>
25558
25559         * object.h:
25560         * locales.c: Fixed compile warnings, including a real bug in
25561         CompareInfo_internal_compare.
25562         
25563 2004-06-08  Dick Porter  <dick@ximian.com>
25564
25565         * locales.c
25566         (ves_icall_System_Globalization_CompareInfo_internal_index):
25567         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25568         Double-check the resuls of usearches, because ICU currently
25569         ignores most of the collator settings here.  Fixes bug 59720.
25570         
25571 2004-06-08  Dick Porter  <dick@ximian.com>
25572
25573         * locales.c
25574         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25575         Fix memory leak and segfault-causing typo.  No idea how this one
25576         lasted so long without being noticed.
25577
25578 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
25579
25580         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
25581         any methods. Fixes #59629.
25582
25583 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25584
25585         * assembly.c:
25586         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
25587         own the critical section before). Removed dead code (that's done
25588         in the preload hook).
25589
25590         (mono_assembly_load_with_partial_name): call the preload hook.
25591
25592 2004-06-08  Martin Baulig  <martin@ximian.com>
25593
25594         * metadata.c (mono_metadata_signature_alloc): Default
25595         `sentinelpos' to -1.
25596
25597         * reflection.c (mono_image_get_array_token): Likewise.
25598
25599 2004-06-08  Martin Baulig  <martin@ximian.com>
25600
25601         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
25602
25603         * metadata.c (mono_metadata_parse_method_signature): When parsing
25604         a MethodDef which has VarArgs, set sentinelpos.
25605
25606         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
25607         `gint16' since we're using -1 for non-varargs methods.
25608
25609         * reflection.c
25610         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
25611         (method_encode_signature): Added varargs support.
25612         (method_builder_encode_signature): Likewise.
25613         (mono_image_get_varargs_method_token): New static method.
25614         (mono_image_create_method_token): New public method; this is
25615         called via an icall instead of mono_image_create_token() when
25616         calling a varargs method.       
25617
25618 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
25619
25620         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
25621
25622 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25623
25624         * culture-info-tables.h : Reflecting the latest locale-builder that
25625           fixed empty array representation ({} to {0}).
25626
25627 2004-06-07  Jackson Harper  <jackson@ximian.com>
25628
25629         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
25630         looking up extra gac paths. This allows MONO_GAC_PATH to act
25631         exactly like a prefix.
25632         
25633 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25634
25635         * reflection.c (mono_reflection_type_from_name): Make a copy of the
25636         type name before modifying it. Fixes #59405.
25637
25638 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25639
25640         * culture-info.h: added fields for "all datetime patterns".
25641         * locales.c: (  ves_icall_System_Globalization_CultureInfo
25642           _construct_datetime_format ()): fill xxx_patterns fields.
25643         * object.h: added fields for "all datetime patterns" to
25644           MonoDateTimeFormatInfo.
25645         * culture-info-tables.h: reflecting locale-builder updates.
25646
25647 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25648
25649         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
25650         the event has no add and remove methods. Fixes #59629.
25651
25652 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
25653
25654         * object.c: Fixed possible integer overflow when allocating large
25655         strings.
25656
25657 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25658
25659         * culture-info-tables.h: reflecting locale-builder updates.
25660
25661 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25662
25663         * culture-info-tables.h: reflecting locale-builder updates.
25664
25665 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
25666
25667         * culture-info-tables.h: reflecting locale-builder updates.
25668
25669 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
25670
25671         * threads.c: Made Thread.Sleep abortable.
25672
25673 2004-06-02  Martin Baulig  <martin@ximian.com>
25674
25675         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
25676
25677         * debug-mono-symfile.h: Bumped symbol file version number to 37.
25678
25679 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
25680
25681         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
25682
25683 2004-05-30  Jackson Harper  <jackson@ximian.com>
25684
25685         * reflection.c: Do not hardcode assembly versions or public key
25686         tokens anymore. All of this except the corlib section was dead
25687         code anyways.
25688         
25689 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
25690
25691         * object.c (mono_runtime_invoke_array): Automatically create boxed
25692         objects for byref valuetypes if needed. Fixes #59300.
25693         
25694         * object.c (mono_method_return_message_restore): Handle 
25695         MONO_TYPE_OBJECT as well.
25696
25697 2004-05-28  Jackson Harper  <jackson@ximian.com>
25698
25699         * reflection.c: The modified type encoding was causing build
25700         problems. Reverted for now.
25701         
25702 2004-05-28  Jackson Harper  <jackson@ximian.com>
25703
25704         * reflection.c/h: Take an assembly ref so that we dont create
25705         fully qualified names when encoding types in the same assembly as
25706         the custom attribute being emitted.
25707         * appdomain.c: Increment version number.
25708         
25709 2004-05-26  Duncan Mak  <duncan@ximian.com>
25710
25711         * icall.c
25712         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
25713         Set the full version number (major, minor, build, revision).
25714
25715 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
25716
25717         * marshal.c (emit_struct_conv): increment src/dst after blit
25718         (mono_marshal_get_managed_wrapper,
25719         mono_marshal_get_native_wrapper): make sure we have marshalling
25720         info before marshalling params (info computation affects
25721         blittable)
25722
25723         * class.c (class_compute_field_layout): correctly deal with
25724         blittable
25725         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
25726         value types (as per what windows dows by default)
25727         (mono_class_setup_mono_type): System.ValueType is blittable
25728         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
25729         blittable
25730
25731         * marshal.c (mono_marshal_load_type_info): flag types  as
25732         non-blittable if the native layout doesn't match the managed
25733         layout
25734
25735 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25736
25737         * appdomain.c: don't add stuff in the private search path that is
25738         above the application base. If application base is not set, there's
25739         no private search path.
25740
25741 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
25742
25743         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
25744         byref struct arguments in native->managed marshalling.
25745
25746 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
25747
25748         * marshal.c (mono_marshal_get_runtime_invoke): correctly
25749         cache methods using signature (special case for methods
25750         that are value type or string class)
25751         
25752         * image.c (mono_image_close): clean up allocated GSList's
25753         in runtime_invoke_cache.
25754
25755 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25756
25757         * mono-config.c: set the correct path for mono_cfg_dir on windows when
25758         there's no MONO_CFG_DIR environment variable defined.
25759
25760 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25761
25762         * threads.c: windows version must be >= 0x0500 to include OpenThread.
25763
25764 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
25765
25766         * threadpool.c: Really wait for 500ms after the async call, even if the wait
25767           is interrumped.
25768         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
25769           before waiting for it, and call CloseHandle after the wait to unref it.
25770           This will make sure that handles are not disposed too early.
25771
25772 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25773
25774         * appdomain.c:
25775         * appdomain.h:
25776         * icall.c: removed
25777         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
25778         needed now.
25779
25780         * object.c: se the application_base only for the domain that runs
25781         Main. Fixes bug #59216,
25782
25783 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25784
25785         * appdomain.c:
25786         * object.c: only the domain in which Main is run have
25787         SetupInformation.ConfigurationFile set, so moved a few lines from
25788         appdomain.c to object.c.
25789
25790 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25791
25792         * appdomain.c: we tried to load [name].(dll|exe), but according
25793         to bug #57710, we must also try [culture]/[name].(dll|exe) and
25794         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
25795         There's a test case attached to bug #58922.
25796
25797 2004-05-27  Dick Porter  <dick@ximian.com>
25798
25799         * icall.c:
25800         * file-io.c: Implemented icalls for locking and unlocking regions
25801         in a file.
25802         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
25803         FALSE on error (fixes both compiler warning and real bug.)
25804
25805 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
25806
25807         * culture-info-tables.h: reflecting locale-builder updates.
25808
25809           (Added missing ChangeLog entry for 05/26)
25810
25811 2004-05-27  Jackson Harper  <jackson@ximian.com>
25812
25813         * locales.c: Fix some cut and paste errors.
25814         
25815 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25816
25817         * mono-config.c: set the correct path for config. directory on windows.
25818
25819 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25820
25821         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
25822           on win32.
25823
25824 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25825
25826         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
25827         from pinvoke functions.
25828         
25829         * marshal.c (mono_ftnptr_to_delegate): Implement this.
25830
25831 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25832
25833         * culture-info-tables.h: reflecting locale-builder updates.
25834
25835 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25836
25837         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25838         #59086.
25839
25840 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25841
25842         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25843         * icall.c: Modified icalls for RNG.
25844         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25845         Windows (CryptoAPI).
25846
25847 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25848
25849         * locales.c: Fix build.
25850
25851 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25852
25853         * culture-info-tables.h: reflecting locale-builder updates.
25854
25855 2004-05-25  Jackson Harper  <jackson@ximian.com>
25856
25857         * locales.c: When creating the current culture use the $LANGs
25858         specific culture. So DateTimeFormat and NumberFormat entries are created.
25859         
25860 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25861
25862         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25863         a char array as parameter.
25864
25865 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25866
25867         * image.c: In mono_image_open(), always use an absolute path name to
25868           look for already loaded images.
25869
25870 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25871
25872         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25873         missing in the windows build (like older cygwin include files).
25874
25875 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25876
25877         * icall.c: Fixed check for possible integer overflow in Buffer_
25878         BlockCopy icall. Replaced comments style // by /* */.
25879
25880 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25881
25882         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25883         
25884         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25885         check after MONO_VTADDR. Fixes pinvoke2.exe.
25886
25887         * marshal.h marshal.c metadata.h: Add beginnings of support for
25888         ftnptr -> delegate marshalling.
25889
25890 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25891
25892         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25893         * threads.c: Fix warnings.
25894
25895 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25896
25897         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25898         * icall.c: Registered icalls for Suspend and Resume.
25899         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25900           Thread.Abort.
25901         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25902         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25903         * process.c: Use WaitForSingleObjectEx.
25904         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25905           checkpoints.
25906         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25907           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25908           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25909           background threads. Added basic support for Abort in Windows.
25910           Start new threads using a managed delegate invoke wrapper. This wrapper
25911           has an interruption checkpoint that is needed since an interruption
25912           can be requested before the thread leaves the unmanaged code that starts 
25913           the thread.
25914         * marshal.c: Added interruption checkpoint after every native call, and
25915           also before managed calls for wrappers called from unmanaged code to
25916           go into managed code.
25917         * object.h: Added new field in MonoThread to keep track of interruption
25918           requests.
25919
25920 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25921
25922         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25923         calls.
25924
25925 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25926
25927         * appdomain.c:
25928         * assembly.c:
25929         * gc.c:
25930         * locales.c:
25931         * mono-config.c:
25932         * rand.c: getenv -> g_getenv (windows!)
25933
25934         * process.c: complete_path is also used on non-windows platforms.
25935
25936 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25937
25938         * icall.c: new signature for Process_Start.
25939
25940         * process.[ch]: new signature for Process_Start. If we're on windows
25941         and UseShellExecute is false, we have to search for the program by
25942         ourselves if we don't get a full path.
25943
25944 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25945
25946         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25947         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25948
25949 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25950
25951         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25952         Fixes bug #58373.
25953
25954 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25955
25956         * process.c: use double quotes to quote program name and arguments on
25957         windows. Fixes bug #58575.
25958
25959 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25960
25961         * file-io.c: don't return "." and ".." when using windows Find*File.
25962
25963 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25964
25965         * marshal.c: Don't pass wrappers to message init because method 
25966         addressed used to lookup metadata. part of remoting[2|3] fix.
25967
25968 2004-05-15  Jackson Harper  <jackson@ximian.com>
25969
25970         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25971         path is essentially the same as MONO_PATH except that it points to
25972         GACs instead of lib directories.
25973         * loader.h: The user gac is gone so we dont need function to
25974         enable/disable it.
25975         * mono-config.c: user gac option is now gone.
25976         
25977 2004-05-15  Jackson Harper  <jackson@ximian.com>
25978
25979         * culture-info.h: Make defines more consistent, add calendar data
25980         to the culture info table.
25981         * culture-info-tables.h: Add basic calendar data. Basically
25982         everyone gets default gregorian until all the data is
25983         updated.
25984         * locales.c: Use the new consistent defines. Set calendar data for
25985         culture info objects.
25986         * object.h: add a field for calendar data to CultureInfo
25987         
25988 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25989
25990         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25991         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25992         a signature.
25993         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25994         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25995         an extra param that is the pointer of the method to invoke. The IL for
25996         the invoke method is no longer specific to the method, but to the
25997         signature of the method. Thus, we can share the same code for multiple
25998         methods. This reduces the number of methods that have to be compiled.
25999
26000 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
26001
26002         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
26003
26004         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26005
26006         * icall.c: Optimize Buffer.BlockCopy.
26007
26008 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26009
26010         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
26011         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
26012         quote). Changed them to "MMMM yyyy".
26013
26014 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
26015
26016         * rand.c
26017         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
26018
26019 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
26020
26021         * reflection.h: Updated after changes to managed structures.
26022
26023         * appdomain.c: Bump corlib version.
26024
26025 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26026
26027         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
26028         windows.
26029
26030 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26031
26032         * Makefile.am: link to ../os/libmonoos.la on windows.
26033
26034         * assembly.c:
26035                 -If MONO_DEBUG, warn about non-existing directories in
26036                 MONO_PATH.
26037                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
26038                 compile time variable.
26039                 -Removed init_default_path and call mono_set_rootdir from
26040                 libmonoos.a instead (windows only).
26041
26042         * assembly.h: declare mono_assembly_getrootdir().
26043
26044         * domain.c:
26045         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
26046
26047         * loader.c: s/getenv/g_getenv/
26048
26049 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
26050
26051         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
26052
26053         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
26054
26055         * metadata.h: Add new marshalling conversions.
26056
26057         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
26058         function.
26059
26060         * reflection.c (mono_reflection_get_type): Lookup the type in all
26061         modules of a multi-module assembly. Fixes #58291.
26062
26063 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
26064
26065         * threads.c: Before aborting a background, set the StopRequested
26066         state.  This avoids throwing the Abort exception.
26067         In mono_thread_manage, don't continue with the shutdown until all
26068         aborted threads have actually stopped.
26069
26070 2004-05-10  Jackson Harper  <jackson@ximian.com>
26071
26072         * locales.c: Remove the modifier from culture names.
26073         
26074 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26075
26076         * Makefile.am: monosn is not installed any more. It has been deprecated
26077         in favor of sn.
26078
26079 2004-05-07  Jackson Harper  <jackson@ximian.com>
26080
26081         * locales.c
26082         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
26083         Fix array construction, add bailout if the length is 0.
26084
26085 2004-05-07  Dick Porter  <dick@ximian.com>
26086
26087         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
26088         machine doesn't have a DNS entry.  Patch by Urs Muff
26089         (umuff@quark.com), fixes bug 57928.
26090
26091 2004-05-06  Jackson Harper  <jackson@ximian.com>
26092
26093         * reflection.c: Handle null PublicTokens properly. alloc mem for
26094         assembly names culture so we dont crash when freeing it.
26095         
26096 2004-05-06  Jackson Harper  <jackson@ximian.com>
26097
26098         * assembly.c: Check the usergac when loading with partial names.
26099         
26100 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
26101
26102         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
26103         does nothing for now (not required for Linux/Windows) but the class
26104         library can call it (and a newer or modified runtime could need it).
26105         * icall.c: Registred icall.
26106
26107 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26108
26109         * loader.c: prints a message on module loading error we set MONO_DEBUG
26110         environment variable.
26111
26112 2004-05-05  Jackson Harper  <jackson@ximian.com>
26113
26114         * appdomain.c: Handle PublicKeyToken=null properly.
26115         
26116 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
26117
26118         * environment.c|h: Added icall ves_icall_System_Environment_
26119         GetOSVersionString to get the current OS version as a string.
26120         * icall.c: Registred icall.
26121
26122 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
26123
26124         * object.c: in mono_object_get_virtual_method(), take into account that
26125         non-virtual methods don't have a slot in the vtable. Check needed when
26126         the object is a proxy.
26127
26128 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
26129
26130         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
26131         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
26132
26133         * object.c (mono_class_compute_gc_descriptor): Fix warning.
26134
26135         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
26136         passed when a valuetype is expected.
26137
26138         * object.c (mono_unhandled_exception): Only set the exit code if the
26139         exception happens in the main thread. Fixes thread5.exe.
26140
26141         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
26142         invalid names. Fixes #58047.
26143
26144 2004-05-03  Jackson Harper  <jackson@ximian.com>
26145
26146         * assembly.c: This line was committed accidently and is unneeded.
26147         
26148 2004-05-03  Jackson Harper  <jackson@ximian.com>
26149
26150         * icall.c: Add new icall for Assembly::LoadWithPartialName
26151         * assembly.c/.h: new function that probes the GAC to load partial
26152         assembly names by Paolo Molaro.
26153         
26154 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26155
26156         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
26157         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
26158         (type_get_fully_qualified_name): Added PublicKeyToken when building a
26159         full type name.
26160
26161 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26162
26163         * appdomain.c: fixed check for 'neutral' culture and removed warning.
26164         * reflection.c: fix bug when parsing a full type name and Version is not
26165         the last thing in the string.
26166
26167 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
26168
26169         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
26170         crashes when it is freed.
26171
26172 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26173
26174         * assembly.c: print the compat warning to stderr.
26175
26176 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
26177
26178         * assembly.c (mono_assembly_load_references): Add a compatibility
26179         hack to run old applications that might be still referencing the
26180         3300-based assemblies, only do this for System.xxx.
26181
26182 2004-05-01  Jackson Harper  <jackson@ximian.com>
26183
26184         * appdomain.c: If the culture is neutral we set it to "".
26185         
26186 2004-04-29  Jackson Harper  <jackson@ximian.com>
26187
26188         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
26189
26190 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
26191  
26192         * string-icalls.c: added low overhead function for copying chars
26193         * icall.c: added needed icall for the above function
26194  
26195 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26196
26197         * icall.c: fix return value of get_global_assembly_cache.  Implemented
26198         Environment.GetLogicalDrives.
26199
26200 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
26201
26202         * rand.c: try and talk to egd or prngd
26203         for random bytes if opening devices fail.
26204
26205 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
26206
26207         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
26208         alignment for the type using the native alignment of its members 
26209         instead of using klass->min_align.
26210
26211         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
26212
26213 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26214
26215         * file-io.c:
26216         * socket-io.c: added check for sys/aio.h.
26217
26218 2004-04-28  Dick Porter  <dick@ximian.com>
26219
26220         * threads.c: Don't abort a thread thats already aborting, when
26221         terminating everything.
26222
26223 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26224
26225         * icall.c: added 2 new async calls for Socket.
26226
26227         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
26228         IO on *nix systems.
26229
26230         * threadpool.c: removed unused variable.
26231
26232 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
26233
26234         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
26235
26236 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26237
26238         * locales.c: put back string_invariant_tolower () and
26239         string_invariant_toupper ().
26240
26241 2004-04-26 David Waite <mass@akuma.org>
26242
26243         * file-io.h:
26244         * socket-io.h:
26245         * threads.h:
26246         * unicode.h: remove comma from end of enumeration declarations
26247
26248 2004-04-26 David Waite <mass@akuma.org>
26249
26250         * debug-mono-symfile.h:
26251         * decimal.c:
26252         * mono_debug.h:
26253         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
26254
26255
26256 2004-04-26  Jackson Harper  <jackson@ximian.com>
26257
26258         * appdomain.c: Increment version number.
26259         
26260 2004-04-26  Jackson Harper  <jackson@ximian.com>
26261
26262         * appdomain.c: Set assembly references public token value when
26263         PublicKeyToken is specified, not the hash_value. Free public token
26264         values when free assembly name data. Previously the public key
26265         token was hex decoded, however we are using hex encoded public key
26266         tokens, so this is not neccasary.
26267         * assembly.c: Lookup assemblies in the gac if their public token
26268         value is set. Add function to allow enabling user gac
26269         lookups. Specify whether or not the assembly was loaded from the
26270         GAC. Compare full assembly names when checking the cache for
26271         assemblies (Temporarily disabled see comment in code). Remove
26272         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
26273         specifies trace-loader they get extra info to stdout on the
26274         loading of assemblies.
26275         * image.h: Add a field for an assembly references public token
26276         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
26277         whether an assembly has been loaded from the GAC.
26278         * image.c: Remove a corlib -> mscorlib name mapping.
26279         * loader.h: Add function to enable/disable the user gac.
26280         * mono-config.c: Check if the usergac is enabled in the config
26281         file.
26282         * icall.c: New icall to determine whether or not an assembly has
26283         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
26284         * tabldefs.h: Add constant for assemblyref flag that specifies a
26285         full public key is used instead of a public token.
26286         * reflection.c: Remove mscorlib -> corlib mappings. Set
26287         PublicTokenValue instead of hash value. This value is a hex
26288         string so it does not need to be expanded.
26289
26290 2004-04-26  Martin Baulig  <martin@ximian.com>
26291
26292         * mono-debug-debugger.c (mono_debugger_initialize): Set
26293         `mono_debugger_initialized' before calling mono_debug_lock().
26294
26295 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
26296
26297         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
26298           InternalToUpper/InternalToLower.
26299         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
26300           removed invariant culture shortcut.  This is now done in managed code.
26301         * locales.c: (string_invariant_toupper/tolower) removed.
26302
26303 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26304
26305         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
26306         Added Poll internal call.
26307
26308         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
26309         call for Poll. Select was too heavy for polling a single socket.
26310
26311         * threadpool.[ch]: added mono_threadpool_cleanup.
26312         * threads.c: use it. Don't use Thread_Abort on windows.
26313
26314 2004-04-23  Martin Baulig  <martin@ximian.com>
26315
26316         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
26317
26318 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
26319
26320         * icall.c: Registred new icalls for key pair protection and added an
26321         icall for Environment.GetFolderPath on Windows.
26322         * security.c|h: Added new icalls for key pair protection.
26323
26324 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26325
26326         * socket-io.c: don't display the non-supported family warning for known
26327         families. Now this is not displayed on windows when checking support
26328         for IPv4/IPv6.
26329
26330 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26331
26332         * class.c: don't display the layout warning for static fields.
26333
26334 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
26335
26336         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
26337         * locales.c, locales.h: Added new icalls for culture-specific
26338         Char.ToLower and Char.ToUpper.
26339
26340 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26341
26342         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
26343         by David Waite.
26344
26345 2004-04-20  Martin Baulig  <martin@ximian.com>
26346
26347         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
26348         of the type name before passing it to mono_reflection_type_from_name().
26349
26350 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
26351
26352         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
26353         encodings here. Fixes #56965.
26354
26355 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
26356
26357         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26358         fix test on strstr result not that I can see anything that
26359         relies on the result.
26360
26361 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
26362
26363         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
26364         Fixes #57081.
26365
26366         * marshal.c (mono_marshal_get_string_encoding): New helper function.
26367
26368         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
26369         function to determine which marshalling to use for strings. Fixes
26370         #56965.
26371
26372         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
26373
26374         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
26375
26376 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
26377
26378         * icall.c: #include mono-config.h
26379
26380 2004-04-15  Jackson Harper  <jackson@ximian.com>
26381
26382         * culture-info-tables.h: Fix date formats for en-US culture.
26383         
26384 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
26385
26386         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
26387         ThreadPool.SetMinThreads.
26388         * threadpool.c: Implemented ThreadPool.GetMinThreads and
26389         ThreadPool.SetMinThreads.
26390
26391 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26392
26393         * mono-config.c: also load the .config file in the directory
26394         where the assembly was found.
26395
26396 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
26397
26398         * assembly.c: load per-assembly config files.
26399         * icall.c: decrapified code to get the config dir and moved to
26400         mono-config.c.
26401         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
26402         per-assembly config files. When doing a dll map lookup give precedence
26403         to the per-assembly data.
26404
26405 2004-04-14  Martin Baulig  <martin@ximian.com>
26406
26407         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
26408         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
26409         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
26410
26411         * mono-debugger-debugger.c: While the debugger is locked, remember
26412         whether the symbol tables have changes and send one single
26413         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
26414
26415 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
26416
26417         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
26418
26419         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
26420         function.
26421
26422         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
26423         account when marshalling string arrays. Fixes #56965.
26424
26425 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
26426
26427         * icall.c: Add new icalls mapping for security.
26428         * security.c|h: Add internal calls for WindowsIdentity,
26429         WindowsImpersonationContext and WindowsPrincipal.
26430
26431 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
26432
26433         * class.c: Added comment to ensure the System.MonoDummy class
26434         is removed when no longer necessary
26435
26436 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
26437
26438         * appdomain.c: Pass arguments to the bootstraping exceptions to
26439         minimize JITed methods at boot
26440
26441         * metadata.c (mono_exception_from_name_two_strings): Allow for the
26442         second string to be null.
26443
26444         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26445         Change the protocol to minimize the JIT methods at startup.  Now
26446         it Returns the internal codepage, if the value of "int_code_page"
26447         is 1 at entry, and we can not compute a suitable code page
26448         number, returns the code page as a string.
26449
26450 2004-04-13  Jackson Harper  <jackson@ximian.com>
26451
26452         * culture-info-tables.h: Fix number of decimal digits for all
26453         english locales.
26454
26455 2004-04-13  Jackson Harper  <jackson@ximian.com>
26456
26457         * icall.c: Clairfy out of sync error message. It is not always
26458         your corlib that is out of sync.
26459
26460 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
26461
26462         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
26463         properties when only the set accessor is overriden. Fixes #55874.
26464
26465 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
26466
26467         * assembly.c (mono_assembly_load_references): Make this thread safe.
26468         Fixes #56327.
26469
26470 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
26471
26472         * monosn.c: Add missing initialization calls.
26473
26474 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
26475
26476         * locales.c:
26477         ves_icall_System_Globalization_CultureInfo_construct_number_format
26478         Fix g_assert so it compiles on fussier compilers re int/ptr
26479         mismatch
26480
26481 2004-04-08  Dick Porter  <dick@ximian.com>
26482
26483         * socket-io.h:
26484         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
26485         53992.  Also rearrange the code so that the internal calls return
26486         an error value and exceptions are thrown from managed code.
26487
26488         * icall.c: Add type info to the socket icalls.
26489
26490 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26491
26492         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
26493         owes me a beer.
26494
26495 2004-04-07  Martin Baulig  <martin@ximian.com>
26496
26497         * class.c (mono_class_from_generic_parameter): Don't default
26498         `klass->parent' to `mono_defaults.object_type'.
26499
26500 2004-04-07  Martin Baulig  <martin@ximian.com>
26501
26502         * reflection.c (mono_reflection_initialize_generic_parameter): Set
26503         `param->pklass->reflection_info'.       
26504
26505 2004-04-07  Jackson Harper  <jackson@ximian.com>
26506
26507         * culture-info-tables.h: Fix date separator symbol.
26508         
26509 2004-04-07  Martin Baulig  <martin@ximian.com>
26510
26511         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
26512         from System.Type to System.MonoType.
26513
26514 2004-04-07  Martin Baulig  <martin@ximian.com>
26515
26516         * reflection.h
26517         (MonoReflectionGenericParam): Added `has_reference_type' and
26518         `has_value_type' fields.
26519
26520         * reflection.c (mono_image_get_generic_param_info): Encode the
26521         correct flags if we have the `class' or `struct' constraint.
26522
26523 2004-04-07  Martin Baulig  <martin@ximian.com>
26524
26525         * reflection.h
26526         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
26527
26528 2004-04-07  Jackson Harper  <jackson@ximian.com>
26529
26530         * appdomain.c: Revert extra patches, just wanted to bump the
26531         version number.
26532         
26533 2004-04-07  Jackson Harper  <jackson@ximian.com>
26534
26535         * Makefile.am: Add culture-info private headers.
26536         * icall.c: Add new icalls for contructing locales.
26537         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
26538         * locales.h: Declare new culture info construction methods.
26539         * object.h: Add new fields used to avoid the CultureMap to
26540         MonoCultureInfo.
26541         * culture-info.h: Definition of structs used in the culture info
26542         tables.
26543         * culture-info-tables.h: Autogenerated tables that contain culture
26544         info data. This file was generated with the locale-builder tool.
26545         * appdomain.c: Incement corlib version number.
26546         
26547 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
26548
26549         * appdomain.c: (mono_runtime_init) move mono_thread_init
26550         to before mono_object_new calls so critical sections
26551         are initialized before use.
26552
26553 2004-04-07  Martin Baulig  <martin@ximian.com>
26554
26555         * icall.c
26556         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
26557         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
26558         (ves_icall_MonoGenericParam_initialize): Removed.
26559         (monogenericparam_icalls): Removed.
26560         (generictypeparambuilder_icalls): Added new table for
26561         System.Reflection.Emit.GenericTypeParameterBuilder.
26562
26563         * reflection.c
26564         (mono_reflection_define_generic_parameter): Removed.
26565         (mono_reflection_initialize_generic_parameter): This is now called
26566         from GenericTypeParameterBuilder's .ctor.
26567
26568 2004-04-06  Martin Baulig  <martin@ximian.com>
26569
26570         * class.c (mono_class_init): Don't inflate nested classes in a
26571         generic instance.
26572         (mono_type_get_name_recurse): Include the generic arguments for
26573         generic instances and generic type declarations.
26574         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
26575         (_mono_class_get_instantiation_name): Removed.
26576         (mono_class_create_generic): Always use `gklass->name' as our name.
26577
26578         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
26579
26580         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
26581         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
26582         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
26583         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
26584         closed generic methods here.
26585
26586         * reflection.c
26587         (mono_reflection_generic_inst_get_nested_types): Removed.
26588         (inflate_mono_method): Copy the generic parameters from the
26589         MonoMethodHeader into out MonoGenericMethod.
26590
26591 2004-04-06  Martin Baulig  <martin@ximian.com>
26592
26593         * row-indexes.h
26594         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
26595
26596         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
26597
26598         * reflection.c (build_compressed_metadata): If we have any entries
26599         in the GenericParam, MethodSpec or GenericParamConstraint tables,
26600         set the header version to 1.1.
26601
26602 2004-04-06  Martin Baulig  <martin@ximian.com>
26603
26604         * class.c (mono_class_init): If we're a generic instance,
26605         initialize our nested classes, too.
26606         (_mono_class_get_instantiation_name): Deal with the new `!%d'
26607         suffix. 
26608
26609 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26610
26611         * process.c: quote the argument passed to the shell on windows.
26612
26613 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
26614
26615         * threads.c (mono_alloc_special_static_data): Allow this to be
26616         called during startup.
26617
26618 2004-04-02  Martin Baulig  <martin@ximian.com>
26619
26620         * icall.c
26621         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
26622
26623 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
26624
26625         * icall.c: Fix build.
26626
26627 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
26628
26629         * Makefile.am: Added security.c|h.
26630         * icall.c: Added icall for get_UserName;
26631         * security.c: New file for security related icalls. Added function
26632         get_UserName for System.Environment (fix #56144).
26633         * security.h: New. Header file for security.c
26634
26635 2004-04-02  Dick Porter  <dick@ximian.com>
26636
26637         * icall.c: Deleted the icalls that were obsoleted some time ago
26638         by the ICU string code, and which were mixed into the icall
26639         rearranging.  Fixes bug 55969.
26640
26641         * string-icalls.h: 
26642         * string-icalls.c: Deleted the code that those icalls reference.
26643
26644 2004-04-01  Martin Baulig  <martin@ximian.com>
26645
26646         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
26647
26648         * class.c (mono_class_from_generic_parameter): Don't set 
26649         TYPE_ATTRIBUTE_INTERFACE.
26650         (my_mono_class_from_generic_parameter): Likewise.
26651
26652 2004-04-01  Martin Baulig  <martin@ximian.com>
26653
26654         * loader.c (find_method): Added an optional `MonoClass *ic'
26655         argument to search in a specific interface.
26656         (mono_get_method_constrained): New public function.
26657
26658 2004-04-01  Martin Baulig  <martin@ximian.com>
26659
26660         * reflection.c (mono_image_get_generic_field_token): Use the
26661         `handleref' cache here.
26662
26663 2004-04-01  Martin Baulig  <martin@ximian.com>
26664
26665         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
26666
26667         * reflection.c (create_generic_typespec): Use the `typespec' hash
26668         here, not the `typeref' one.    
26669
26670 2004-04-01  Martin Baulig  <martin@ximian.com>
26671
26672         * class.c (mono_class_inflate_generic_type): Moved the
26673         functionality into a new static inflate_generic_type() which
26674         returns NULL if it didn't do anything.  Only increment the
26675         `mono_stats.inflated_type_count' if we actually inflated
26676         something.
26677         (mono_class_get_full): Check the classes type to see whether we
26678         need to inflate it; also inflate MONO_TYPE_(M)VAR.
26679
26680 2004-04-01  Jackson Harper  <jackson@ximian.com>
26681
26682         * reflection.c: Set culture for assembly references.
26683         
26684 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
26685
26686         * reflection.[ch], icall.[ch], Fix support for pinning variables.
26687
26688 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26689
26690         * assembly.c:
26691         (do_mono_assembly_open): the critical section also covers
26692         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
26693
26694 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26695
26696         * threads.c:
26697         (mono_manage_threads): abort the background threads when finishing.
26698         Fixes bug #47232.
26699
26700 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26701
26702         * gc.c: only close the done_event handle if there was no timeout.
26703         C-ified comments.
26704
26705 2004-03-30  Martin Baulig  <martin@ximian.com>
26706
26707         * icall.c (icall_entries): It's called "System.Activator", not
26708         "System.Activation".    
26709
26710 2004-03-30  Martin Baulig  <martin@ximian.com>
26711
26712         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
26713         (mono_class_create_from_typespec): Likewise.
26714
26715 2004-03-30  Martin Baulig  <martin@ximian.com>
26716
26717         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
26718         `has_ctor_constraint' and `initialized'.
26719
26720 2004-03-30  Martin Baulig  <martin@ximian.com>
26721
26722         * reflection.c (encode_new_constraint): New static function to add
26723         the constructor constraint attribute to a type parameter.
26724         (encode_constraints): Call encode_new_constraint() if necessary.
26725
26726         * reflection.h
26727         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
26728
26729         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
26730         
26731 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
26732
26733         * reflection.c, icall.c: add support for pinning variables. 
26734
26735 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
26736
26737         * marshal.c (mono_marshal_get_managed_wrapper):
26738         init bool local with zero rather than null.
26739
26740 2004-03-29  Martin Baulig  <martin@ximian.com>
26741
26742         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
26743         the "official" behavior here.
26744         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
26745
26746 2004-03-29  Martin Baulig  <martin@ximian.com>
26747
26748         * icall.c: Reflect latest API changes.
26749
26750 2004-03-29  Martin Baulig  <martin@ximian.com>
26751
26752         * loader.c (mono_get_method_from_token): Also call
26753         mono_metadata_load_generic_params () for abstract and interface
26754         methods; replace the type arguments in the method signature with
26755         the ones which are loaded from the metadata.
26756
26757 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
26758
26759         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
26760         of the lock is not the current thread. MS.NET don't do it, in spite of
26761         what the documentation says. See bug #56157.
26762
26763 2004-03-28  Martin Baulig  <martin@ximian.com>
26764
26765         * class.c (mono_class_init): Don't call init_properties() and
26766         init_events() for generic instances; set `prop->parent' when
26767         inflating properties.
26768
26769         * reflection.c (mono_generic_inst_get_object): Call
26770         `mono_class_init (ginst->klass)'.
26771         (mono_type_get_object): Only create a MonoGenericInst if your
26772         generic type is a TypeBuilder.
26773         (do_mono_reflection_bind_generic_parameters): Only set
26774         `ginst->is_dynamic' if our generic type is a TypeBuilder.
26775
26776 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
26777
26778         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
26779         Fixes #56091.
26780
26781 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26782
26783         * icall.c: added Kill_internal icall.
26784         * process.[ch]: added Kill_internal icall.
26785
26786 2004-03-25  Martin Baulig  <martin@ximian.com>
26787
26788         * class.h (MonoStats): Added `generic_instance_count',
26789         `inflated_method_count', `inflated_type_count' and
26790         `generics_metadata_size'.       
26791
26792 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26793
26794         * reflection.c: no warnings now.
26795
26796 2004-03-25  Martin Baulig  <martin@ximian.com>
26797
26798         * class.c (mono_class_get_full): New public function; does a
26799         mono_class_get(), but also takes a `MonoGenericContext *'.
26800
26801         * loader.c (mono_field_from_memberref): Renamed to
26802         `field_from_memberref', made static and added `MonoGenericContext *'
26803         argument.
26804         (mono_field_from_token): Added `MonoGenericInst *' argument.
26805         (method_from_memberef): Likewise.
26806         (mono_get_method_from_token): Likewise.
26807         (mono_get_method_full): New public function; does a
26808         mono_get_method(), but also takes a `MonoGenericContext *'.
26809
26810         * verify.c (mono_method_verify): Get the method's generic context
26811         and pass it to mono_field_from_token(), mono_get_method_full() and
26812         mono_class_get_full().
26813
26814 2004-03-25  Martin Baulig  <martin@ximian.com>
26815
26816         * class.c (mono_class_inflate_generic_type): Take a
26817         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
26818         `MonoGenericMethod *'.
26819
26820 2004-03-25  Martin Baulig  <martin@ximian.com>
26821
26822         * loader.h (MonoMethodInflated): Store the MonoGenericContext
26823         instead of the MonoGenericMethod here.
26824
26825 2004-03-25  Martin Baulig  <martin@ximian.com>
26826
26827         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
26828         each time we create a new MonoGenericInst, we also create a new
26829         context which points back to us.
26830
26831         * class.c (inflate_method): Use `ginst->context' instead of
26832         creating a new context.
26833
26834         * loader.c (method_from_memberref): Use
26835         `klass->generic_inst->context' instead of creating a new context.
26836
26837 2004-03-25  Martin Baulig  <martin@ximian.com>
26838
26839         * class.h (MonoGenericContext): New struct.
26840         (MonoGenericMethod): Removed `generic_inst'.
26841
26842         * class.c (mono_class_inflate_generic_method): Take a
26843         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26844
26845 2004-03-25  Martin Baulig  <martin@ximian.com>
26846
26847         * loader.h (MonoMethodInflated): New typedef.
26848
26849         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26850         `generic_param_count' consume just 30 bits, added `is_inflated'
26851         and `has_type_parameters' flags (one bit each).
26852
26853         * class.c (mono_class_inflate_generic_method): Create a
26854         MonoMethodInflated instead of a MonoMethodNormal and set
26855         `is_inflated' in the method signature.
26856
26857         * class.h (MonoGenericMethod): Removed `generic_method'.
26858
26859 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26860
26861         * image.c: Make sure the name of a MonoImage is always an absolute path.
26862           This fixes bug #54415.
26863
26864 2004-03-24  Martin Baulig  <martin@ximian.com>
26865
26866         * class.c (mono_class_setup_vtable): If we're a generic instance,
26867         use our generic type's vtable size.
26868
26869 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26870
26871         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26872         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26873         problems.
26874
26875 2004-03-23  Martin Baulig  <martin@ximian.com>
26876
26877         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26878         `MonoEvent *events'.
26879
26880         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26881         (typebuilder_icalls): Added "get_event_info"; calls
26882         mono_reflection_event_builder_get_event_info(). 
26883
26884         * reflection.c (mono_reflection_generic_inst_initialize): Added
26885         `MonoArray *events'.
26886         (mono_reflection_event_builder_get_event_info): New function.
26887
26888 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26889
26890         * object.h: add mono_type_initialization_init
26891
26892         * object.c (mono_runtime_class_init): 
26893         implement class constructor synchronization rules
26894         to cope with threading issues.  
26895         add mono_type_initialization_init
26896
26897         * appdomain.c (mono_runtime_init): call 
26898         mono_type_initialization_init
26899
26900         * class.h: removing initializing field from MonoVTable
26901
26902 2004-03-23  Martin Baulig  <martin@ximian.com>
26903
26904         * class.c (my_mono_class_from_generic_parameter): Use
26905         `param->name' if it's not NULL. 
26906
26907 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26908
26909         * class.c: do not insert non-virtual methods in the vtable.
26910         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26911         that means the method is non-virtual. This never would have
26912         happened before.
26913
26914 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26915
26916         * profiler.c: Added lock for accessing coverage_hash.
26917
26918 2004-03-22  Martin Baulig  <martin@ximian.com>
26919
26920         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26921         `method->method->signature->generic_param_count != 0' to make it
26922         work for interface methods.
26923
26924 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26925
26926         * process.c: quote the string passed to the shell using g_shell_quote.
26927
26928 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26929
26930         * threads.c:
26931         (mono_threads_manage): don't remove the finalizer thread and self
26932         from the threads hash table so that mono_thread_manage can be called
26933         more than once.
26934
26935 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26936
26937         * process.c: quote the arguments when UseShellExecute is true. Fixes
26938         bug #55790.
26939
26940 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26941
26942         * threads.c: set mono_thread_detach as a cleanup routine for every
26943         thread. This way it's always executed upon thread termination, either
26944         aborted or finished normally. No more xsp hangs!
26945
26946 2004-03-17  Martin Baulig  <martin@ximian.com>
26947
26948         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26949         `int count_nested' and a `MonoType **nested'.
26950
26951         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26952         most of the functionality into a new static
26953         do_mono_reflection_bind_generic_parameters() and don't take a
26954         `MonoType *nested_in' argument any more.  Don't compute nested
26955         types here.
26956         (mono_reflection_generic_inst_get_nested_types): New public method
26957         to get nested types.
26958
26959         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26960         we're a nested class.
26961
26962         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26963         mono_reflection_generic_inst_get_nested_types() to compute the
26964         nested types.
26965
26966 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26967
26968         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26969         descriptive error message under windows.
26970         
26971 2004-03-17  Martin Baulig  <martin@ximian.com>
26972
26973         * class.c (dup_type): Added `const MonoType *original' argument;
26974         copy the attrs from the original type.
26975
26976 2004-03-17  Martin Baulig  <martin@ximian.com>
26977
26978         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26979         `m->generic_inst_cache' here.
26980
26981 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26982
26983         * exception.h exception.c: Add stack_overflow_exception.
26984
26985 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26986
26987         * threadpool.c:
26988         (overlapped_callback): call SetEvent *after* invoking the callback.
26989         No need to call CloseHandle.
26990
26991 2004-03-16  Martin Baulig  <martin@ximian.com>
26992
26993         * reflection.c (mono_image_get_fieldref_token): Take a
26994         `MonoReflectionField *' instead of a `MonoClassField *' and a
26995         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26996
26997 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26998
26999         * appdomain.c: don't add the culture to the filename we're looking for
27000         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
27001
27002 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27003
27004         * locales.c: don't ignore symbols when doing case insensitive compares.
27005         Thanks Dick! Fixes bug #54046.
27006
27007         * threads.c: surround 'threads' usage with enter/leave in
27008         mono_thread_manage.
27009
27010 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
27011
27012         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
27013         implicitly marshalled as [Out]. Fixes #55450.
27014
27015         (mono_marshal_get_runtime_invoke): Zero out the result if there is
27016         an exception.
27017
27018 2004-03-16  Martin Baulig  <martin@ximian.com>
27019
27020         * class.c (mono_class_from_generic_parameter): Use the actual
27021         parameter name. 
27022
27023 2004-03-16  Martin Baulig  <martin@ximian.com>
27024
27025         * reflection.c (type_get_signature_size): New static function.
27026         Compues the size of the type in a method signature.
27027         (method_get_signature_size): New static function; calls
27028         type_get_signature_size() to compute the actual size of the
27029         method's signature.
27030         (method_encode_signature): Use method_get_signature_size() to get
27031         the signature's size rather than using `nparams * 10'.
27032
27033 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27034
27035         * file-io.h: define here WapiOverlapped on windows. I don't want the
27036         regular OVERLAPPED one.
27037
27038         * file-io.c:
27039         * threadpool.c: somehow, BindIoCompletionCallback is not found.
27040         Disabling AIO on windows.
27041
27042 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27043
27044         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
27045         bug #55385.
27046
27047 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27048
27049         * appdomain.c: upgraded corlib version.
27050
27051         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
27052         and BeginWrite. Allow opening files for asynchrnous operations.
27053
27054         * file-io.h: new struct that maps FileStreamAsyncResult.
27055         * icall.c: added new icalls.
27056         * process.[ch]: support setting child process environment variables
27057         and use the SHELL or COMSPEC when UseShellExecute is true.
27058
27059         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
27060         callback for async. IO is here and also BindHandle.
27061
27062         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
27063         from here.
27064
27065 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
27066
27067         * reflection.c (create_custom_attr): Allow len == 0.
27068
27069         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
27070         computation on big-endian machines.
27071
27072 2004-03-13  Martin Baulig  <martin@ximian.com>
27073
27074         * class.h (MonoGenericInst): Added `int count_ifaces'.
27075
27076         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
27077         `ginst->count_ifaces' instead `klass->interface_count' since we
27078         may get called before the vtable is created.
27079
27080         * loader.c (mono_method_get_param_names): If we're a generic
27081         instance, return and don't initialize the class.
27082
27083         * reflection.c (mono_reflection_setup_generic_class): Don't call
27084         ensure_runtime_vtable().
27085         (mono_reflection_bind_generic_parameters): Set
27086         `ginst->count_ifaces'.
27087
27088 2004-03-11  Jackson Harper <jackson@ximian.com>
27089
27090         * icall.c:
27091         * unicode.c:
27092         * unicode.h: Remove unused System.Char icalls.
27093         
27094 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
27095
27096         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
27097         code when we P/Invoke the first library in Windows.Forms, instead
27098         of when we first open the assembly.
27099
27100         * assembly.c: Drop the lookup from here.
27101
27102 2004-03-10  Martin Baulig  <martin@ximian.com>
27103
27104         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
27105         class for properties, fields and events.  Finally fixes #54945.
27106
27107 2004-03-10  Martin Baulig  <martin@ximian.com>
27108
27109         * metadata.c (mono_metadata_class_equal): New static function;
27110         checks whether two generic instances or two generic parameters are
27111         equal.
27112         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
27113         compare classes.        
27114
27115 2004-03-10  Martin Baulig  <martin@ximian.com>
27116
27117         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
27118
27119         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
27120         argument and write it into the `reflection_info' field.
27121
27122         * icall.c
27123         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
27124         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
27125
27126 2004-03-09  Jackson Harper  <jackson@ximian.com>
27127
27128         * char-conversions.h: use 8 bits for numeric data its all we need
27129         * icall.c: numeric data is only 8 bits now.
27130
27131 2004-03-09  Martin Baulig  <martin@ximian.com>
27132
27133         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
27134
27135         * class.c (init_properties, init_events): Initialize the new
27136         `parent' field.
27137
27138         * reflection.c (typebuilder_setup_properties): Likewise.
27139         (typebuilder_setup_events): Likewise.
27140
27141         * reflection.h (MonoEventInfo): Replaced `parent with
27142         `declaring_type' and `reflected_type'.
27143
27144         * icall.c (ves_icall_get_property_info): Distinguish between
27145         declaring and reflected type.
27146         (ves_icall_get_event_info): Likewise.
27147
27148 2004-03-09  Martin Baulig  <martin@ximian.com>
27149
27150         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
27151         (ves_icall_Type_GetField): Correctly set field->klass.
27152
27153 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
27154
27155         * loader.h: Fix warning.
27156
27157 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
27158
27159         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
27160         library routine if present.  Notice that it will still continue
27161         executing even if its missing, for those working on the Gtk#
27162         edition of Windows.Forms.
27163
27164         * assembly.c (do_mono_assembly_open): If loading the
27165         System.Windows.Forms call mono_loader_wini_init.
27166
27167 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
27168
27169         * class.h: Added MonoRemoteClass struct.
27170         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
27171         function for MonoStrings.
27172         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
27173         Added internal call for getting the proxy type.
27174         * marshal.c: Get the type of transparent proxies from its remote_class.
27175         Added methods that generate the IL for type checks and casts:
27176         mono_marshal_get_isinst, mono_marshal_get_castclass, 
27177         mono_marshal_get_proxy_cancast.
27178         * marshal.h: Declaration of the previous new methods.
27179         * object.c: Added new moethods for creating and updating MonoRemoteClass
27180         instances: mono_remote_class, mono_upgrade_remote_class, 
27181         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
27182         * verify.c: FIx transparent_proxy_fields layout.
27183         * appdomain.c: Bump corlib version.
27184
27185 2004-03-04  Jackson Harper  <jackson@ximian.com>
27186
27187         * icall.c: Add icall to access char conversion tables.
27188         * char-conversions.h: Character conversion tables.
27189         * Makefile.am: Add char-conversions.h private header file.
27190         
27191 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
27192
27193         * appdomain.c (unload_thread_main): Increase unloading timeout to
27194         10 sec as a temporary workaround for Nant problems.
27195
27196 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
27197
27198         * gc.c: Add checks for GC_enable and GC_disable.
27199
27200         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
27201         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
27202         (bug #54988).
27203         
27204 2004-02-27  Martin Baulig  <martin@ximian.com>
27205
27206         * reflection.c (mono_reflection_bind_generic_parameters): Take a
27207         `MonoReflectionType *' instead of a `MonoType *'.
27208
27209 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
27210
27211         * gc.c (run_finalize): Avoid finalizing the object representing the
27212         finalizer thread.
27213         (finalizer_thread): Fix warning.
27214
27215 2004-02-25  Martin Baulig  <martin@ximian.com>
27216
27217         * class.c (_mono_class_get_instantiation_name): Added `int offset'
27218         argument for nested types.
27219         (mono_class_create_generic): Added support for nested generictypes.
27220
27221         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
27222         `GList *nested'.
27223
27224         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
27225
27226         * reflection.c (method_encode_signature): Increase the minimum
27227         value of `size' from 10 to 11.
27228         (mono_reflection_bind_generic_parameters): Take `int type_argc'
27229         and `MonoType **types' arguments instead of the `MonoArray
27230         *types'; added `MonoType *nested_in'.  Recursively instantiate
27231         nested classes. 
27232
27233 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
27234
27235         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
27236         stack_overflow_ex members which are used by exception handling.
27237
27238         * appdomain.c (mono_runtime_init): Initialize the new members.
27239
27240         * gc.c (mono_gc_enable): New helper function.
27241         * gc.c (mono_gc_disable): New helper function.
27242
27243 2004-02-23  Martin Baulig  <martin@ximian.com>
27244
27245         * icall.c: I must have been really stupid - make it actually work
27246         this time ;-)
27247
27248 2004-02-23  Martin Baulig  <martin@ximian.com>
27249
27250         * loader.c (method_from_memberref): Only inflate the method if
27251         it's in another klass.
27252
27253 2004-02-23  Martin Baulig  <martin@ximian.com>
27254
27255         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
27256         (mono_class_init): If we're a generic instance and an interface,
27257         compute `class->interface_id'; also create `class->interfaces'
27258         here and inflate them.
27259
27260         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
27261         `ginst->is_open'.
27262         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
27263
27264         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
27265
27266 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
27267
27268         * reflection.c (method_encode_code): Improved the error message
27269         generated by the exception.
27270
27271 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27272
27273         * icall.c: Martin did not do what he said in the ChangeLog for
27274         2004-02-18, but put back the changes for properties and events.
27275         Commenting those changes out again and adding comment to bug #54518.
27276         
27277         * process.c: removed warning.
27278
27279 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
27280
27281         * marshal.c (emit_struct_conv): Print an error message instead of
27282         asserting when a type does not have the StructLayout attribute.
27283
27284 2004-02-20  Martin Baulig  <martin@ximian.com>
27285
27286         * reflection.c (mono_type_get_object): Also use the cache for
27287         generic instances.
27288         (mono_reflection_bind_generic_parameters): Always compute
27289         `ginst->ifaces'.        
27290
27291 2004-02-20  Martin Baulig  <martin@ximian.com>
27292
27293         * class.h (MonoGenericMethod): Removed `klass'.
27294
27295         * class.c (mono_class_inflate_generic_method): Added `MonoClass
27296         *klass' argument.
27297
27298 2004-02-20  Martin Baulig  <martin@ximian.com>
27299
27300         * reflection.c (method_encode_methodspec): Actually use the
27301         uninflated signature for the memberref.
27302
27303 2004-02-20  Martin Baulig  <martin@ximian.com>
27304
27305         * class.h (MonoGenericMethod): Removed `declaring'.
27306
27307         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
27308         is NULL, compute it here.
27309
27310 2004-02-20  Martin Baulig  <martin@ximian.com>
27311
27312         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
27313
27314         * metadata.c (mono_metadata_generic_inst_hash): New method.
27315         (mono_metadata_generic_inst_equal): New method.
27316
27317         * reflection.c (mono_reflection_bind_generic_parameters): Use the
27318         `klass->image->generic_inst_cache' cache to avoid creating
27319         duplicate MonoGenericInst's.
27320
27321         * class.c (mono_class_inflate_generic_type): Use the cache.
27322
27323 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
27324
27325         * object.c: fixed gc descriptor calculation for embedded valuetypes.
27326
27327 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27328
27329         * icall.c: added Socket.WSAIoctl icall.
27330
27331         * socket-io.[ch]: implemented
27332         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
27333
27334 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
27335
27336         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
27337
27338 2004-02-18  Urs C Muff  <umuff@quark.com>
27339
27340         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
27341         this work on PPC and other big-endian architectures.
27342
27343         * debug-mono-symfile.h: Prepended the names of all the `guint32'
27344         fields with an underscore to make sure they're only accessed by
27345         the read32() macro.
27346
27347 2004-02-18  Martin Baulig  <martin@ximian.com>
27348
27349         * icall.c: Put the klass->refclass changes back for methods and
27350         fields, but not for properties and events.  We're currently not
27351         distinguishing between DeclaringType and ReflectedType for
27352         properties and events, that's what caused the regressions.
27353
27354 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27355
27356         * object.c:
27357         (mono_async_result_new): the handle can be NULL.
27358
27359         * threadpool.c: Use an event instead of a semaphore, don't initialize
27360         it until needed. This saves quite a few semaphores from being created
27361         when using the threadpool.
27362
27363 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
27364
27365         * object.c (mono_string_is_interned_lookup): Fix interning of long
27366         strings. Fixes #54473.
27367
27368         * domain.c (ldstr_equal): Optimize if the two strings are equal.
27369
27370         * icall.c: Revert the klass->refclass changes since they introduce
27371         regressions (bug #54518).
27372
27373 2004-02-18  Martin Baulig  <martin@ximian.com>
27374
27375         * class.c (mono_class_init): If we're a generic instance and don't
27376         come from a TypeBuilder, inflate our members here.
27377         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
27378         (mono_class_create_generic): New public method.
27379         (mono_class_initialize_generic): Removed.
27380         (get_instantiation_name): Renamed to
27381         _mono_class_get_instantiation_name() and made it public.
27382
27383 2004-02-18  Martin Baulig  <martin@ximian.com>
27384
27385         * class.c (mono_class_inflate_generic_type): Clear the new
27386         instance's `nginst->klass' when inflating a generic instance.
27387         (mono_class_is_subclass_of): Added (basic) support for generic
27388         instances.
27389
27390 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
27391
27392         * appdomain.h, domain.c: use a MonoCodeManager instead of a
27393         MonoMempool to hold compiled native code.
27394
27395 2004-02-17  Martin Baulig  <martin@ximian.com>
27396
27397         * class.h (MonoDynamicGenericInst): Added `count_properties' and
27398         `properties'.
27399
27400         * reflection.c (mono_reflection_generic_inst_initialize): Added
27401         `MonoArray *properties' argument.
27402
27403         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
27404
27405 2004-02-17  Martin Baulig  <martin@ximian.com>
27406
27407         * icall.c (ves_icall_Type_GetFields): Renamed to
27408         ves_icall_Type_GetFields_internal() and added a
27409         `MonoReflectionType *rtype' argument; pass it to
27410         mono_field_get_object() to set the field's "reflected" type.
27411         (ves_icall_Type_GetConstructors): Likewise.
27412         (ves_icall_Type_GetEvents): Likewise.
27413         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
27414         argument; pass it to mono_method_get_object() to set the method's
27415         "reflected" type.       
27416
27417 2004-02-17  Martin Baulig  <martin@ximian.com>
27418
27419         * class.h (MonoDynamicGenericInst): New type.
27420         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
27421
27422         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
27423         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
27424         (ves_icall_MonoGenericInst_GetFields): New interncall.
27425
27426         * class.c (mono_class_from_generic): Don't call
27427         mono_class_initialize_generic() if this is a dynamic instance;
27428         ie. it's being created from a TypeBuilder.
27429         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
27430         `class->byval_arg.type'.
27431
27432         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
27433         to `inflate_method' and made static.
27434         (mono_reflection_inflate_field): Removed.
27435         (mono_reflection_generic_inst_initialize): New public method.
27436
27437         * reflection.h (MonoReflectionGenericInst): Removed `methods',
27438         `ctors' and `fields'; added `initialized'.
27439
27440 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
27441
27442         * debug-helpers.c (mono_method_full_name): Fix output for empty
27443         namespaces.
27444
27445 2004-02-12  Martin Baulig  <martin@ximian.com>
27446
27447         * class.h (MonoClassField): Added `MonoType *generic_type'.
27448
27449         * reflection.c (mono_image_get_fieldref_token): Added support for
27450         instantiated generic types.
27451         (field_encode_inflated_field): Removed.
27452         (mono_image_get_inflated_field_token): Removed.
27453         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
27454
27455         * reflection.h (MonoReflectionInflatedField): Removed.
27456
27457 2004-02-12  Martin Baulig  <martin@ximian.com>
27458
27459         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
27460         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
27461
27462         * reflection.c (mono_image_get_methodspec_token): Take a
27463         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
27464         (mono_image_create_token): Check whether we have a
27465         `method->signature->gen_method' and call
27466         mono_image_get_methodspec_token() if appropriate.
27467         (inflated_method_get_object): Removed.
27468         (mono_reflection_bind_generic_method_parameters): Return a
27469         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
27470         (mono_reflection_inflate_method_or_ctor): Likewise.
27471
27472         * reflection.h (MonoReflectionInflatedMethod): Removed.
27473
27474 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
27475
27476         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
27477         for custom valuetype marshalling.
27478
27479         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
27480
27481 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27482
27483         * icall.c: fixed WSAGetLastError_internal name.
27484
27485 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
27486
27487         * threads.c (mono_thread_attach): Allow this to be called multiple
27488         times for a thread.
27489         
27490         * threads.c (build_wait_tids): Do not wait for ourselves.
27491
27492         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
27493         appdomain list is empty.
27494
27495         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
27496         memory returned by mono_string_builder_to_utf16, since it points into
27497         managed memory. Thanks to Bernie Solomon for noticing this.
27498
27499         * icall.c: Add AppDomainSetup icalls.
27500
27501         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
27502
27503         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
27504         types.
27505
27506         * reflection.c (reflection_methodbuilder_to_mono_method): Save
27507         custom attributes to the method_aux struct. Also fix array indexes etc.
27508
27509         * loader.c (mono_method_get_param_names): Make dynamic case work again.
27510         
27511 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
27512
27513         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
27514         (both static and runtime) and reduce startup time.
27515
27516 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
27517
27518         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
27519         AsAny marshalling conversion instead of crashing.
27520
27521         * marshal.c: Fix warnings.
27522
27523 2004-02-09  Martin Baulig  <martin@ximian.com>
27524
27525         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
27526
27527         * reflection.h (MonoReflectionInflatedMethod): Removed the
27528         `declaring' field, it's now in the unmanaged MonoGenericMethod.
27529
27530         * reflection.c (method_encode_methodspec): Removed the `method'
27531         argument; we get it from `gmethod->declaring'.
27532         (inflated_method_get_object): Removed the `declaring' argument.
27533
27534 2004-02-09  Martin Baulig  <martin@ximian.com>
27535
27536         * class.h (MonoGenericMethod): New type.
27537         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
27538         `generic_method'.
27539
27540         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
27541         a `MonoGenericMethod *gen_method' one.
27542
27543         * class.c (mono_class_inflate_generic_type): Take an additional
27544         `MonoGenericMethod * argument.  This is only non-NULL if we're
27545         inflating types for a generic method.   
27546         (mono_class_inflate_generic_signature): Renamed to
27547         inflate_generic_signature() and made static; take a
27548         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27549         (inflate_generic_header): Take a `MonoGenericMethod *' argument
27550         instead of a `MonoGenericInst *' one.
27551         (mono_class_inflate_generic_method): Likewise.
27552
27553         * reflection.c (encode_generic_method_sig): Take a
27554         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27555         (method_encode_methodspec): Likewise.
27556         (inflated_method_get_object): Likewise. 
27557
27558         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
27559         field with a `MonoGenericMethod *gmethod' one.  
27560
27561 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
27562
27563         * class.h (mono_class_has_parent): add parens to expansion
27564         so you can ! this.
27565
27566 2004-02-08  Martin Baulig  <martin@ximian.com>
27567
27568         * image.h (MonoImage): Removed `generics_cache'.
27569
27570         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
27571         instead of a `MonoType *' argument; removed the `inflate_methods'
27572         argument.  Don't inflate methods here.
27573
27574         * loader.c (find_method): If it's a generic instance, call
27575         mono_class_init() on the `sclass->generic_inst->generic_type'.
27576
27577         * metadata.c (mono_type_size): Make this work on uninitialized
27578         generic instances; call it on the `ginst->generic_type's class.
27579
27580         * reflection.c (mono_reflection_bind_generic_parameters): Call
27581         mono_class_from_generic() to create the `ginst->klass'.
27582
27583 2004-02-08  Martin Baulig  <martin@ximian.com>
27584
27585         * class.h (MonoClass): Changed type of `generic_inst' from
27586         `MonoType *' to `MonoGenericInst *'.
27587
27588 2004-02-08  Martin Baulig  <martin@ximian.com>
27589
27590         * icall.c (ves_icall_Type_BindGenericParameters): Just call
27591         mono_type_get_object(), this is now creating a `MonoGenericInst'
27592         for MONO_TYPE_GENERICINST.
27593         (ves_icall_MonoGenericInst_GetParentType): Likewise.
27594         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
27595
27596         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
27597         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
27598         (inflated_method_get_object): Added `MonoClass *refclass' argument.
27599         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
27600         and reflected type.
27601
27602         * reflection.h (MonoReflectionInflatedMethod): Removed
27603         `declaring_type' and `reflected_type'.
27604
27605 2004-02-08  Martin Baulig  <martin@ximian.com>
27606
27607         * class.h (MonoGenericInst): Added `MonoType *parent' and
27608         `MonoType **ifaces'.
27609
27610         * reflection.h (MonoReflectionGenericInst): Removed `klass',
27611         `parent' and `interfaces'.
27612
27613         * reflection.c (mono_reflection_bind_generic_parameters): Take a
27614         `MonoType *' argument and return a `MonoType *'.
27615
27616         * icall.c
27617         (ves_icall_MonoGenericInst_GetParentType): New interncall.
27618         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
27619
27620 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27621
27622         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
27623         valuetype marshalling.
27624
27625 2004-02-06  Martin Baulig  <martin@ximian.com>
27626
27627         * class.c
27628         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
27629         (my_mono_class_from_generic_parameter): Likewise.
27630
27631 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27632
27633         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
27634         contents of the symbol files lazily.
27635
27636         * object.h (MonoThread): Add 'name' and 'name_len' fields.
27637
27638         * threads.h threads.c icall.c: New icalls for getting and setting the
27639         threads name.
27640
27641 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
27642
27643         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
27644         Raise an exception when the domain is not found.
27645
27646 2004-02-03  Martin Baulig  <martin@ximian.com>
27647
27648         * reflection.c (mono_image_get_methodspec_token): Use the
27649         uninflated signature; fixes gen-33.
27650
27651 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
27652
27653         * gc.c threads.c: Make the finalizer thread a normal managed thread so
27654         the finalizer code can use thread functionality.
27655
27656         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
27657         the finalizer thread.
27658
27659         * threads.c: Make some functions more robust.
27660
27661         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
27662
27663         * metadata.h: Add new marshalling conventions.
27664
27665         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
27666         stringbuilder marshalling. Fixes #53700.
27667
27668         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
27669
27670         * reflection.c (mono_image_get_type_info): Save declarative security
27671         info.
27672
27673         * reflection.c (mono_image_get_field_info): Handle uninitialized 
27674         unmanaged fields as well.
27675
27676         * appdomain.c: Bump corlib version.
27677
27678 2004-02-01  Martin Baulig  <martin@ximian.com>
27679
27680         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
27681         method type arguments.  
27682
27683 2004-01-30  Duncan Mak  <duncan@ximian.com>
27684
27685         * marshal.h: Add prototype for
27686         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
27687         and
27688         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
27689         fix the build.
27690
27691 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
27692
27693         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
27694         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
27695
27696 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27697
27698         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27699         custom marshalling of valuetypes.
27700
27701         * marshal.c: Fix some warnings.
27702
27703 2004-01-29  Martin Baulig  <martin@ximian.com>
27704
27705         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
27706         for generic method parameters.
27707
27708         * reflection.c (method_encode_methodspec): Write the uninflated
27709         signature into the methodspec table.
27710         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
27711         is always the uninflated method.
27712         (reflection_methodbuilder_to_mono_method): Copy the generic
27713         parameters from the MethodBuilder into `header->gen_params'.
27714
27715 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27716
27717         * class.c (mono_class_from_generic_parameter): Fix warning.
27718
27719 2004-01-27  Martin Baulig  <martin@ximian.com>
27720
27721         * class.c (mono_class_from_generic_parameter): Don't create
27722         `klass->methods' here.  
27723
27724 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
27725
27726         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
27727         extension since it does not work with libraries named lib<FOO>.dll.so.
27728
27729 2004-01-25  Martin Baulig  <martin@ximian.com>
27730
27731         * class.c (mono_class_inflate_generic_type): Added support for
27732         MONO_TYPE_GENERICINST.
27733
27734         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
27735         inflate methods on open constructed types.      
27736
27737 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27738
27739         * object.c: fire ProcessExit event in the root AppDomain after running
27740         Main. Fixes bug #53299.
27741
27742 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
27743
27744         * socket-io.c: include the new socket-wrappers.h header.
27745         Use the wrappers instead of the unix socket functions to make the code
27746         more clear.
27747
27748 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
27749
27750         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
27751
27752         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27753         Fixes #22532.
27754
27755 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
27756
27757         * reflection.c (mono_image_create_pefile): Handle the case when the
27758         entry point is not a MethodBuilder.
27759
27760         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27761         field to ReflectionMethod since it is not allways a builder.
27762
27763         * reflection.c (type_get_fully_qualified_name): New helper function to
27764         return the fully qualified name of a type.
27765
27766         * reflection.c (encode_marshal_blob): Always emit the fully qualified
27767         type name for custom marshallers.
27768
27769         * reflection.c (mono_marshal_spec_from_builder): Ditto.
27770
27771         * class.c (mono_class_setup_vtable): If a parent class already 
27772         implements an interface, use the implementing methods from that class.
27773         Fixes #53148.
27774
27775 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27776
27777         * threadpool.c: just return instead of ExitThread to allow for thread
27778         clean up earlier.
27779
27780 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
27781
27782         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
27783         when closing resource modules.
27784
27785         * reflection.c (mono_image_create_pefile): Handle the case when the
27786         entry point is not a MethodBuilder.
27787
27788         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27789         field to ReflectionMethod since it is not allways a builder.
27790
27791 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
27792
27793         * marshal.c (mono_marshal_get_managed_wrapper): 
27794         mono_marshal_alloc takes native int so CONV_I
27795         the arg for 64bits.
27796
27797 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
27798
27799         * reflection.c (fixup_cattrs): New function to fixup the methoddef
27800         tokens in the cattr table. Fixes #53108.
27801
27802 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27803
27804         * loader.c: don't trim ".dll" before looking up in the config file.
27805         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
27806
27807 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
27808
27809         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
27810         Return the module which contains the resource as well.
27811         (ves_icall_System_Reflection_Module_Close): New icall.
27812
27813         * appdomain.c: Bump corlib version number.
27814
27815         * image.c (mono_image_addref): New public function.
27816
27817         * assembly.c: Call mono_image_addref.
27818
27819         * reflection.c (mono_module_get_object): Increase reference count of 
27820         the image.
27821
27822         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27823         Fixes #22532.
27824
27825         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
27826         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
27827         proper exceptions on DllImport problems.
27828
27829 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
27830
27831         * class.c, metadata.c: eliminate CSIZE macro.
27832
27833 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27834
27835         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27836         * object.h: Added async_callback field in MonoAsyncResult.
27837         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27838         * verify.c: Added async_callback in MonoAsyncResult layout.
27839
27840 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27841
27842         * reflection.c (mono_reflection_get_custom_attrs): Add support
27843         for Modules.
27844
27845 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27846
27847         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27848         marshalling.
27849         (mono_marshal_method_from_wrapper): Add null pointer check.
27850
27851 2004-01-16  Martin Baulig  <martin@ximian.com>
27852
27853         * debug-mono-symfile.h: Set version number to 36 and reflect
27854         latest symbol writer changes.
27855
27856 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27857
27858         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27859         multi-dimensional arrays.
27860         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27861         (mono_class_from_mono_type): Use bounded_array_class_get.
27862         
27863         * class.c (mono_bounded_array_class_get): New function which takes
27864         a 'bounded' bool argument to distinguish vectors from one dimensional
27865         arrays.
27866
27867         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27868         bounded_array_class_get if the array has bounds.
27869
27870         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27871         Search modules loaded using AssemblyBuilder:AddModule as well.
27872
27873 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27874
27875         * appdomain.c: increased corlib version.
27876         * filewatcher.c: removed g_print.
27877         * icall.c:
27878         (get_property_info): only allocate what is actually requested.
27879         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27880
27881 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27882
27883         * Makefile.am: added filewatcher.[ch]
27884         * filewatcher.[ch]: FileSystemWatcher runtime support.
27885         * icall.c: added new FSW icalls.
27886
27887 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27888
27889         * string-icalls.c: fix stringbuilder regression as suggested by
27890         Iain McCoy <iain@mccoy.id.au>.
27891
27892 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27893
27894         * process.c (process_read_stringtable_block): Recognize '007f' as
27895         a language neutral stringtable block.
27896
27897 2004-01-12  Patrik Torstensson
27898
27899         * object.h (MonoStringBuilder) : Changed layout to support our
27900         new stringbuilder class.
27901         * marshal.c: Change marshalling to support the new layout of 
27902         string builder.
27903         * appdomain.c: increased version number because new layout of
27904         string builder.
27905
27906 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27907
27908         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27909         assembly name as an string instead of an AssemblyName, since it is
27910         easier to extract info from it.
27911
27912         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27913         the culture subdirectories too. Fixes #52231.
27914
27915 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27916
27917         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27918         It takes 2 new parameters with an optional name for the method to look
27919         for and case ignoring info.
27920
27921         * threadpool.c: removed unused variable.
27922
27923 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27924
27925         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27926         It takes 2 new parameters with an optional name for the property to look
27927         for and case ignoring info.
27928         Fixes bug #52753.
27929
27930 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27931
27932         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27933         Fix #52451.
27934
27935 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27936
27937         * appdomain.c:
27938         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27939         Fixes bug #52630.
27940
27941 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27942
27943         * reflection.c: Add support for more than one unmanaged resource.
27944
27945         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27946         in field->def_value, as done in all other cases.
27947
27948         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27949         TypeBuilders.
27950
27951         * reflection.c (mono_reflection_create_runtime_class): Remove 
27952         errorneous assignment to klass->element_class, since it is already
27953         done in mono_reflection_setup_internal_class.
27954
27955 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27956
27957         * gc.c: added missing LeaveCriticalSection.
27958         * icall.c: indented a couple of lines.
27959         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27960         if we call EndInvoke inside a callback. Fixes bug #52601.
27961
27962 2004-01-07  Martin Baulig  <martin@ximian.com>
27963
27964         * mono-debug-debugger.h
27965         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27966
27967 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27968
27969         * appdomain.c: Use messages in NotImplementedException.
27970
27971         * exception.c (mono_get_exception_not_implemented): Now this takes
27972         a message argument.
27973
27974         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27975         exception instead of g_asserting an aborting when something is not
27976         implemented.
27977
27978         Add some inline docs.
27979
27980 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27981
27982         * reflection.h: Update after changes to object layout.
27983
27984         * reflection.c: Implement saving of unmanaged aka win32 resources.
27985
27986         * appdomain.c: Bump version number.
27987
27988         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27989         Handle missing domains gracefully.
27990
27991 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27992
27993         * file-io.c : On Windows, there are much more invalid_path_chars.
27994
27995 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27996
27997         * class.h, object.c: prepare for GetType () speedup.
27998
27999 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
28000
28001         * profiler.c: workaround for --profile null reference exception on
28002           cygwin. Patch by Patrik Torstensson.
28003
28004 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
28005
28006         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
28007         make work for unaligned access.
28008
28009 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
28010
28011         * class.c: small cleanup (class->fields [i] -> field).
28012         * image.c: check address of metadata is valid.
28013
28014 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
28015
28016         * assembly.h assembly.c (mono_assembly_loaded): New public function to
28017         search the list of loaded assemblies.
28018
28019         * reflection.c (mono_reflection_type_from_name): Use 
28020         mono_assembly_loaded instead of mono_image_loaded.
28021
28022         * reflection.c: Fix warnings.
28023
28024 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
28025
28026         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
28027         is dynamic. This is needed since an assembly can contain both dynamic and
28028         non-dynamic images.
28029
28030         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
28031         assembly->dynamic.
28032
28033         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
28034
28035         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
28036         to store modules loaded using AddModule.
28037
28038         * reflection.c (mono_image_fill_file_table): Generalize this so it works
28039         on Modules.
28040
28041         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
28042
28043         * reflection.c (mono_image_fill_export_table_from_module): New function to
28044         fill out the EXPORTEDTYPES table from a module.
28045
28046         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
28047         into a separate function. Also handle loaded non-dynamic modules.
28048
28049         * reflection.c (mono_image_basic_init): Fix memory allocation.
28050
28051         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28052
28053         * assembly.c (mono_assembly_load_references): Make this public.
28054
28055 2003-12-19  Martin Baulig  <martin@ximian.com>
28056
28057         * class.c (mono_class_initialize_generic): Made this static, take
28058         a `MonoGenericInst *' instead of a `MonoClass *'.
28059         (mono_class_from_generic): Call mono_class_initialize_generic()
28060         unless we're already initialized or being called from
28061         do_mono_metadata_parse_generic_inst().
28062
28063         * class.h (MonoGenericInst): Added `initialized' and
28064         `init_pending' flags.
28065
28066         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
28067         `mono_class_init (gklass)' or mono_class_initialize_generic()
28068         here; set `generic_inst->init_pending' while parsing the
28069         `type_argv'.
28070
28071 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
28072
28073         * locales.c: include string.h for memxxx prototypes
28074
28075 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
28076
28077         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
28078         constructor when accessing literal fields.
28079
28080 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
28081
28082         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28083
28084         * reflection.c (assembly_add_resource_manifest): New function to fill
28085         the MANIFESTRESOURCE table.
28086
28087         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
28088
28089         * reflection.h: Update to changes in class layout.
28090
28091         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
28092         Reenable call to mono_runtime_is_shutting_down ().
28093
28094         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
28095         determine if the runtime is shutting down.
28096
28097 2003-12-16  Jackson Harper <jackson@ximian.com>
28098
28099         * icall.c: comment out call to mono_runtime_is_shutting_down to
28100         fix build.
28101         
28102 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
28103
28104         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
28105         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
28106
28107 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
28108
28109         * reflection.c: move definition of swap_with_size
28110         to before its first call
28111
28112 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
28113
28114         * appdomain.c (mono_runtime_is_shutting_down): New public function.
28115
28116         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
28117         icall.
28118
28119         * object.c: Fix warnings.
28120
28121         * icall.c (ves_icall_Type_Get...): Only consider inherited static
28122         members if FlattenHierarchy is set.
28123
28124         * reflection.c (mono_image_add_decl_security): New function to emit
28125         declarative security.
28126
28127         * reflection.h reflection.c: Add support for declarative security.
28128
28129         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
28130         
28131 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
28132
28133         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
28134         
28135         * appdomain.c verify.c: Moved corlib version checking into its own
28136         function in appdomain.c since it needs to create vtables etc.
28137
28138 2003-12-13  Patrik Torstensson <p@rxc.se>
28139
28140         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
28141         instead of unwrapped server.
28142
28143 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
28144
28145         * verify.c (check_corlib): Fix field index.
28146
28147 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
28148
28149         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
28150         GetGacPath icall.
28151
28152 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
28153
28154         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
28155         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
28156         cope with sizeof(size_t) != sizeof(guint32).
28157
28158 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28159
28160         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
28161         in case of failure.
28162
28163 2003-12-10  Mark Crichton <crichton@gimp.org>
28164
28165         * icall.c: removed the GetNonZeroBytes.  We now handle this case
28166         in managed code.
28167
28168         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
28169
28170 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
28171
28172         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
28173         marked as deleted.
28174
28175 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
28176
28177         * verify.c (check_corlib): Handle the case when the version field is 
28178         initialized by a static constructor.
28179
28180 2003-12-08  Patrik Torstensson  <p@rxc.se>
28181
28182     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
28183
28184 2003-12-08  Martin Baulig  <martin@ximian.com>
28185
28186         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
28187         a MonoReflectionGenericParameter, also take the parameter index
28188         and name as arguments.
28189         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
28190         (ves_icall_MonoGenericParam_initialize): New interncall.
28191         (ves_icall_Type_make_byref_type): New interncall.
28192
28193         * reflection.h (MonoReflectionGenericParam): Derive from
28194         MonoReflectionType, not just from MonoObject.  Added `refobj' and
28195         `index' fields.
28196
28197         * reflection.c (mono_reflection_define_generic_parameter): Create
28198         and return a new MonoReflectionGenericParam; don't initialize the
28199         constraints here.
28200         (mono_reflection_initialize_generic_parameter): New public method;
28201         initializes the constraints and creates the `param->pklass'.
28202
28203 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
28204
28205         * reflection.h reflection.c: Use the new fields 'num_types', 
28206         'num_fields' and 'num_methods' to track the number of types etc.
28207
28208         * verify.c (check_corlib): Check corlib version number.
28209
28210 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
28211
28212         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
28213         function works on all methods.
28214
28215 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
28216
28217         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
28218         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
28219         the custom_type_info flag of the transparent proxy.
28220         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
28221         objects that supports IRemotingTypeInfo.
28222         * object.h: Added custom_type_info field in transparent proxy.
28223
28224 2003-12-06  Martin Baulig  <martin@ximian.com>
28225
28226         * class.c (mono_class_create_from_generic): Removed.
28227         (mono_class_from_generic): Check `ginst->klass' before doing
28228         anything else.  This is important to fully support "recursive"
28229         generic types.
28230
28231         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
28232         empty `generic_inst->klass' before doing anything else.
28233
28234 2003-12-06  Dick Porter  <dick@ximian.com>
28235
28236         * verify.c: 
28237         * object.h:
28238         * icall.c:
28239         * locales.c: Use C structs to access class fields.  Don't do a
28240         conversion between MonoString and UChar because both are
28241         platform-endian UTF-16.  Compare now takes startindex and count
28242         parameters.  Add a char overload for IndexOf.  Speed up the
28243         invariant string IndexOf.
28244
28245 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
28246
28247         * Makefile.am (monosn_LDADD): Fix parallel build.
28248
28249 2003-12-04  Martin Baulig  <martin@ximian.com>
28250
28251         * icall.c
28252         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28253         (ves_icall_Type_make_array_type): New interncall.       
28254
28255 2003-12-04  Martin Baulig  <martin@ximian.com>
28256
28257         * locales.c: also change it in the !HAVE_ICU case.
28258
28259 2003-12-04  Dick Porter  <dick@ximian.com>
28260
28261         * icall.c:
28262         * locales.c: construct_compareinfo is now in CompareInfo, not
28263         CultureInfo.
28264
28265 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
28266
28267         * image.c (mono_image_load_file_for_image): Cache loaded images in the
28268         image->files array.
28269
28270         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
28271         table as well.
28272
28273         * assembly.c (mono_assembly_load_references): Only load references
28274         once.
28275
28276         * class.c (mono_class_from_name): Avoid linear search of the 
28277         EXPORTEDTYPE table.
28278
28279         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
28280
28281 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
28282
28283         * image.h (MonoImage): Add 'field_cache' field.
28284
28285         * loader.c (mono_field_from_token): Cache field lookups.
28286         
28287         * reflection.c (mono_module_get_object): Fix name property.
28288
28289         * icall.c (ves_icall_get_enum_info): Update after changes to 
28290         mono_metadata_get_constant_index ().
28291
28292         * icall.c: Get rid of get_type_info icall, use a separate icall for
28293         each type property to avoid needless memory allocations. Fixes #51514.
28294
28295         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
28296         to avoid needless binary searches.
28297
28298         * class.c (class_compute_field_layout): Move the initialization of
28299         field->def_value to mono_class_vtable ().
28300
28301         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
28302         non-corlib types.
28303
28304         * object.c (mono_object_allocate): Make it inline.
28305
28306         * object.c (mono_object_allocate_spec): Make it inline.
28307         
28308 2003-12-02  Dick Porter  <dick@ximian.com>
28309
28310         * locales.c (create_NumberFormat): NumberFormatInfo construction.
28311         Patch by Mohammad DAMT (mdamt@cdl2000.com).
28312
28313 2003-12-01  Dick Porter  <dick@ximian.com>
28314
28315         * threads.c: Fix signature and call in CreateMutex and
28316         CreateEvent.
28317
28318 2003-12-01  Dick Porter  <dick@ximian.com>
28319
28320         * icall.c: 
28321         * locales.c: Implement string compares and searching
28322
28323         * object.h: Add extra Thread field
28324
28325 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
28326
28327         * reflection.c (fixup_method): Add support for MonoCMethod.
28328
28329 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
28330
28331         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
28332
28333         * reflection.c (assembly_name_to_aname): Allow extra characters in
28334         assembly names. Fixes #51468.
28335
28336 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
28337
28338         * exception.c (mono_exception_from_name_domain): New helper function.
28339
28340         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
28341         exception object in the correct domain.
28342
28343         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
28344         formatting + make a copy a the input data.
28345
28346         * loader.c (mono_get_method_from_token): Methods which contain
28347         native code do not have entries in the ImplMap.
28348
28349         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
28350         Thanks to Gonzalo for spotting this.
28351         
28352         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
28353         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
28354
28355         * assembly.h (mono_assembly_load_from): Split the second part of 
28356         assembly loading into a new public function.
28357
28358         * exception.h (mono_get_exception_bad_image_format): New function.
28359
28360 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
28361
28362         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28363         Enumerate all modules inside a dynamic assembly. Fixes #51293.
28364         
28365         * icall.c: Add new icall for creating dynamic methods.
28366
28367         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
28368
28369         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
28370
28371         * reflection.c (mono_reflection_create_dynamic_method): New icall to
28372         create a dynamic method.
28373
28374         * reflection.c (resolve_object): New helper function.
28375
28376         * reflection.c: Generalize ReflectionMethodBuilder and the functions
28377         which manipulate it so they can also work on dynamic methods.
28378
28379         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
28380         creating the MonoReflectionMethodAux structure if it is not needed.
28381         
28382         * reflection.h verify.c: Update after changes to object layout.
28383
28384         * reflection.c (method_builder_encode_signature): Fix compilation on
28385         gcc 2.95.x.
28386
28387 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
28388
28389         * appdomain.h: Added support for context static fields. Added static_data
28390           field to MonoAppContext and renamed thread_static_fields to a more
28391           generic special_static_fields in MonoAppDomain, since it can now contain
28392           context static fields.
28393         * domain.c: Updated hashtable name.
28394         * object.c: Replaced field_is_thread_static() for a more generic
28395           field_is_special_static() which also checks for context static attribute.
28396           In mono_class_vtable(), added support for static context fields.
28397         * threads.c: Changed methods that manage thread static fields to more
28398           generic methods so they can be reused both for thread and context static
28399           data.
28400         * threads.h: Declared some new methods.
28401
28402 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
28403
28404         * reflection.h: Update after changes to the managed types.
28405
28406         * reflection.c (encode_custom_modifiers): New helper function.
28407
28408         * reflection.c (method_encode_signature): Emit custom modifiers.
28409
28410         * reflection.c (field_encode_signature): Emit custom modifiers.
28411
28412 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
28413
28414         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
28415
28416         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
28417         implementation.
28418
28419         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
28420         icall.
28421
28422         * object.c (mono_field_get_value_object): New function.
28423
28424         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
28425         specific.
28426
28427 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
28428
28429         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
28430         return a preallocated out-of-memory exception instance.
28431
28432         * object.c (out_of_memory): Use the new function.
28433
28434         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
28435         flag is before the custom modifiers. Fixes #49802.
28436
28437 2003-11-16  Martin Baulig  <martin@ximian.com>
28438
28439         * class.c (mono_class_is_open_constructed_type): Implemented the
28440         MONO_TYPE_GENERICINST case.
28441
28442 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
28443
28444         * assembly.c (mono_assembly_fill_assembly_name): New function to
28445         fill out the MonoAssemblyName structure.
28446         (mono_assembly_open): Use the new function.
28447
28448         * icall.c (fill_reflection_assembly_name): New helper function.
28449
28450         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
28451         new function.
28452
28453         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
28454
28455 2003-11-15  Martin Baulig  <martin@ximian.com>
28456
28457         * class.c (mono_class_is_open_constructed_type): New public
28458         function; checks whether a type is an open constructed type,
28459         ie. whether it still contains type parameters.
28460         (mono_class_inflate_generic_type): If we're a type parameter and
28461         the inflated type is also a MONO_TYPE_(M)VAR, return the original
28462         type.
28463
28464         * class.h (MonoGenericInst): Added `guint32 is_open'.
28465
28466         * loader.c (method_from_methodspec): Check whether we're an open
28467         or closed constructed type and set `ginst->is_open'.
28468
28469         * reflection.c (mono_reflection_bind_generic_parameters): Check
28470         whether we're an open or closed constructed type and set
28471         `ginst->is_open'.
28472         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
28473         from open constructed types.
28474
28475 2003-11-15  Martin Baulig  <martin@ximian.com>
28476
28477         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28478         a generic instance (instead of a generic type declaration) with
28479         unbound generic parameters, bind them to our actual types.
28480
28481 2003-11-14  Martin Baulig  <martin@ximian.com>
28482
28483         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
28484
28485         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28486         an interface type, populate `res->interfaces' with instantiated
28487         versions of all the interfaces we inherit.
28488
28489 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
28490
28491         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
28492         when MONO_PATH is set but doesn't contain the install dir.
28493
28494 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28495
28496         * icall.c:
28497         (ves_icall_Type_GetInterfaces): don't return an interface twice when
28498         it's also implemented in base classes. Fixes bug #50927.
28499
28500 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
28501
28502         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
28503         if this method is called from a finalizer. Fixes #50913.
28504
28505 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
28506
28507         * threads.c: Implement VolatileRead/VolatileWrite
28508
28509         * icall.c: Add new icalls for VolatileRead/VolatileWrite
28510
28511 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28512
28513         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
28514         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
28515         2.95.3.
28516
28517         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
28518         from Peter Ross (pro@missioncriticalit.com).
28519         
28520 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
28521
28522         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
28523
28524 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28525
28526         * assembly.c (mono_assembly_load_references): Disable check because it
28527         triggers on older corlibs which lots of people have.
28528
28529 2003-11-12  Jackson Harper  <jackson@ximian.com>
28530
28531         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
28532         load corlib.dll if mscorlib.dll is not found.
28533         * assembly.h: Remove corlib name define.
28534         * class.c:
28535         * domain.c:
28536         * image.c: Change corlib name to mscorlib.
28537         
28538 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28539
28540         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
28541
28542 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
28543
28544         * appdomain.h: Added loader_optimization here to sync with the C#
28545         code, and add disallow_binding_redirects field.
28546
28547 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28548
28549         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
28550
28551         * reflection.c (mono_image_build_metadata): Fix crash on modules
28552         with no types.
28553
28554         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
28555
28556         * icall.c (ves_icall_get_method_info): Return callingConvention as
28557         well.
28558
28559         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
28560         namespaces from the EXPORTEDTYPE table as well.
28561
28562         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
28563         from all modules inside the assembly.
28564         
28565 2003-11-11  Martin Baulig  <martin@ximian.com>
28566
28567         * reflection.c (mono_reflection_bind_generic_parameters): Make
28568         this work for interfaces.
28569
28570 2003-11-11  Martin Baulig  <martin@ximian.com>
28571
28572         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
28573
28574 2003-11-11  Martin Baulig  <martin@ximian.com>
28575
28576         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
28577         "MonoInflatedMethod" and "MonoInflatedCtor".
28578
28579 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28580
28581         * reflection.c (resolution_scope_from_image): Use the assembly table
28582         from the manifest module, since other modules don't have it.
28583
28584         * debug-helpers.c (mono_type_full_name): New helper function.
28585
28586         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
28587
28588         * image.c (mono_image_load_file_for_image): New public function which
28589         is a replacement for the load_file_for_image in class.c.
28590
28591         * assembly.c (mono_assembly_load_module): A wrapper for the function
28592         above which does assembly association and reference loading too.
28593
28594         * class.c (mono_class_from_name): Call mono_assembly_load_module.
28595
28596 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28597
28598         * appdomain.c: not all of the attributes for the full assembly name
28599         are required and the order doesn't matter. Fixes bug #50787.
28600
28601 2003-11-10  Dick Porter  <dick@ximian.com>
28602
28603         * locales.c: Use platform-endian UTF16
28604
28605 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28606
28607         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28608         
28609 2003-11-10  Martin Baulig  <martin@ximian.com>
28610
28611         * metadata.c
28612         (mono_metadata_load_generic_params): Make this actually work.
28613
28614         * reflection.c (mono_reflection_bind_generic_parameters): If our
28615         parent is a generic instance, pass all the `types' to it, no
28616         matter whether it has the same number of type parameters or not.
28617
28618 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28619
28620         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28621
28622         * assembly.c (mono_assembly_load_references): Move the image<->assembly
28623         assignment code to this function so it gets called recursively for all
28624         modules.
28625
28626         * image.c (load_modules): Remove the assembly assignment since it is
28627         now done by mono_assembly_load_references.
28628         
28629         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28630         Add 'module' argument.
28631         (mono_module_get_types): New helper function.
28632         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
28633
28634 2003-11-08  Martin Baulig  <martin@ximian.com>
28635
28636         * class.c (mono_class_inflate_generic_method): Interface method
28637         don't have a header.
28638
28639         * reflection.c (mono_image_get_methodspec_token): Take an
28640         additional `MonoGenericInst *' argument instead of reading it from
28641         the header; this is necessary to support interfaces.
28642         (mono_image_create_token): Pass the `MonoGenericInst *' from the
28643         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
28644         (inflated_method_get_object): Take an additional `MonoGenericInst *'
28645         argument.
28646
28647         * reflection.h (MonoReflectionInflatedMethod): Added
28648         `MonoGenericInst *ginst'.
28649
28650 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
28651
28652         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
28653
28654 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
28655
28656         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
28657
28658 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
28659
28660         * reflection.c 
28661         (reflection_methodbuilder_from_method_builder):
28662         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
28663         initialize a ReflectionMethodBuilder structure.
28664         (mono_image_get_methodbuilder_token):
28665         (mono_image_get_ctorbuilder_token): New functions to emit memberref
28666         tokens which point to types in another module inside the same assembly.
28667
28668         * reflection.c: Use the new helper functions.
28669         
28670         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
28671
28672         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
28673         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
28674
28675         * reflection.c (resolution_scope_from_image): Emit a moduleref if
28676         neccesary.
28677
28678         * reflection.c (mono_image_build_metadata): Emit metadata only for the
28679         current module. Emit the manifest only for the main module.
28680
28681         * reflection.c (mono_image_create_token): Add assertion when a 
28682         memberref needs to be created.
28683
28684         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
28685
28686         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
28687         larger buffer for the custom attribute blob. Fixes #50637.
28688         
28689 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28690
28691         * threadpool.c: notify listener on async processing handles after
28692         invoking the async callback. Thanks to Zoltan.
28693
28694 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28695
28696         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
28697         avoid code duplication.
28698
28699         * reflection.h (MonoDynamicImage): New type which is currently unused,
28700         but will be used through the ref.emit code in place of 
28701         MonoDynamicAssembly.
28702
28703         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28704         object layout.
28705
28706         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
28707         a MonoDynamicImage instead of just a MonoImage.
28708         
28709         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
28710         icalls to ModuleBuilder but keep their semantics, so they will work
28711         with moduleb->assemblyb. This will change later.
28712         
28713 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28714
28715         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28716         object layout.
28717
28718         * reflection.c (mono_image_build_metadata): Avoid creation of a default
28719         main module, since it is now done by the managed code.
28720
28721 2003-11-03  Martin Baulig  <martin@ximian.com>
28722
28723         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
28724         `ginst->klass' here.
28725         (method_encode_methodspec): Don't use the `ginst->generic_method's
28726         klass if it's a generic instance, use `ginst->klass' in this case.
28727
28728 2003-11-03  Martin Baulig  <martin@ximian.com>
28729
28730         * reflection.c (mono_image_get_generic_method_param_info):
28731         Removed, use mono_image_get_generic_param_info() instead.
28732         (mono_image_get_type_info): Write the GenericParam table before
28733         the Method table.  This is neccessary because in the GenericParam
28734         table, type parameters of the class (ie. '!0' etc.) must come
28735         before the ones from its generic methods (ie. '!!0' etc).
28736
28737 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28738
28739         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
28740
28741 2003-11-02  Martin Baulig  <martin@ximian.com>
28742
28743         * reflection.c (create_generic_typespec): Take a
28744         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
28745         the generic parameters from it.
28746
28747 2003-11-02  Martin Baulig  <martin@ximian.com>
28748
28749         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
28750         instead of a `MonoClassField *' since we just need the type.
28751         (create_generic_typespec): New static function.  Creates a
28752         TypeSpec token for a generic type declaration.
28753         (mono_image_get_generic_field_token): New static function.
28754         (mono_image_create_token): If we're a FieldBuilder in a generic
28755         type declaration, call mono_image_get_generic_field_token() to get
28756         the token.
28757
28758 2003-11-02  Martin Baulig  <martin@ximian.com>
28759
28760         * reflection.h
28761         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
28762         `MonoReflectionGenericInst *declaring_type' and
28763         `MonoReflectionGenericInst *reflected_type' fields.
28764
28765         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
28766         `MonoReflectionGenericInst *declaring_type' and a
28767         `MonoReflectionGenericInst *reflected_type' argument instead of a
28768         single `MonoReflectionGenericInst *type' one.  Set
28769         `res->declaring_type' and `res->reflected_type' from them.
28770         (mono_reflection_inflate_field): Likewise.      
28771
28772 2003-11-02  Martin Baulig  <martin@ximian.com>
28773
28774         * class.c (mono_class_setup_vtable): Don't store generic methods
28775         in the vtable.  
28776
28777 2003-11-02  Martin Baulig  <martin@ximian.com>
28778
28779         * reflection.h (MonoReflectionGenericInst): Added
28780         `MonoReflectionType *declaring_type'.
28781
28782         * reflection.c (mono_reflection_bind_generic_parameters): Use
28783         `if (tb->parent)' instead of `klass->parent'.
28784
28785 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
28786
28787         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
28788         with an empty ASSEMBLY table.
28789
28790         * reflection.c (mono_image_build_metadata): Avoid using the same loop
28791         variable in the inner and outer loops.
28792
28793 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
28794
28795         * metadata.h (mono_metadata_make_token): Put parentheses around macro
28796         argument.
28797
28798         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
28799         
28800         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
28801         icalls. Instead, do everything in managed code. This is needed since
28802         it is hard to restore the original domain etc. in unmanaged code in the
28803         presence of undeniable exceptions.
28804
28805         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
28806         New icalls to push and pop appdomain refs.
28807
28808 2003-10-31  Martin Baulig  <martin@ximian.com>
28809
28810         * class.c (inflate_generic_type): Renamed to
28811         mono_class_inflate_generic_type() and made it public.
28812
28813         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
28814         New interncall.
28815
28816         * loader.c (mono_field_from_memberref): Also set the retklass for
28817         typespecs.
28818
28819         * fielder.c (mono_image_get_inflated_field_token): New static
28820         method; creates a metadata token for an inflated field.
28821         (mono_image_create_token, fixup_method): Added support for
28822         "MonoInflatedField".
28823         (fieldbuilder_to_mono_class_field): New static function.
28824         (mono_reflection_inflate_field): New public function.
28825
28826         * reflection.h
28827         (MonoReflectionGenericInst): Added `MonoArray *fields'.
28828         (MonoReflectionInflatedField): New typedef.     
28829
28830 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
28831
28832         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
28833         for Solaris and other platforms without s6_addr16
28834
28835 2003-10-30  Martin Baulig  <martin@ximian.com>
28836
28837         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28838         argument instead of two.
28839         (mono_class_inflate_generic_signature): Likewise.
28840         (inflate_generic_header): Likewise.
28841         (mono_class_inflate_generic_method): Likewise.  In addition, if
28842         `ginst->klass' is set, it becomes the new `method->klass'.
28843
28844         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28845         field.
28846
28847         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28848         first byte. [FIXME]
28849         (method_encode_methodspec): If we have generic parameters, create
28850         a MethodSpec instead of a MethodRef.
28851         (fixup_method): Added support for "MonoInflatedMethod" and
28852         "MonoInflatedCtor".
28853         (mono_image_create_token): Added support for "MonoInflatedMethod"
28854         and "MonoInflatedCtor".
28855         (inflated_method_get_object): New static function; returns a
28856         managed "System.Reflection.MonoInflatedMethod" object.
28857         (mono_reflection_bind_generic_method_parameters): Return a
28858         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28859         (mono_reflection_inflate_method_or_ctor): Likewise.
28860         (mono_image_get_generic_method_param_info): Initialize unused
28861         fields to zero.
28862         (mono_image_get_generic_param_info): Likewise.
28863
28864         * reflection.h (MonoReflectionInflatedMethod): New public
28865         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28866         "S.R.MonoInflatedCtor" classes.
28867
28868         * loader.c (method_from_memberref): If we're a TypeSpec and it
28869         resolves to a generic instance, inflate the method.
28870
28871 2003-10-28  Dick Porter  <dick@ximian.com>
28872
28873         * object.c (mono_runtime_run_main): Convert command-line arguments
28874         into utf8, falling back to the user's locale encoding to do so.
28875
28876 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28877
28878         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28879         at this time.
28880
28881         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28882
28883         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28884         up icalls at method definition time. Partially fixes #33569.
28885
28886 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28887
28888         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28889         marshalling of arrays. Fixes #50116.
28890
28891         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28892
28893         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28894         points to a vtable in the dying appdomain.
28895
28896         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28897         listeners into unmanaged code inside the lock.
28898
28899         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28900         domains and add some comments.
28901
28902 2003-10-25  Martin Baulig  <martin@ximian.com>
28903
28904         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28905
28906         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28907
28908         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28909         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28910         currently parsing.  Create the generic class and store it in
28911         `generic_inst->klass' before parsing the type arguments.  This is
28912         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28913         for an example.
28914         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28915         to support recursive typespec entries.
28916
28917         * class.c (mono_class_setup_parent): If our parent is a generic
28918         instance, we may get called before it has its name set.
28919         (mono_class_from_generic): Splitted into
28920         mono_class_create_from_generic() and mono_class_initialize_generic().
28921
28922 2003-10-25  Martin Baulig  <martin@ximian.com>
28923
28924         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28925         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28926         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28927         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28928
28929         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28930         (create_typespec): Likewise.
28931         (mono_reflection_bind_generic_parameters): Return a
28932         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28933         (mono_reflection_inflate_method_or_ctor): New public function.
28934
28935         * reflection.h (MonoReflectionGenericInst): New typedef.        
28936
28937 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28938
28939         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28940         inside the domain lock. Fixes #49993.
28941         
28942         * object.c (mono_class_vtable): When typed allocation is used, 
28943         allocate vtables in the GC heap instead of in the mempool, since the
28944         vtables contain GC descriptors which are used by the collector even
28945         after the domain owning the mempool is unloaded.
28946
28947         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28948
28949         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28950         reflect what it does. Also invalidate mempools instead of freeing
28951         them if a define is set.
28952
28953         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28954         of the appdomain.
28955         
28956         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28957         hold the finalizable objects in this domain.
28958
28959         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28960         appdomain.
28961
28962         * appdomain.c (mono_domain_set): New function to set the current
28963         appdomain, but only if it is not being unloaded.
28964
28965         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28966         appdomain which is being unloaded.
28967         
28968         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28969         unloading of the root appdomain.
28970
28971         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28972         icall to execute a method in another appdomain. Intended as a 
28973         replacement for InternalSetDomain, which can confuse the code 
28974         generation in the JIT.
28975
28976         * appdomain.c (mono_domain_is_unloading): New function to determine
28977         whenever an appdomain is unloading.
28978
28979         * appdomain.c (mono_domain_unload): New function to correctly unload
28980         an appdomain.
28981
28982         * assembly.c (mono_assembly_load_references): Check that an assembly
28983         does not references itself.
28984
28985         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28986         domain manually, it asks the finalizer thread to do it, then waits for
28987         the result. Also added a timeout.
28988
28989         * icall.c: Register the new icalls.
28990
28991         * threads.h threads.c: Export the mono_gc_stop_world and 
28992         mono_gc_start_world functions.
28993         
28994         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28995         function to fill out the mempool with 0x2a.
28996
28997 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28998
28999         * reflection.h (MonoReflectionMethodAux): New structure to store
29000         information which is rarely used, thus is not in the MonoMethod
29001         structure.
29002
29003         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
29004         store the aux info.
29005
29006         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
29007         and marshalling info into the aux structure.
29008
29009         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
29010         from the aux structure.
29011
29012         * loader.c (mono_method_get_param_names): Retrieve the param names from
29013         the aux structure.
29014         
29015 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
29016
29017         * exception.h exception.c: Add AppDomainUnloadedException && fix 
29018         warning.
29019
29020 2003-10-21  Dick Porter  <dick@ximian.com>
29021
29022         * socket-io.c
29023         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
29024         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
29025
29026 2003-10-21  Martin Baulig  <martin@ximian.com>
29027
29028         * reflection.c (mono_reflection_bind_generic_parameters):
29029         `klass->parent' is NULL for interfaces.
29030
29031 2003-10-21  Martin Baulig  <martin@ximian.com>
29032
29033         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29034
29035 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
29036
29037         * exception.c (mono_exception_from_name_msg): New helper function for
29038         creating exceptions and initializing their message field.
29039
29040         * exception.c: Simplify functions using the new helper.
29041
29042         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
29043         New function.
29044
29045         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
29046         mono_raise_exception, since otherwise gcc doesn't generate the function
29047         epilog for raise_exception, confusing the stack unwinding in the JIT.
29048         Fixes #45043.
29049
29050         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
29051         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
29052         Fixes #49499.
29053
29054 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29055
29056         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
29057         utf8.
29058
29059 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
29060
29061         * icall.c: Removed GetUninitializedObject method because
29062           AllocateUninitializedClassInstance does the same.
29063
29064 2003-10-18  Martin Baulig  <martin@ximian.com>
29065
29066         * class.c (inflate_generic_signature): Renamed to
29067         mono_class_inflate_generic_signature() and made it public.
29068         (my_mono_class_from_generic_parameter): New static function; if we
29069         don't already have the generic parameter's MonoClass, create a
29070         very simple one which is just used internally in the runtime and
29071         not passed back to managed code.
29072
29073         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
29074
29075         * metadata.h (MonoMethodSignature): Moved the
29076         `MonoGenericParam *gen_params' to the MonoMethodHeader.
29077         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
29078
29079         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
29080         ves_icall_MonoMethod_GetGenericArguments(); this is now an
29081         interncall on the MonoMethod class, not on MethodInfo.
29082         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
29083         calling mono_reflection_bind_generic_method_parameters() directly.
29084
29085         * loader.c (mono_method_get_signature): If this is a MethodSpec;
29086         return the already computed `method->signature'.
29087         (method_from_methodspec): New static function to load a method
29088         from a MethodSpec entry.
29089         (mono_get_method_from_token): Call the new method_from_methodspec()
29090         for MethodSpec tokens.  
29091         (mono_get_method_from_token): If we're a generic method, load the
29092         type parameters.
29093
29094         * reflection.c (mono_image_get_memberref_token): Allow
29095         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
29096         table.
29097         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
29098         (mono_image_create_token): First check whether it's a generic
29099         method (so we'd need to create a MethodSpec), then do the other
29100         two alternatives.
29101         (mono_reflection_bind_generic_method_parameters): Return a
29102         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
29103         called directly from the interncall.
29104
29105 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
29106
29107         * reflection.c (load_public_key): Move loading of the public key
29108         into managed code.
29109
29110         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
29111
29112         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
29113         fields.
29114
29115         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
29116         culture, hash_alg and public_key. Fixes #49555.
29117
29118 2003-10-17  Martin Baulig  <martin@ximian.com>
29119
29120         * class.h (MonoGenericInst): Moved this declaration here and added
29121         `MonoMethod *generic_method'.
29122
29123         * icall.c
29124         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
29125         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
29126
29127         * metadata.c (mono_metadata_type_equal): Two types of
29128         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
29129         index; ie. don't compare the address of the `MonoGenericParam'
29130         structure.
29131         (mono_metadata_load_generic_params): Removed the `MonoMethod
29132         *method' argument.
29133
29134         * metadata.h (MonoGenericInst): Moved declaration to class.h.
29135         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
29136
29137         * reflection.c (method_encode_signature): Encode the number of
29138         generic parameters.
29139         (encode_generic_method_sig): New static function.
29140         (method_encode_methodspec): New static function; creates an entry
29141         in the MethodSpec table for a generic method.
29142         (mono_image_get_methodspec_token): New static function.
29143         (mono_image_create_token): Call mono_image_get_methodspec_token()
29144         for generic methods.
29145         (mono_reflection_bind_generic_method_parameters): New public
29146         function.  Instantiates a generic method.
29147
29148 2003-10-16  Martin Baulig  <martin@ximian.com>
29149
29150         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
29151         *gen_params' here from MonoMethodHeader.
29152
29153         * metadata.c (mono_metadata_parse_method_signature): If we have
29154         generic parameters, initialize `method->gen_params' and then set
29155         the correct `type->data.generic_param' in all the parameters.
29156
29157 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
29158
29159         * threads.c (mono_threads_get_default_stacksize): New function to 
29160         return the default stacksize.
29161
29162         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
29163         termination of the finalizer thread, since the previous method had
29164         race conditions. Fixes #49628.
29165
29166         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
29167         as for the other managed threads.
29168
29169 2003-10-16  Martin Baulig  <martin@ximian.com>
29170
29171         * class.c (inflate_generic_signature): Copy `generic_param_count'
29172         and `gen_params'.
29173
29174         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
29175         New interncall.
29176
29177         * metadata.c (mono_metadata_parse_method_signature): Actually set
29178         the `method->generic_param_count' here.
29179         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
29180
29181 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
29182
29183         * object.h: Add a new field to TypedRef to simplify the implementation
29184         of the REFANY opcodes in the JIT.
29185
29186         * icall.c: Make use of the new field.
29187
29188         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
29189         dynamically.
29190
29191 2003-10-15  Martin Baulig  <martin@ximian.com>
29192
29193         * class.c (mono_class_from_gen_param): Renamed to
29194         mono_class_from_generic_parameter() and moved most of the
29195         functionality from mono_reflection_define_generic_parameter()
29196         here; ie. we create a "real" class here.
29197         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
29198         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
29199         previously been called.
29200
29201         * class.h (MonoGenericParam): Moved the declaration of this struct
29202         here from metadata.h and added `MonoMethod *method'.
29203
29204         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
29205         interncall.
29206
29207         * loader.c (mono_get_method_from_token): If we have any generic
29208         parameters, call mono_metadata_load_generic_params() to read them
29209         from the MONO_TABLE_GENERICPAR.
29210
29211         * metadata.c (mono_metadata_load_generic_params): Added
29212         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
29213
29214         * metadata.h (MonoMethodSignature): Replaced
29215         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
29216         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
29217
29218         * reflection.c (mono_reflection_define_generic_parameter): Moved
29219         most of the functionality into the new
29220         mono_class_from_generic_parameter(); set the `method' field if
29221         we're a method parameter.       
29222
29223 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
29224
29225         * marshal.c (emit_struct_conv): if native size is 0
29226         emit no code.
29227
29228 2003-10-14  Martin Baulig  <martin@ximian.com>
29229
29230         * icall.c: The generics API has changed in the spec since it was
29231         added to System.Type; these modifications make it match the spec
29232         again.
29233         (ves_icall_Type_GetGenericParameters): Renamed to
29234         `ves_icall_Type_GetGenericArguments'.
29235         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
29236         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
29237         `ves_icall_MonoType_get_HasGenericArguments'.
29238         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
29239         `ves_icall_MonoType_get_IsGenericParameter'.
29240         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
29241         this is no interncall anymore.
29242         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
29243         `ves_icall_TypeBuilder_get_IsGenericParameter'.
29244
29245 2003-10-14  Martin Baulig  <martin@ximian.com>
29246
29247         * reflection.c (mono_reflection_bind_generic_parameters): Also
29248         inflate generic methods if we're reading the class from IL.
29249
29250 2003-10-13  Martin Baulig  <martin@ximian.com>
29251
29252         * reflection.c (mono_reflection_define_generic_parameter): This
29253         method isn't called directly from the icall anymore; take a
29254         `MonoReflectionAssemblyBuilder *' so we can use this for type and
29255         method generic parameters.
29256         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
29257         (method_builder_encode_signature): Encode generic parameters.
29258         (mono_image_get_method_info): Write generic params to the
29259         MONO_TABLE_GENERICPARAM table.
29260
29261         * reflection.h (MonoReflectionMethodBuilder): Added
29262         `MonoArray *generic_params'.
29263
29264         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
29265
29266         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
29267         wrapper for mono_reflection_define_generic_parameter().
29268         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
29269
29270 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
29271
29272         * marshal.h: Add missing function to fix build.
29273
29274         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
29275         the SetLastError pinvoke attribute.
29276
29277         * marshal.c (mono_marshal_set_last_error): New helper function called
29278         by the generated code.
29279         
29280         * marshal.c (mono_mb_emit_branch): New helper function.
29281
29282         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
29283
29284         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
29285         classes as parameters and return values of delegates. Fixes #29256. 
29286
29287 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
29288
29289         * locales.c: use gint32 in non HAVE_ICU case
29290
29291 2003-10-11  Martin Baulig  <martin@ximian.com>
29292
29293         * mono-debug.c (mono_debug_add_method): Added a workaround for
29294         bug #48591.
29295
29296 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
29297
29298         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
29299         delegates passed to native code must use the STDCALL calling 
29300         convention. Fixes #35987.
29301
29302 2003-10-10  Martin Baulig  <martin@ximian.com>
29303
29304         * class.c (inflate_generic_type): If we're inflating for a generic
29305         type instance (and not for a generic method), return
29306         MONO_TYPE_MVAR unchanged.
29307
29308 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29309
29310         * string-icalls.c: Join ignores null strings in the source array.
29311         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
29312         * threads.c: GetAvailableTheads is slightly more accurate.
29313
29314 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
29315
29316         * threads.h threads.c : add mono_threads_set_default_stacksize
29317         and pass default to CreateThread calls.
29318
29319 2003-10-09  Dick Porter  <dick@ximian.com>
29320
29321         * icall.c:
29322         * locales.h:
29323         * locales.c: Internal calls for constructing CultureInfo and
29324         related objects from libicu (if its available.)
29325
29326 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
29327
29328         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
29329
29330 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29331
29332         * threadpool.c: added an argument to async_invoke_thread that is the
29333         item to process, pass the MonoAsyncResult to the thread start function
29334         when creating a new thread. This way we don't need to acquire any lock
29335         when we're creating a new thread. Readded a semaphore for faster
29336         response times (instead of that Sleep i added).
29337
29338 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
29339
29340         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
29341         get daylight change dates better on Windows, fix handling
29342         of platforms without tm_gmtoff.
29343
29344 2003-10-06  Martin Baulig  <martin@ximian.com>
29345
29346         * class.c (inflate_generic_method): Renamed to
29347         mono_class_inflate_generic_method() and made public.
29348         (mono_class_init): Don't inflate the generic methods here.
29349         (mono_class_from_generic): Added `gboolean inflate_methods'
29350         argument.  Inflate the methods here.
29351
29352         * loader.c (mono_method_get_param_names): Ignore instances of
29353         generic types for the moment.
29354
29355         * reflection.c (fixup_method): Added support for inflated methods.
29356         (mono_image_create_token): Use mono_image_get_methodref_token()
29357         for inflated methods.
29358         (mono_custom_attrs_from_param): Ignore instances of generic types
29359         for the moment.
29360         (mono_reflection_bind_generic_parameters): New public function.
29361         Moved all the functionality from
29362         ves_icall_Type_BindGenericParameters() here and added support for
29363         dynamic types.
29364         (mono_reflection_define_generic_parameter): Initialize
29365         `klass->methods' here.
29366
29367         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
29368         functionality into mono_reflection_define_generic_parameter().
29369         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
29370         TypeBuilder, return that TypeBuilder.
29371
29372 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29373
29374         * appdomain.c: removed mono_delegate_semaphore.
29375
29376         * threadpool.c:
29377         (mono_thread_pool_add): moved hash table creation inside and the thread 
29378         creation outside of the critical region.
29379         (mono_thread_pool_finish): removed obsolete code.
29380         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
29381         continue or exit the thread depending on the queue.
29382
29383 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
29384
29385         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
29386         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
29387         handle more bool marshalling options
29388
29389 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
29390
29391         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
29392         arrays of structs. Also add a more descriptive error message when
29393         a structure member is marshalled as LPArray.
29394
29395 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
29396
29397         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29398         marshalling arrays of complex types. Fixes #29098. Also remove an
29399         usused and incomplete function.
29400
29401 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29402
29403         * gc.c: report heap_size - free_bytes as total memory allocated
29404         (bug#49362).
29405
29406 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
29407
29408         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
29409         fix timezone handling problems on Windows.
29410         
29411         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
29412         asserts when the year is outside the range handled by ms the functions.
29413
29414         * class.c (setup_interface_offsets): If the class is an interface,
29415         fill out its interface_offsets slot.
29416
29417 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29418
29419         * threadpool.c: mark threadpool threads as background.
29420
29421 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
29422
29423         * decimal.c - define DECINLINE to nothing if not using GCC
29424
29425 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
29426
29427         * assembly.c: More refcount fixes.
29428
29429 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29430
29431         * string-icalls.c: if we're not trimming, return the same string.
29432         When not splitting, don't create a new string.
29433
29434 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29435
29436         * image.c:
29437         (mono_image_open): increment the ref_count inside the critical section.
29438
29439 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
29440
29441         * image.c (mono_image_open): Fix reference counting bug.
29442
29443 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
29444
29445         * marshal.c (mono_marshal_type_size) struct alignment changed for 
29446         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
29447         64bits. Avoid leak in mono_marshal_get_native_wrapper when
29448         mono_lookup_pinvoke_call throws.        
29449
29450 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
29451
29452         * reflection.c (mono_reflection_parse_type): Fix #49114.
29453
29454         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
29455         temporary workaround for cygwin header problem.
29456
29457         * object.c (mono_object_isinst): Synchronize this with the code
29458         generated by the JIT for casts.
29459
29460 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
29461
29462         * reflection.c (encode_type): Fix #38332.
29463
29464 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
29465
29466         * marshal.c (mono_marshal_method_from_wrapper): New function to return
29467         the original method from the wrapper method.
29468
29469 2003-09-25  Martin Baulig  <martin@ximian.com>
29470
29471         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
29472         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
29473         (ves_icall_Type_get_IsGenericInstance): New interncall.
29474
29475 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
29476
29477         * object.c: fix cast warning in big endian code.
29478
29479 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
29480
29481         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
29482         
29483 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29484
29485         * assembly.c: don't call check_env from mono_assembly_load. It's
29486         already done once in mono_assemblies_init and may cause headaches when
29487         multiple threads are loading assemblies.
29488
29489 2003-09-19  Martin Baulig  <martin@ximian.com>
29490
29491         * reflection.c (mono_reflection_define_generic_parameter): Don't
29492         allocate `klass->methods', set `klass->flags' to
29493         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
29494
29495 2003-09-18  Martin Baulig  <martin@ximian.com>
29496
29497         * class.c (mono_class_init): Don't create `class->methods' if it's
29498         already initialized.
29499
29500         * metadata.c (mono_metadata_load_generic_params): Make this
29501         actually work.
29502
29503         * reflection.c (mono_reflection_define_generic_parameter): Set
29504         parent class and interfaces from the constraints.
29505
29506         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
29507         to keep this struct in sync with the declaration in TypeBuilder.cs.
29508
29509 2003-09-17  Martin Baulig  <martin@ximian.com>
29510
29511         * metadata.h (MonoType): Replaced the data's `int type_param'
29512         field with `MonoGenericParam *generic_param'.
29513         (MonoGenericParam): Added `MonoClass *klass'.
29514
29515         * class.c (mono_class_from_gen_param): Removed the
29516         `MonoImage *image' and `int type_num' arguments.
29517
29518         * metadata.c (mono_metadata_parse_generic_param): New static
29519         method; creates a MonoGenericParam which just contains the index.
29520         (do_mono_metadata_parse_type): Call
29521         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
29522         MONO_TYPE_MVAR.
29523
29524         * reflection.c (mono_image_typedef_or_ref): Generic type
29525         parameters may be in the same assembly, but never use a typedef
29526         for them.
29527         (mono_reflection_define_generic_parameter): We're now creating a
29528         "real" class for the type parameter; it's now safe to call
29529         mono_class_from_mono_type() on the class'es type, it'll do the
29530         right thing.
29531
29532 2003-09-16  Martin Baulig  <martin@ximian.com>
29533
29534         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
29535         `symfile->range_entry_size' and `symfile->class_entry_size' here;
29536         the `symfile' data structure must be fully initialized before it
29537         gets added to the table.
29538
29539 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
29540
29541         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
29542
29543         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
29544         class init trampolines.
29545
29546 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
29547
29548         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
29549         to the built-in profiler to turn off time and allocation profiling
29550         respectively.
29551
29552 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
29553
29554         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
29555         g_direct_equal.
29556
29557         * debug-helpers.c (mono_method_full_name): Print the wrapper type
29558         in human readable form.
29559
29560 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
29561
29562         * reflection.c icall.c: Fixed warnings.
29563
29564         * image.c (load_class_names): Use a temporary hash table to hold the
29565         namespaces in order to avoid doing many string comparisons.
29566
29567         * image.h: Fix typo.
29568
29569         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
29570         Pass NULL instead of g_direct_equal to the GHashTable constructor 
29571         since the NULL case is short-circuited inside g_hash_table_lookup, 
29572         leading to better performance.  
29573
29574         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
29575         obtain the first custom attribute for a given index. Depends on the
29576         CustomAttribute table being sorted by the parent field.
29577
29578         * reflection.c (mono_custom_attrs_from_index): Use the new function 
29579         for better performance.
29580
29581 2003-09-07  Martin Baulig  <martin@ximian.com>
29582
29583         * class.c (mono_class_init): If we're a generic instance, inflate
29584         all our methods instead of loading them from the image.
29585         (mono_class_from_generic): Set `class->methods = gklass->methods'.
29586
29587 2003-09-07  Martin Baulig  <martin@ximian.com>
29588
29589         * mono-debug-debugger.c: Added support for constructors.
29590
29591 2003-09-06  Martin Baulig  <martin@ximian.com>
29592
29593         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
29594         New interncall.
29595
29596         * reflection.c (mono_reflection_setup_generic_class): Call
29597         ensure_runtime_vtable() to create the vtable.
29598
29599 2003-09-05  Martin Baulig  <martin@ximian.com>
29600
29601         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
29602         MONO_TYPE_MVAR.
29603
29604 2003-09-04  Martin Baulig  <martin@ximian.com>
29605
29606         * reflection.c (mono_reflection_define_generic_parameter): Generic
29607         parameters start with zero.
29608
29609 2003-09-04  Martin Baulig  <martin@ximian.com>
29610
29611         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29612
29613         * reflection.h (MonoReflectionGenericParam): New typedef.
29614         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
29615         the generic parameters from the managed TypeBuilder.
29616
29617         * reflection.c (mono_reflection_define_generic_parameter): New function.
29618         (mono_reflection_create_runtime_class): Encode generic parameters.
29619         (mono_reflection_setup_generic_class): New function; this is
29620         called after adding adding all generic params to the TypeBuilder.
29621         (encode_type): Added MONO_TYPE_VAR.
29622
29623 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
29624
29625         * class.h class.c (mono_class_needs_cctor_run): Moved this method
29626         here from the JIT.
29627
29628         * assembly.h assembly.c: Moved the AOT loading code into an assembly
29629         load hook.
29630
29631 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
29632
29633         * reflection.h reflection.c class.h class.c: Delete duplicate 
29634         definition of mono_type_get_name () from reflection.c and export the
29635         one in class.c.
29636
29637         * class.c: Class loading fixes from Bernie Solomon 
29638         (bernard@ugsolutions.com).
29639
29640         * reflection.c: Endianness fixes from Bernie Solomon 
29641         (bernard@ugsolutions.com).
29642         
29643 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
29644
29645         * assembly.h assembly.c: Define a file format version for AOT
29646         libraries.
29647         
29648         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
29649
29650         * appdomain.h (MonoJitInfo): New field to determine whenever the
29651         code is domain neutral.
29652         
29653 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
29654
29655         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
29656
29657 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
29658
29659         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
29660         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
29661         Avoid caching the result since strings must be domain specific. Fixes
29662         #48050.
29663
29664 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
29665
29666         * marshal.c (mono_marshal_init): Make this callable multiple times
29667         since it is hard to find a correct place to call it.
29668
29669         * object.c (mono_runtime_class_init): Execute static constructors in
29670         the correct appdomain.
29671
29672         * image.c (build_guid_table): Handle the case when multiple images have
29673         the same GUID.
29674
29675 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29676
29677         * icall.c: added a couple of icalls for System.Web.
29678
29679 2003-08-28  Martin Baulig  <martin@ximian.com>
29680
29681         * icall.c (ves_icall_Type_BindGenericParameters): Use
29682         `klass->generic_inst' instead of `&klass->byval_arg' in the
29683         mono_type_get_object() call.  The returned type must be
29684         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
29685
29686 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
29687
29688         * NOTES: New file.
29689
29690         * object.c (mono_class_proxy_vtable): Make it thread safe.
29691
29692         * pedump.c: Fix warning.
29693
29694         * object.c appdomain.h: Get rid of metadata_section. 
29695         It is no longer needed and it was causing deadlocks with domain->lock.
29696
29697         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
29698
29699 2003-08-26  Martin Baulig  <martin@ximian.com>
29700
29701         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
29702
29703 2003-08-26  Martin Baulig  <martin@ximian.com>
29704
29705         * pedump.c (main): Call mono_metadata_init(),
29706         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
29707         and mono_loader_init().
29708
29709 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
29710
29711         * loader.h: Add missing include to fix build.
29712
29713         * image.h: mono_image_load_references is no more.
29714
29715         * assembly.c: Reworked assembly loading to make it really thread safe.
29716         After these changes, the assembly returned by mono_assembly_open is
29717         fully initialized, i.e. all its references assemblies are loaded.
29718
29719         * assembly.c (mono_image_load_references): Renamed to 
29720         mono_assembly_load_references, and made private, since clients no
29721         longer need to call it.
29722
29723         * class.c: Removed calls to mono_assembly_load_references, since it was
29724         a source of deadlocks.
29725
29726         * loader.h loader.c class.h class.c: Protect data structures using a 
29727         new lock, the loader lock.
29728
29729         * class.c (mono_class_setup_vtable): Create temporary hash tables and
29730         GPtrArrays only when needed.
29731
29732         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
29733         into empty structures by mcs. Fixes pinvoke7.cs.
29734         
29735         * domain.c (mono_init): Call a new initialization function.
29736
29737         * appdomain.c (mono_runtime_init): Call the new initializer function
29738         of the marshal module.
29739
29740         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
29741         inserted into empty structures by mcs. Fixes pinvoke7.cs.
29742
29743         * marshal.h marshal.c: Added locks around the wrapper caches to make
29744         this module thread safe.
29745
29746         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
29747         this argument. Fixes pinvoke1.exe.
29748
29749 2003-08-25  Lluis Sanchez <lluis@ximian.com>
29750
29751         * object.h: Added call_type field to MonoMethodMessage and the corresponding
29752         enumeration of values. Removed fields to store remote call output values in
29753         MonoAsyncResult. Not needed any more.
29754         * object.c: Initialize call_type and async_result fields in mono_message_init.
29755         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
29756         dispatching the message.
29757         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
29758         async call to finish. To do it use a message with EndInvoke call type.
29759
29760 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
29761
29762         * loader.h loader.c (mono_method_hash_marhal_info): New function which
29763         determines whenever a method has marshalling info.
29764
29765 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29766
29767         * assembly.c: fix the build on windows.
29768
29769 2003-08-22 Lluis Sanchez <lluis@ximian.com>
29770
29771         * object.cs: Fixed bug #47785.
29772
29773 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
29774
29775         * string-icalls.c (StringReplace): If their are no occurances of
29776         the old string found return a reference to the supplied
29777         string. This saves some memory and matches MS behavoir.
29778         
29779 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29780
29781         * socket-io.c: fixed compilation for systems that define AF_INET6
29782         and don't define SOL_IP/SOL_IPV6.
29783
29784 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
29785
29786         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
29787         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
29788
29789         * rawbuffer.c rawbuffer.h: Make this module thread safe.
29790
29791         * domain.c: Make this module thread safe.
29792
29793         * domain.c (mono_init): Call new initialization function.
29794
29795         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
29796         reference types too. Fixes #38812.
29797
29798         * image.c (mono_image_init): Fixed warnings.
29799
29800         * class.c (mono_class_from_typeref): Handle assembly load failure
29801         correctly.
29802
29803         * appdomain.c (add_assemblies_to_domain): Handle the case when
29804         the references of an assembly are not yet loaded.
29805
29806         * metadata.c image.c assembly.c: Moved initialization of global
29807         variables to a separate function called at startup since lazy 
29808         initialization of these variables is not thread safe.
29809         
29810         * image.c assembly.c: Made this module thread safe by adding locks in 
29811         the appropriate places.
29812
29813         * domain.c (mono_init): Call the new initialization functions of the
29814         three modules.
29815
29816 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
29817
29818         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
29819           make a direct call. It is proxy's work to make the call asynchronous.
29820           mono_delegate_end_invoke(): If the targe is a proxy, just collect
29821           the return values.
29822         * object.cs: mono_method_call_message_new(): read AsyncResult and
29823           state object from parameters list, if this info is requested.
29824         * object.h: Added fields to store remote call output values in
29825           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
29826
29827 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29828
29829         * object.h: add needed fields to MonoThread.
29830         * threads.c, threads.h: allow registering a function to cleanup data
29831         allocated per thread by the JIT.
29832
29833 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29834
29835         * loader.h: portability fix by Bernie Solomon
29836         * <bernard@ugsolutions.com>.
29837
29838 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29839
29840         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29841         return a MonoArray. This simplifies the code and also ensures that
29842         the cache allways contains an object reference as a value.
29843
29844         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29845         function.
29846
29847 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29848
29849         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29850         fixes a problem with byte ordering when getting the address family for
29851         a socket.
29852
29853 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29854
29855         * .cvsignore: Added monosn.
29856
29857         * reflection.h reflection.c loader.c: Added support for parameter
29858         marshalling to dynamically created types. Fixes #47295.
29859
29860 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29861
29862         * rand.c: remove useless warnings.
29863
29864 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29865
29866         * class.c: implemented ldtoken for methods and fieldrefs.
29867
29868 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29869
29870         * threadpool.c: when mono_async_invoke was called, no one took care of
29871         monitoring the queue. So if the method invoked took some time and we
29872         got new async invoke requests after 500 ms (the thread created waited
29873         that long in WaitForSingleObject), the new async invoke was not called
29874         until the previous one finished.
29875
29876         This is fixed now. Thanks to Totte for helping with it.
29877
29878 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29879
29880         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29881
29882 2003-08-11  Martin Baulig  <martin@ximian.com>
29883
29884         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29885
29886 2003-08-06  Martin Baulig  <martin@ximian.com>
29887
29888         * mono-debug-debugger.c: Added support for static fields,
29889         properties and methods.
29890
29891 2003-08-06  Martin Baulig  <martin@ximian.com>
29892
29893         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29894         make this work for applications with multiple application domains.
29895
29896 2003-08-04  Martin Baulig  <martin@ximian.com>
29897
29898         * mono-debug-debugger.c: Completely reworked the type support; the
29899         most important thing is that we're now just using one single
29900         `MonoType' instance per type.
29901
29902 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29903
29904         * mono-endian.h, mono-endian.c, icall.c: Added icall
29905         ves_icall_System_Double_AssertEndianity to assert double word endianity
29906         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29907
29908 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29909
29910         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29911         support, icalls and fixes.
29912
29913 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29914
29915         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29916         classes that are a punctuation character in .NET is not the same a
29917         g_unichar_ispunct.
29918
29919 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29920
29921         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29922
29923 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29924
29925         * icall.c: Add new MemCopy internalcall.
29926         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29927         Simplified code; It is not necessary to handle all the cases here,
29928         as the C# code takes care of it.  Only handle the case of the name
29929         resource embedded into the assembly.
29930
29931         Changed signature to return the data pointer and the size of the
29932         data. 
29933
29934 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29935
29936         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29937         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29938
29939 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29940
29941         * socket-io.c: ignore EINTR error in select.
29942
29943 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29944
29945         * class.h, class.c: removed unused subclasses field in MonoClass.
29946
29947 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29948
29949         * icall.c: improve fix of get_base_definition(). If the parent class
29950           doesn't have the mehod, look at the parent of the parent.
29951         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29952           to check if a parameter is an in or out parameter
29953           (PARAM_ATTRIBUTE_IN is not set by default).
29954           mono_method_return_message_restore(): Use mono_class_value_size to
29955           get the size of a value type. mono_type_stack_size (parameterType)
29956           does not return the correct value if parameterType is byRef.
29957           mono_load_remote_field(), mono_load_remote_field_new(),
29958           mono_store_remote_field(), mono_store_remote_field_new():
29959           raise exception if the remote call returns an exception.
29960
29961 2003-07-28  Martin Baulig  <martin@ximian.com>
29962
29963         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29964         method.  This is a wrapper around mono_runtime_invoke() which
29965         boxes the instance object if neccessary.
29966
29967 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29968
29969         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29970         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29971
29972 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29973
29974         * icall.c: disable mcs bug workaround.
29975
29976 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29977
29978         * object.c (mono_runtime_class_init): Take the metadata_section
29979         mutex before obtaining the domain mutex.
29980
29981         * appdomain.h: Added definition of metadata_section mutex here. 
29982
29983         * object.c: define metadata_mutex here.
29984
29985 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29986
29987         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29988         fixed.
29989
29990 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29991
29992         * reflection.c: Fix bug #46669
29993
29994 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29995
29996         * exception.c:
29997         * exception.h:
29998         * icall.c:
29999         * object.h: fill in the type name for TypeLoadException.
30000
30001 2003-07-23  Ravi Pratap  <ravi@ximian.com>
30002
30003         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
30004         relationship between TypeBuilders while compiling corlib) and bug
30005         45993 (Array types returned from the runtime while compiling
30006         corlib were from the loaded corlib).
30007
30008 2003-07-22  Martin Baulig  <martin@ximian.com>
30009
30010         * mono-debug-debugger.c: Reworked the type support a bit more;
30011         distinguish between types and classes.
30012
30013 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
30014
30015         * icall.c: add IsArrayImpl icall.
30016
30017 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
30018
30019         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
30020         initializing real_size only once. Also fix bug #46602.
30021
30022 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
30023
30024         * object.c: Renamed mono_metadata_section to metadata_section.
30025
30026 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
30027
30028         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
30029           empty array if the type is an array. Fixed.
30030           ves_icall_MonoMethod_get_base_definition: if the base method
30031           is abstract, get the MethodInfo from the list of methods of
30032           the class.
30033         * reflection.c: ParameterInfo.PositionImpl should be zero-based
30034           and it was 1-based. Fixed in mono_param_get_objects.
30035
30036 2003-07-20  Martin Baulig  <martin@ximian.com>
30037
30038         * mono-debug.h: Set version number to 31.
30039         (mono_debug_init): Added `MonoDomain *' argument.
30040
30041         * mono-debug-debugger.c: Reworked the type support; explicitly
30042         tell the debugger about builtin types; pass the `klass' address to
30043         the debugger.
30044
30045 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
30046
30047         * image.c: Allow new metadata tables to be loaded without a
30048         warning. Also update the warning message to give the new constant value.
30049                 
30050 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
30051
30052         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
30053         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
30054         array type representation changes.
30055
30056 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
30057
30058         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
30059         on Environment.Exit () call.
30060
30061 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30062
30063         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
30064         requires a matching corlib.
30065
30066 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30067
30068         * Changelog: My editor decided to add a CR to each line. Sorry about that.
30069           Committed again without the CRs.
30070         
30071 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30072
30073         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
30074           getting it from the "this" socket instance. Did not work
30075           if the socket is a subclass of Socket.
30076           Also fixed bug #35371.
30077
30078 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
30079
30080         * metadata.c: fixed size for TypedByRef.
30081         * loader.c: when searching for a method, consider the vararg amrker.
30082         * unicode.c, decimal.c: constify some arrays.
30083
30084 2003-07-15  Dick Porter  <dick@ximian.com>
30085
30086         * socket-io.c: Fixed compilation for gcc < 3.2.
30087
30088         Fixed compilation for machines that don't have AF_INET6 (thanks to
30089         Bernie Solomon <bernard@ugsolutions.com> for that part.)
30090
30091         Fixed compile warnings.
30092         
30093         Fixed formatting and line endings.
30094
30095 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
30096
30097         * socket-io.h:
30098         * socket-io.c: Added IPv6 support.
30099
30100 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
30101
30102         * class.c (mono_class_is_assignable_from): New function to implement
30103         the is_assignable_from logic. Used by mono_object_isinst, 
30104         Type::IsAssignableFrom () and the interpreter.
30105
30106         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
30107         Object, even interfaces.
30108         
30109         * object.c (mono_object_isinst): Implement in terms of 
30110         is_assignable_from.
30111
30112         * icall.c (ves_icall_type_is_assignable_from): New icall.
30113
30114 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
30115
30116         * domain.c (foreach_domain): fix compiler warning.
30117
30118 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
30119
30120         * image.c (load_metadata_ptrs): use g_strndup because strndup is
30121         not available on all plattforms
30122
30123 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
30124
30125         * image.h image.c: Store the metadata version string in MonoImage.
30126         * icall.c: New icall to retrieve the image version.
30127         * reflection.c (create_dynamic_image): Fill in the image version field
30128         * reflection.c (build_compressed_metadata): Use the image version
30129         from the image structure.
30130
30131 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30132
30133         * appdomain.c: modified comment.
30134         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
30135         That will be its last iteration when mono_gc_cleanup is called from
30136         mono_runtime_cleanup and before the domain is unloaded.
30137
30138         Fixes bug #45962.
30139
30140 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
30141
30142         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
30143         attributes.
30144
30145 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30146
30147         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
30148         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
30149         Bernie Solomon <bernard@ugsolutions.com>.
30150
30151 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
30152
30153         * object.c, object.h: provide mono_object_new_fast() for faster
30154         allocation in some special cases.
30155
30156 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
30157
30158         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
30159         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
30160
30161 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
30162
30163         * threadpool.c: fix leaks.
30164
30165 2003-07-01  Dick Porter  <dick@ximian.com>
30166
30167         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
30168         using MonoGHashTables.  Fixes threadpool bug posted to list.
30169
30170 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30171
30172         * image.h, image.c: added support to load an assembly from a byte array.
30173         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
30174         assembly bundle support.
30175
30176 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
30177
30178         * threadpool.c (mono_thread_pool_add): keep a reference to the
30179         AsyncResult to prevent GC
30180
30181 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30182
30183         * class.c: leak fix.
30184
30185 2003-06-25  Dick Porter  <dick@ximian.com>
30186
30187         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
30188         for the async object, the WaitHandle object will close the handle.
30189         Fixes bug 45321.
30190
30191 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
30192
30193         * class.c: in mono_array_class_get (), lookup from the hash with the
30194         same type we insert: this works around a bug in
30195         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
30196         lluis. The real fix will have to wait for after the release.
30197
30198 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30199
30200         * icall.c: fix memory leak when getting type members.
30201
30202 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
30203
30204         * reflection.c: added more pubtoken special cases.
30205
30206 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
30207
30208         * class.c: handle field offset correctly when class size
30209         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
30210
30211 2003-06-20  Martin Baulig  <martin@ximian.com>
30212
30213         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
30214         *image' field.
30215
30216 2003-06-20  Martin Baulig  <martin@ximian.com>
30217
30218         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
30219
30220 2003-06-20  Martin Baulig  <martin@ximian.com>
30221
30222         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
30223         just distinguish between variables in registers and variables at
30224         an offset relative to a register.
30225
30226 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30227
30228         * icall.c: #ifdef out latest changes until mcs is fixed.
30229
30230 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30231
30232         * icall.c: return members in metadata order.
30233
30234 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
30235
30236         * icall.c: avoid infinite loop in GetTimeZoneData.
30237
30238 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
30239
30240         * icall.c: added Marshal.Prelink/All icalls.
30241
30242 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
30243
30244         * object.c, object.h: fix warnings and do some overflow checking
30245         when creating arrays.
30246
30247 2003-06-17  Dick Porter  <dick@ximian.com>
30248
30249         * file-io.h:
30250         * file-io.c: File attributes need to be tweaked slightly when
30251         passed from the managed to the w32 world.
30252
30253 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
30254         * profiler.h profiler-private.h profiler.c: Rework last patch
30255         based on suggestion by Paolo.
30256         
30257 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
30258
30259         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
30260         instruction level coverage data collection.
30261         * profiler.h profiler.c (: Added new callback function which can be
30262         used by the profiler to limit which functions should have coverage
30263         instrumentation.
30264         * profiler.c (mono_profiler_load): Call g_module_build_path to
30265         generate the file name of the profiler library.
30266
30267 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30268
30269         * profiler.c, profiler.h, profiler-private.h: added basic block 
30270         coverage profiling API.
30271
30272 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
30273
30274         * reflection.c (mono_reflection_create_runtime_class): Add support
30275         for events in dynamically generated code.
30276
30277         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
30278         not allocated.
30279
30280 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
30281
30282         * icall.c: when getting timezone info, return reasonable values if we
30283         can't get the actual data.
30284
30285 2003-06-14  Dick Porter  <dick@ximian.com>
30286
30287         * threads.c (start_wrapper): Remove the reference to the thread
30288         object in the TLS data, so the thread object can be finalized.
30289         This won't be reached if the thread threw an uncaught exception,
30290         so those thread handles will stay referenced :-( (This is due to
30291         missing support for scanning thread-specific data in the Boehm GC
30292         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
30293
30294 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
30295
30296         * reflection.c: ensure streams and tables are first allocated with
30297         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
30298
30299 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30300
30301         * icall.c: fixed GetElementType for byrefs (bug# 44792).
30302
30303 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
30304
30305         * reflection.c (mono_reflection_create_runtime_class): Add support for
30306         properties to dynamically created classes.
30307         * reflection.c: Fix a few places where non-MonoObjects were inserted
30308         into the tokens hashtable.
30309
30310 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30311
30312         * object.c: some support to handle out of memory exceptions.
30313
30314 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
30315
30316         * marshal.c (mono_marshal_get_native_wrapper): support reference
30317         return types
30318
30319 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30320
30321         * object.h, object.c: more portability stuff from Bernie Solomon.
30322         Unexport mono_object_allocate(). Added mono_object_unbox ().
30323         Set exitcode when an unhandled exception is thrown.
30324
30325 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
30326
30327         * marshal.c (mono_marshal_get_native_wrapper): use custom
30328         marshaler for return types.
30329
30330 2003-06-10  Dick Porter  <dick@ximian.com>
30331
30332         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
30333         ip_mreq is available
30334
30335 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
30336
30337         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
30338         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
30339         by Bernie Solomon <bernard@ugsolutions.com>.
30340
30341 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
30342
30343         * gc.c (mono_gc_init): Avoid error message on shutdown when
30344         GC_DONT_GC=1 is used.
30345
30346         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
30347         New icall to return the GUID of a module.
30348
30349 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30350
30351         * class.c: ensure instance size always includes the parent's size
30352         even whem class size is set explicitly (fixes bug#44294).
30353
30354 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30355
30356         * profiler.h, profiler.c: made the simple profiler thread-safe,
30357         get more accurate timing info. Allow the loading of an
30358         externally-developed profiler module.
30359
30360 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
30361
30362         * marshal.c (mono_marshal_get_native_wrapper): improved
30363         class/byref arguments.
30364         (mono_marshal_get_native_wrapper): better string marshaling support.
30365
30366 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
30367
30368         * class.c: ensure .pack and .size are handled correctly and
30369         simplified layout of static fields.
30370
30371 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
30372
30373         * appdomain.c
30374         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
30375
30376         * loader.c (mono_lookup_pinvoke_call): look for modules in the
30377         current directory (fix bug 44008)
30378
30379 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
30380
30381         * marshal.c (mono_marshal_get_native_wrapper): started support for
30382         custom marshalers.
30383         (mono_delegate_to_ftnptr): consider marshalling specifications
30384
30385 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
30386
30387         * reflection.c, reflection.h: emit custom marshal info.
30388
30389 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30390
30391         * object.c: free the GError.
30392         * icall.c: added CloseEvent_internal.
30393         * threads.[ch]:
30394         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
30395         call.
30396
30397 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
30398
30399         * loader.c (mono_method_get_signature): Add support for dynamic
30400         assemblies.
30401
30402 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
30403
30404         * reflection.c: fixed bug #43905.
30405
30406 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
30407
30408         * class.c, domain.c, icall.c, metadata.h, object.h: support for
30409         handling TypedReference and ArgIterator.
30410         * loader.c, loader.h: added function to get signature at call site.
30411
30412 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30413
30414         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
30415         data readonly. Buglets and warning fixes. Some MethodSpec support.
30416
30417 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
30418
30419         * class.h, class.c, object.c: remove relative numbering support.
30420
30421 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
30422
30423         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
30424         free the string, until we get a chance to fix Gtk#
30425
30426 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30427
30428         * marshal.c: revert last patch.
30429
30430 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
30431
30432         * icall.c: updates for new mono_class_vtable() not calling
30433         the type constructor anymore.
30434
30435 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30436
30437         * object.h, object.c: separate vtable creation from type
30438         initialization. Make running the .cctor thread safe.
30439
30440 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
30441
30442         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
30443
30444 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
30445
30446         * loader.c (mono_get_method): consider calling convention
30447
30448 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
30449
30450         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
30451         to return the invisible global type for a module.
30452
30453         * reflection.c (mono_image_build_metadata): Emit global fields too.
30454
30455 2003-05-20  Peter Williams  <peterw@ximian.com>
30456
30457         * loader.c (mono_lookup_internal_call): Add a few newlines.
30458
30459 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
30460
30461         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
30462         literal strings.
30463
30464         * appdomain.c (set_domain_search_path): Recalculate search path when
30465         AppDomainSetup.PrivateBinPath changes.
30466
30467         * object.c (mono_class_compute_gc_descriptor): It turns out some
30468         parts of the class libs (like System.Thread) holds pointers to
30469         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
30470         to treat native int a pointer type here.
30471         
30472 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
30473
30474         * appdomain.h, domain.c: add hashtable for jump target resolution.
30475
30476 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
30477
30478         * reflection.h reflection.c icall.c: Added new icalls 
30479         GetManifestResourceInfoInternal, GetModulesInternal and support
30480         infrastructure.
30481
30482 2003-05-16  Dick Porter  <dick@ximian.com>
30483
30484         * icall.c:
30485         * file-io.h:
30486         * file-io.c: Implement System.IO.MonoIO::GetTempPath
30487
30488 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
30489
30490         * object.c: mono_store_remote_field: little fix to previous patch.
30491
30492 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30493
30494         * class.c: add constructors to array classes.
30495         * icall.c: special case array construction for InternalInvoke (),
30496
30497 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
30498
30499         * class.h class.c reflection.c object.c: Added support for field
30500         defaults in dynamically generated classes.
30501
30502 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
30503
30504         * reflection.c: properly encode charset for ddlimport.
30505
30506 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
30507
30508         * threads.c: allow compiling without GC.
30509
30510 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30511
30512         * appdomain.h, object.c, object.h, threads.c, threads.h: added
30513         handling of thread static data.
30514
30515 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30516
30517         * reflection.h, reflection.c: added mono_custom_attrs_free ().
30518
30519 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
30520
30521         * class.c (mono_array_class_get): always set the serializable flags
30522         (mono_array_class_get): always set the SEALED attribute for array types
30523
30524 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
30525
30526         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
30527         attributes (fix for bug 42021).
30528
30529 2003-05-12  Dick Porter  <dick@ximian.com>
30530
30531         * gc.c: Don't run finalizers when the finalizer thread is
30532         finishing up, because the default domain has already been
30533         destroyed.
30534
30535 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
30536
30537         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
30538         value is null, we should throw an exception.   This is slightly
30539         different than the other conventions used for the constructor.
30540
30541 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30542
30543         * socket-io.c: fixed windows build.
30544
30545 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30546
30547         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
30548
30549 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
30550
30551         * object.c (mono_string_new_wrapper): Compatibility fix for MS
30552         compilers.
30553
30554 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
30555
30556         * class.c (mono_class_layout_fields): Add experimental GC aware
30557         auto layout facility. Requires class library changes to work correctly.
30558
30559         (mono_class_setup_vtable): Avoid overriding explicit interface
30560         method implementations. Fixes iface3.exe test.
30561
30562         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
30563         object reference.
30564         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
30565         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
30566
30567         * metadata.h: Add new type classification macro which determines
30568         whenever the type holds an object reference.
30569
30570 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
30571
30572         * marshal.c (mono_marshal_get_native_wrapper): cleanups
30573
30574 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
30575
30576         * gc.c (finalizer_thread): Work around a GC bug.
30577
30578 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
30579
30580         * marshal.c (emit_struct_conv): allow unions
30581
30582         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
30583
30584 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
30585
30586         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
30587
30588 2003-05-06  Martin Baulig  <martin@ximian.com>
30589
30590         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
30591
30592 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30593
30594         * socket-io.c:
30595         (Select_internal): allow NULLs, don't create arrays if not needed.
30596         Coupled with Socket.cs changes.
30597
30598         * threadpool.c:
30599         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
30600         register a finalizer for it that will close the semaphore handle. This
30601         fixes the leak and make Lupus' test run with > 4080 loops.
30602
30603 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
30604
30605         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
30606         Jerome Laban (bug #42287)
30607
30608 2003-05-02  Martin Baulig  <martin@ximian.com>
30609
30610         * debug-mono-symfile.h
30611         (MonoSymbolFile): Moved declaration into mono-debug.h.
30612         (MonoDebugMethodJitInfo): Likewise.
30613         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
30614         argument.
30615         (_mono_debug_address_from_il_offset): Take a
30616         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
30617
30618         * mono-debug.h
30619         (MonoDebugDomainData): New struct.
30620         (mono_debug_get_domain_data): New function.
30621         (mono_debug_add_method): Take an additional `MonoDomain *'
30622         argument.
30623         (mono_debug_source_location_from_address): Likewise.
30624         (mono_debug_il_offset_from_address): Likewise.
30625         (mono_debug_address_from_il_offset): Likewise.
30626
30627 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
30628
30629         * reflection.c: one more check for null type in custom attrs.
30630
30631 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30632
30633         * reflection.c: avoid warning (comparison is always false due to limited
30634         range of data type).
30635
30636 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30637
30638         * icall.c: throw an exception in Type.GetField if the argument 'name'
30639         is NULL.
30640
30641 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
30642
30643         * reflection.c: fixed handling of enums in named arguments to custom
30644         attributes (bug #42123).
30645
30646 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
30647
30648         * reflection.c: use the right array element type and handle
30649         a null for a Type argument, too.
30650
30651 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
30652
30653         * reflection.c: handle arrays as arguments to custom attributes.
30654
30655 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30656
30657         * reflection.c: handle a string value in a custom attr
30658         ctor that takes an object.
30659
30660 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
30661
30662         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
30663         (fix bug #42063)
30664
30665 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
30666
30667         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
30668
30669 2003-04-27  Martin Baulig  <martin@ximian.com>
30670
30671         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
30672         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
30673         MONO_DEBUGGER_EVENT_BREAKPOINT.
30674         (mono_breakpoint_trampoline_code): Removed.
30675         (mono_debugger_event_handler): The last argument is now a
30676         `guint32'.
30677         (mono_debugger_insert_breakpoint_full): Removed the
30678         `use_trampoline' argument.
30679         (mono_debugger_method_has_breakpoint): Likewise.
30680         (mono_debugger_trampoline_breakpoint_callback): Renamed to
30681         mono_debugger_breakpoint_callback(); take the method and
30682         breakpoint number as arguments.
30683
30684 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
30685
30686         * metadata.c: fix off by one when loading parameters attributes.
30687
30688 2003-04-24  Martin Baulig  <martin@ximian.com>
30689
30690         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
30691
30692 2003-04-24  Martin Baulig  <martin@ximian.com>
30693
30694         * mono-debug-debugger.c: Moved all code which interacts with the
30695         Mono Debugger here.
30696
30697         * debug-mono-symfile.c: This code now just deals with the symbol
30698         file itself, the debugger code is now in mono-debug-debugger.c.
30699
30700 2003-04-23  Martin Baulig  <martin@ximian.com>
30701
30702         * mono-debug.c (mono_debug_source_location_from_il_offset):
30703         New method; like mono_debug_source_location_from_address(), but
30704         takes an IL offset instead of a machine address.
30705
30706 2003-04-23  Martin Baulig  <martin@ximian.com>
30707
30708         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
30709         `line' field; this is now computed by the debugger.
30710
30711 2003-04-23  Martin Baulig  <martin@ximian.com>
30712
30713         * mono-debug.[ch]: New files.  This is the new debugging interface.
30714
30715         * mono-debug-debugger.[ch]: New files.  Moved all code which
30716         interacts with the Mono Debugger here.
30717
30718 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
30719
30720         * domain.c (mono_init): initialize mono_defaults.monitor_class
30721
30722 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
30723
30724         * reflection.c (method_encode_code): Add a spicy exception to help
30725         future compiler authors.
30726
30727 2003-04-21  Martin Baulig  <martin@ximian.com>
30728
30729         * icall.c
30730         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30731         Make this work with relative pathnames; g_filename_to_uri() needs
30732         an absolute filename.
30733
30734 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
30735
30736         * icall.c: Track name changes in Object and ValueType.
30737
30738 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
30739
30740         * metadata.c (mono_type_stack_size): size should be a multiple of
30741         sizeof (gpointer)
30742
30743 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30744
30745         * gc.c:
30746         (internal_domain_finalize): moved into mono_domain_finalize. No need
30747         to create another thread because the finalizers will be run in the
30748         finalizer thread.
30749         
30750         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
30751         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
30752         to be run (MS does this too).
30753
30754 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
30755
30756         * object.c (mono_class_compute_gc_descriptor): Update comment.
30757
30758         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
30759
30760         * image.h: Add synchronized wrapper cache.
30761
30762         * image.c (do_mono_image_open): Initialize cache.
30763
30764         * reflection.c (create_dynamic_mono_image): Initialize cache.
30765
30766 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30767
30768         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
30769         ves_icall_System_Buffer_ByteLengthInternal.
30770
30771 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30772
30773         * reflection.c: setup klass->nested_in earlier. Allow
30774         a dash in the assembly name.
30775
30776 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
30777
30778         * metadata.c (mono_type_to_unmanaged): dont access
30779         type->data.klass for MONO_TYPE_OBJECT
30780         (mono_type_to_unmanaged): consider System.Delegate class
30781
30782 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
30783
30784         * class.c: just setup supertypes in the proper place instead of
30785         initializing the full element class for arrays.
30786
30787 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30788
30789         * class.c: ensure the element class of arrays is initialized.
30790         Setup the supertype info for array classes, too.
30791
30792 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
30793
30794         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
30795
30796 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30797
30798         * Makefile.am: re-added -m option when running cygpath. This way,
30799         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
30800         separator.
30801         * mono-config.c: same codepath for locating mono config file for WIN32
30802         and the rest.
30803         * assembly.c: if mono_assembly_setrootdir is called, don't override
30804         the value set.
30805
30806 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30807
30808         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
30809         MONO_ASSEMBLIES variable.
30810
30811 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
30812
30813         * icall.c: added Assembly::GetNamespaces() icall.
30814
30815 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30816
30817         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
30818
30819 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
30820
30821         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
30822         * object.c: fixed bug in the construction of vtable for proxies
30823
30824 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
30825
30826         * object.c (mono_array_new): Mark mono_array_new as an icall.
30827
30828 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30829
30830         * class.c: fixed test for public method when overriding interfaces.
30831         Closes bug #40970.
30832
30833 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30834
30835         * appdomain.h, domain.c: added mono_domain_foreach() to
30836         be able to access the currently loaded appdomains.
30837         * object.c: make string interning work across sppdomains.
30838         Mark some functions for use as icalls.
30839
30840 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30841
30842         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30843
30844         * reflection.h reflection.c: Allocate long living data using 
30845         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30846
30847         * reflection.c: Double the allocation size in streams instead of
30848         increasing it, to prevent unneccesary copying on large assemblies.
30849         
30850         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30851         creation if the assembly does not have the Run flag set.
30852
30853 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30854
30855         * class.h: avoid the C++ keywords in header files (Jerome Laban
30856         spotted and fixed this).
30857
30858 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30859
30860         * object.c:
30861         (mono_unhandled_exception): fill in the arguments for the
30862         UnhandledException event. Only trigger that event for the default
30863         domain (as MS does).
30864
30865 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30866
30867         * object.c: Improve typed allocation stuff based on suggestions from
30868         Paolo. Also turn it on if the GC library supports it.
30869
30870 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30871
30872         * object.c object.h class.h: Added experimental typed allocation
30873         facility using the interfaces in gc_gcj.h.
30874
30875         * os/gc_wrapper.h: Added new include files.
30876         
30877 2003-04-03  Martin Baulig  <martin@ximian.com>
30878
30879         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30880         which is not yet enabled by default.
30881
30882         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30883         functions.
30884         (mono_gc_lock, mono_gc_unlock): New static functions.
30885
30886         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30887         functions; stop/start the world for the garbage collector.  This
30888         is using the windows API; we need to complete the SuspendThread()/
30889         ResumeThread() implementation in the io-layer to make this work on Unix.
30890         (mono_gc_push_all_stacks): New public function; tells the garbage
30891         collector about the stack pointers from all managed threads.
30892
30893 2003-04-03  Martin Baulig  <martin@ximian.com>
30894
30895         * object.h (MonoThread): Added `gpointer stack_ptr'.
30896
30897         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30898
30899 2003-04-03  Martin Baulig  <martin@ximian.com>
30900
30901         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30902
30903 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30904
30905         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30906         field.last.
30907
30908 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30909
30910         * loader.c (mono_lookup_internal_call): Report the corlib that is
30911         out of sync.
30912
30913 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30914
30915         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30916         System.DBNull (it's class not valuetype).
30917
30918 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30919
30920         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30921         if the array method was already assigned a token (fixes bug#40646).
30922
30923 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30924
30925         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30926         if no assembly is given.
30927
30928 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30929
30930         * metadata.h: Added the new tables.
30931
30932         * row-indexes.h: Added definitions for new tables.
30933
30934         * metadata.c: Add schemas for new tables, and add support for
30935         computing the sizes of them.
30936
30937         * class.c: Update for handling the new type cases.
30938
30939 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30940
30941         * metadata.h (MONO_TYPE_IS_VOID): new macro
30942
30943 2003-03-31  Martin Baulig  <martin@ximian.com>
30944
30945         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30946
30947         * threads.c (mono_thread_new_init): Call `thread_created' in the
30948         mono_thread_callbacks.
30949
30950 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30951
30952         * loader.h: added marshalbyrefobject_class to mono_defaults
30953         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30954         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30955           generation of output parameters.
30956           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30957         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30958           contextbound and the target object belongs to the context of the caller.
30959         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30960         * object.c: Implemented support for interfaces and abstract classes
30961           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30962           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30963
30964 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30965
30966         * class.h class.c (mono_class_is_subclass_of): New function.
30967         
30968         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30969         routines for most common case (calls from ArrayList::ToArray).
30970
30971         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30972         routine so programs which call Environment::Exit() can be profiled.
30973
30974         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30975         Added MONO_ARCH_SAVE_REGS.
30976
30977         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30978
30979 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30980
30981         * blob.h: Add a couple of new MonoType types definitions.
30982
30983         * tabledefs.h: Add a couple of new call convs.
30984
30985 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30986
30987         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30988         the layout of the class.
30989
30990         * reflection.c (alloc_table): double the size on overflow to avoid
30991         unnecessary copying.
30992
30993         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30994         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30995         null so it can be garbage collected.
30996         
30997 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30998
30999         * reflection.c (mono_reflection_get_type): Return the resolved type
31000         only if it is in the assembly we searched.
31001
31002         * reflection.c (ensure_runtime_vtable): Initialize method slots.
31003
31004         * class.c (mono_class_setup_vtable): Set the slot of the overriding
31005         method.
31006
31007 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31008
31009         * appdomain.c:
31010         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
31011         the right one is 'file:///blah', but MS allows it.
31012         * assembly.c:
31013         (mono_assembly_open): allow 'file://blah'
31014
31015         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
31016
31017 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
31018
31019         * socket-io.c: fixes bug #40310.
31020
31021 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
31022
31023         * reflection.c (mono_reflection_parse_type): handle deeply nested
31024         types correctly.
31025
31026         * reflection.c (mono_image_create_token): Use unique token values
31027         since they will be put into a hash table.
31028
31029         * class.c (mono_class_setup_vtable): If a method occurs in more than
31030         one place in the vtable, and it gets overriden, then change the
31031         other occurances too.
31032
31033         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31034         object as return type.
31035
31036 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31037
31038         * icall.c: Deleted "ToString" implementation for double and float
31039         because they are full implemented in managed code.
31040
31041 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31042
31043         * reflection.c, reflection.h: implemented and exported functions
31044         to retrieve info about custom attributes.
31045
31046 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31047
31048         * appdomain.c: moved Uri handling to assembly.c
31049         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
31050         work when using a file Uri in *nix and windows.
31051
31052         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
31053         GetReferencedAssemblies.
31054
31055 2003-03-18  Dick Porter  <dick@ximian.com>
31056
31057         * icall.c: Rename a couple of internal calls
31058
31059         * threads.c: Set the thread state to Stopped when a thread exits.
31060         Fixes bug 39377.
31061
31062 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
31063
31064         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
31065         New icall.
31066
31067         * object.c (mono_class_vtable): fix warning.
31068
31069 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
31070
31071         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
31072
31073         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
31074         memory.
31075         (method_encode_clauses): Create exception info structures in the right
31076         order.
31077         (mono_reflection_setup_internal_class): Initialize supertypes field.
31078
31079         * class.c object.c: Handle interfaces which implement other interfaces 
31080         correctly.
31081
31082         * class.h class.c: Move the supertypes array initialization code into 
31083         a separate function so it can be used for dynamic types too. Also call
31084         it earlier, in mono_class_init(), since it can be used before the
31085         type is initialized.
31086
31087 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31088
31089         * Makefile.am:
31090         * assembly.c:
31091         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
31092
31093         * appdomain.c:
31094         * appdomain.h:
31095         * marshal.c:
31096         * object.c: remove warnings.
31097
31098 2003-03-13  Martin Baulig  <martin@ximian.com>
31099
31100         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
31101         (MonoDebugLexicalBlockEntry): New types.
31102
31103         * debug-mono-symfile.c
31104         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
31105
31106 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31107
31108         * process.c: ret can be any non-zero value accroding to MS doc.
31109
31110 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
31111
31112         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
31113         fixing a warning for a miss-used prototype, would have cause
31114         random memory corruption.
31115
31116 2003-03-07  Martin Baulig  <martin@ximian.com>
31117
31118         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
31119         getting really annoying ....
31120
31121 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
31122
31123         * reflection.c (fixup_method): added support for array methods.
31124
31125 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
31126
31127         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
31128         (pointed out by Michael Adams).
31129
31130 2003-03-04  Dick Porter  <dick@ximian.com>
31131
31132         * icall.c: Temporarily reverted the Double and Single ToString()
31133         change, because it broke nunit.
31134
31135 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
31136
31137         * object.h, threads.h: make include files compatible with C++
31138         (patch by Jerome Laban <jlaban@wanadoo.fr>).
31139
31140 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31141
31142         * icall.c: Erased ToString helper functions for Double and Single.
31143         Now, that implementations ar all in managed code (Double and Single
31144         Formatters).
31145
31146 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
31147
31148         * appdomain.c: Added method for initializing the default context of
31149         a domain. Added internal call for getting the default context.
31150         * appdomain.h: Added context variable in MonoDomain struct.
31151         * domain.c: mono_domain_set also sets the default context of the domain
31152         * icall.c: Mapped internal method InternalGetDefaultContext.
31153         * object.c: mono_object_get_virtual_method returns always a remoting
31154         wrapper if the object is a transparent proxy.
31155         mono_runtime_invoke_array: when creating an object by calling the
31156         constructor, if the created object is a proxy, then the constructor should
31157         be called using the a remoting wrapper.
31158
31159 2003-03-03  Dick Porter  <dick@ximian.com>
31160
31161         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
31162         variable so it compiles on solaris.  Problem spotted by
31163         Christopher Taylor <ct@cs.clemson.edu>
31164
31165 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31166
31167         * appdomain.c:
31168         (get_info_from_assembly_name): don't leak value.
31169
31170         * icall.c:
31171         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
31172         result.
31173
31174 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
31175
31176         * assembly.c: export mono_image_load_references ().
31177         * class.c: handle function pointers. mono_class_from_name() now
31178         supports nested type names directly.
31179
31180 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
31181
31182         * reflection.h reflection.c: Encode already created dynamic methods 
31183         and fields correctly as a DEF instead of a REF.
31184
31185         * reflection.c: Get rid of the force_ref argument to 
31186         mono_image_typedef_or_ref since it was wrong in the first place.
31187
31188         * string-icalls.c: add error checking to string constructors according
31189         to the MSDN docs.
31190
31191         * reflection.c: Emit types in the order their TypeBuilders were 
31192         created. Previously, a new table index was assigned to each type before
31193         the tables were emitted. This was wrong because the signature blob
31194         might already refer to a type by its original table index.
31195
31196 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
31197
31198         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
31199         change.
31200         
31201 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31202
31203         * Makefile.am: make assemblies dir have \ instead of / on windows.
31204
31205 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
31206
31207         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
31208         iterate over the NESTEDCLASS table using a linear search since the
31209         table is not guaranteed to be sorted by the secondary key.
31210
31211         * class.c (mono_class_create_from_typedef): fixed up call to
31212         mono_metadata_nesting_typedef.
31213         
31214 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
31215
31216         * marshal.c (mono_string_to_byvalstr): clear the memory as
31217         suggested by Jerome Laban <jlaban@wanadoo.fr>
31218
31219 2003-02-26  Dick Porter  <dick@ximian.com>
31220
31221         * process.c: Cope with padding in .rsrc blocks
31222
31223 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
31224
31225         * metadata.h: reverted the filter_len change, it breaks reflection
31226         
31227 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
31228
31229         * metadata.h: added a new field to store the filter_len
31230         
31231
31232 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
31233
31234         * reflection.c: handle custom attributes for types and members
31235         created with Reflection.Emit (bug#38422).
31236
31237 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
31238
31239         * reflection.c: define RTSpecialName automatically for constructors for
31240         compatibility with MS.NET.
31241
31242         * reflection.c (mono_reflection_create_runtime_class): initialize
31243         nested_in field of dynamically created classes.
31244
31245 2003-02-22  Martin Baulig  <martin@ximian.com>
31246
31247         * debug-mono-symfile.h: Incremented version number.
31248
31249 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
31250
31251         * object.h icall.c process.c: fix warnings.
31252
31253 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
31254
31255         * appdomain.h appdomain.c:
31256         (mono_domain_try_type_resolve): split the 
31257         name_or_tb argument into a name and a tb argument.
31258         (mono_domain_has_type_resolve): new function to check whenever the
31259         application has registered a TypeResolve event handler.
31260         
31261         * icall.c reflection.h reflection.c: move the type resolve logic into
31262         mono_reflection_get_type () so it will be invoked when 
31263         Assembly::GetType () is called.
31264
31265         * reflection.c:
31266         (mono_reflection_get_type): renamed to get_type_internal.
31267         (mono_reflection_get_type): fixed type name generation so it works 
31268         for nested types too.
31269         (mono_reflection_get_type): call has_type_resolve () to avoid the 
31270         costly type name generation if there is no resolve event handler.
31271
31272 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31273
31274         * class.c, image.c: load exported types from file references.
31275
31276 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
31277
31278         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
31279           used to cache the managed methods used to create proxies and make 
31280           remote invocation of methods.
31281         * class.h: Added in MonoVTable a flag to indicate that a class needs 
31282           to be remotely created.
31283         * object.c: Modified the method mono_class_vtable(). It now initializes 
31284           the remote flag of the vtable. Modified mono_object_new_specific(), 
31285           so now it checks the remote flag.
31286         * icall.c: Added a couple of internal methods, one for enabling instance 
31287           creation interception for a type, and one for creating objects bypassing
31288           the remote check.
31289
31290 2003-02-18  Martin Baulig  <martin@ximian.com>
31291
31292         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
31293         New interncall to get a method's metadata token.
31294
31295         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
31296         New interncall for the debugger.
31297
31298 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
31299
31300         * class.c (mono_class_setup_vtable): allocate supertype array
31301
31302 2003-02-18  Martin Baulig  <martin@ximian.com>
31303
31304         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
31305
31306 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31307
31308         * reflection.c:
31309         (assembly_name_to_aname): jump over unknown properties (i've found
31310         something like: 'type, assembly, version=xxx, custom=null, public...',
31311         so now will ignore custom=null and still get the rest of the values).
31312
31313 2003-02-17  Dick Porter  <dick@ximian.com>
31314
31315         * threads.c: Have Thread.Start() wait for a semaphore to signal
31316         that the thread has set up all its local data.  This fixes bug
31317         34323, where Abort() raced the new thread's TLS data.
31318
31319         Also removes the handle_store() call from start_wrapper, because
31320         threads are now always created suspended and there is no longer a
31321         race between the parent and child threads to store the info.
31322
31323 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
31324
31325         * image.c: explain the #- heap issue in a message, hopefully
31326         avoiding FAQs on mono-list.
31327
31328 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31329
31330         * icall.c:
31331         (GetEntryAssembly): if the domain has not invoked
31332         AppDomain.ExecuteAssembly yet, return the assembly of the default
31333         AppDomain.
31334
31335 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
31336
31337         * class.c (mono_ldtoken): make it work in dynamic assemblies.
31338
31339 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
31340
31341         * metadata.c, reflection.c: simple speedup to type hash
31342         and equals code.
31343
31344 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
31345
31346         * image.c, image.h, class.c, assembly.c: move module loading
31347         to MonoImage. When loading metadata, consider alignemnet from
31348         the start of metadata, not from the metadata address in memory.
31349
31350 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
31351
31352         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
31353         AssemblyBuilder objects. Factored out custom attribute creation into
31354         a separate function.
31355         (create_custom_attr): new function to create custom attributes.
31356
31357 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
31358
31359         * Makefile.am: Got tired of typing the full pathname to pedump.
31360         Until there is another option, am installing this.
31361
31362 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
31363
31364         * class.c (class_compute_field_layout): always set field->parent 
31365         (mono_ldtoken): use mono_defaults.fieldhandle_class;
31366
31367 2003-02-11  Dick Porter  <dick@ximian.com>
31368
31369         * threads-types.h:
31370         * monitor.c: Rewrote Monitor, making lock much faster and
31371         Pulse/Wait work as specified.  Also uses much fewer handles, and only
31372         creates them as needed.
31373
31374         * exception.c: Added SynchronizationLockException
31375
31376         * threads.c: Deleted old Monitor implementation.  The new one is
31377         in a new file.
31378
31379 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
31380
31381         * class.c: handled TypedReference type code. Set the correct size for
31382         class data. Setup interface_offsets for interface classes, too.
31383
31384 2003-02-09  Martin Baulig  <martin@ximian.com>
31385
31386         * debug-mono-symfile.h: Reflect latest symbol writer changes.
31387
31388 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
31389
31390         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
31391         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
31392         * object.c: fixed mono_object_get_virtual_method () for interfaces.
31393         * verify.c: check for code that runs after the end of the method.
31394
31395 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31396
31397         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
31398         "System.Math::Round2".
31399         * sysmath.h: Added Floor, Round and Round2 definitions.
31400         * sysmath.c: Modified certain functions that were not 100% compliant
31401         with MS.NET (math precision) and added the implementation of Floor,
31402         Round and Round2.
31403
31404 2003-02-07  Martin Baulig  <martin@ximian.com>
31405
31406         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
31407
31408 2003-02-07  Martin Baulig  <martin@ximian.com>
31409
31410         * debug-mono-symfile.c: Reflected latest symwriter changes.
31411         (mono_debug_create_mono_symbol_file): Removed.
31412         (mono_debug_open_mono_symbol_file): Take an argument which
31413         specifies whether to create a dynamic symbol file.
31414
31415 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
31416
31417         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
31418
31419 2003-02-05  Martin Baulig  <martin@ximian.com>
31420
31421         * reflection.c (mono_image_build_metadata): Make this public,
31422         protect it against being called multiple times, don't create
31423         resources and don't build the compressed metadata here.
31424         (mono_image_create_pefile): Do this here.
31425
31426         * icall.c
31427         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
31428
31429 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31430
31431         * socket-io.c: fixed bug #36322.
31432
31433 2003-02-06  Piers Haken <piersh@friskit.com>
31434
31435         * appdomain.[ch]:
31436         * class.h:
31437         * debug-mono-symfile.c:
31438         * icall.c:
31439         * loader.c:
31440         * mono-config.c:
31441         * monosn.c:
31442         * reflection.c:
31443         * socket-io.c: warning cleanups
31444
31445 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
31446
31447         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
31448         function. works like remoting invoke, but does a check for the Proxy first.
31449
31450 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
31451
31452         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
31453
31454 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
31455
31456         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
31457         array of pointers.
31458         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
31459         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
31460
31461         * object.c (mono_store_remote_field_new): used by the new jit
31462         instead of mono_store_remote_field
31463         (mono_load_remote_field_new): used by the new jit
31464         instead of mono_load_remote_field
31465
31466 2003-02-05  Patrik Torstensson
31467
31468         * appdomain.c: changed unload to take the domain id instead
31469         of domain
31470         
31471         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
31472
31473
31474 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31475
31476         * appdomain.c: don't look for assemblies in ApplicationBase if
31477         PrivateBinPathProbe is set.
31478
31479 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31480
31481         * object.c: make the first argument in main_args contain the absolute
31482         path to the assembly. Fixes bug #37511.
31483
31484 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31485
31486         * icall.c: get correct UTC offset for countries not using daylight
31487         time saving. Fixes bug #30030.
31488
31489 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31490
31491         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
31492         and 1 are the family).
31493
31494 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
31495
31496         * icall.c (ves_icall_InternalExecute): removed wrong assertion
31497
31498         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
31499
31500 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
31501
31502         * reflection.c: added support for SignatureHelper tokens, which is
31503         needed by the Calli opcode.
31504
31505         * reflection.h: track changes to SignatureHelper class.
31506
31507         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
31508
31509 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31510
31511         * appdomain.c: fixed loading assemblies from PrivateBinPath.
31512
31513 2003-02-03  Patrik Torstensson
31514         * appdomain.[c|h], domain.c : 
31515          - Added support for getting a domain via domain id
31516          - Support for setting and getting domain from System.AppDomain 
31517            (used in cross appdomain channel)
31518          - Added support for get/set for a MonoAppContext on a thread 
31519            (Context class in System.Runtime.Remoting.Contexts),
31520          - Removed hack in Get/SetData and ExecuteAssembly.
31521         
31522         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
31523         the managed world to get control when a proxy is created.
31524
31525         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
31526         
31527 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
31528
31529         * icall.c
31530         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31531         Populate the codebase field as well.
31532
31533 2003-02-02  Martin Baulig  <martin@ximian.com>
31534
31535         * debug-mono-symfile.c
31536         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
31537         (mono_debug_symfile_add_method): Allow interncalls.
31538
31539 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31540
31541         * icall.c: throw parse exception if strtod fails or the string is empty.
31542
31543 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
31544
31545         * marshal.c: handle object type separately from defined
31546         class types.
31547
31548 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
31549
31550         * marshal.c: handle NATIVE_LPSTR for strings when it's
31551         explicitly specified.
31552
31553 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
31554
31555         * reflection.c, reflection.h, icall.c: setup the reflection
31556         handle cache for ModuleBuilders and AssemblyBuilders.
31557
31558 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
31559
31560         * reflection.c (reflection_methodbuilder_to_mono_method): set
31561         pinvoke flag
31562
31563 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31564
31565         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
31566
31567 2003-01-29  Dick Porter  <dick@ximian.com>
31568
31569         * threads.c: No need for the fake_thread kludge now that Thread
31570         doesn't run a class constructor
31571         
31572 2003-01-29  Dick Porter  <dick@ximian.com>
31573
31574         * threads.c: Use g_direct_hash instead of the rather bogus
31575         g_int_hash
31576
31577 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
31578
31579         * marshal.c (mono_marshal_get_native_wrapper): add check for null
31580         (fix pinvoke12.exe)
31581         (mono_marshal_get_struct_to_ptr): generate valid IL code
31582         (mono_marshal_get_ptr_to_struct): generate valid IL code
31583         (*): correctly set sig->pinvoke, we need to memdup the signature
31584         to do that
31585
31586 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31587
31588         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
31589         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
31590
31591 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31592
31593         * profiler.c: provide more callers information.
31594
31595 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
31596
31597         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
31598
31599         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
31600
31601         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
31602
31603 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31604
31605         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
31606         exception instead of going into an infinite loop on dates which it 
31607         can't yet handle.
31608
31609         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
31610         out-of-range exception if needed.
31611
31612         * class.c (mono_class_setup_vtable): allow a virtual method to provide
31613         an implementation for an interface method and to override an inherited
31614         method at the same time. 
31615         Imagine a scenario when a virtual method is used to override a
31616         virtual abstract method in a parent class, and this same method 
31617         provides an implementation for an method inherited from an interface. 
31618         In this case, the interface resolution code will set im->slot, which 
31619         means that the virtual method override pass will skip this method 
31620         which means a pointer to the abstract method inherited from the parent
31621         will remain in the vtable of this non-abstract class.
31622
31623         * class.c: (mono_class_setup_vtable): continue search for a real 
31624         method if only an abstract method is found.     
31625
31626 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31627
31628         * reflection.c: add size to encoding for ByValStr and ByValArray
31629         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
31630
31631 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31632
31633         * class.c (mono_class_setup_vtable): pass the override info as an
31634         argument.
31635
31636         * class.c (mono_class_setup_vtable): set the slot of overriding methods
31637         correctly.
31638         
31639         * reflection.c (ensure_runtime_vtable); add support for method 
31640         overrides.
31641         
31642 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31643
31644         * reflection.c (resolution_scope_from_image): Hack to work to work with
31645         dynamic assemblies.
31646
31647         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
31648         added a 'force_ref' argument to force this function to allways return 
31649         a TypeRef. This is needed by mono_image_get_memberref_token ().
31650         
31651 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31652
31653         * reflection.c (mono_image_get_type_info): interfaces really don't have
31654         a parent.
31655
31656         * reflection.c (mono_image_basic_init): fill out missing fields of
31657         image structure.
31658
31659         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
31660         dynamic assemblies. This is required so dynamic assemblies show up in
31661         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
31662         Type::GetType() etc. This is consistent with MS behaviour.
31663
31664         * image.c image.h reflection.c: add newly created classes to the name 
31665         cache so mono_class_get () will find them.      
31666
31667 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31668
31669         First part of changes to get IKVM.NET running under mono.
31670         
31671         * appdomain.h, appdomain.c: added new function 
31672         mono_domain_try_type_resolve() which will emit TypeResolve events. 
31673         This function will call AppDomain::DoTypeResolve to do the actual work.
31674
31675         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
31676         moved existing code dealing with dynamic tokens to a new function 
31677         called mono_reflection_lookup_dynamic_token (). This function will 
31678         raise TypeResolve events when appropriate. Since reflection.c is not 
31679         part of libmetadata, a new hook function called 
31680         mono_lookup_dynamic_token() is added to class.c which will call this.
31681
31682         * assembly.h assembly.c: make the invoke_load_hook function public,
31683         so it can be called for dynamic assemblies.
31684
31685         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
31686
31687         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
31688         type isn't found.
31689
31690         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
31691         MonoGHashTable, since it contains pointers to objects which the GC 
31692         needs to track.
31693
31694         * assembly.c (search_loaded): remove unused variable.
31695         
31696 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
31697
31698         * object.c: fixed issue exposed by gcc-generated IL programs
31699         that use RVA data for pointers.
31700
31701 2003-01-25  Martin Baulig  <martin@ximian.com>
31702
31703         * threads.c (start_wrapper): Moved the initialization of
31704         `start_func' above the mono_new_thread_init() call to which we
31705         pass it as argument.
31706
31707 2003-01-24  Martin Baulig  <martin@ximian.com>
31708
31709         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
31710         the MonoThread pointer.
31711
31712 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
31713
31714         * icall.c: Rename `PowImpl' to Pow.
31715
31716 2003-01-23  Dick Porter  <dick@ximian.com>
31717
31718         * threads.c (start_wrapper): Create a Thread object if needed, so
31719         the Main() thread can do the class initialisation in a subthread
31720         that has been set up to allow managed code execution.
31721
31722         Pass the thread ID instead of the MonoThread pointer to the thread
31723         start and attach callbacks.  This change is required, because the
31724         jit thread start callback must be called _before_ the Thread
31725         object can be created.
31726         
31727         (mono_thread_init): Removed much object creation code that is no
31728         longer needed.  No managed code is called from here now.
31729
31730         * object.c (mono_runtime_exec_managed_code): Create a subthread
31731         for Main, and call back to the runtime to use it.
31732         Set the exit code when Main exits.
31733
31734         * gc.c: Make sure domain finalisation happens in a subthread.
31735         Re-enable threaded GC, fixing bug 31333 (again).
31736
31737         * environment.c: System.Environment internall calls (so far just
31738         ExitCode is here, the others are still in icall.c)
31739
31740         * appdomain.c (mono_runtime_cleanup): All threads running managed
31741         code should have finished before mono_runtime_cleanup() is
31742         reached, so no need to clean up threads.
31743
31744 2003-01-22  Martin Baulig  <martin@ximian.com>
31745
31746         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
31747         `gpointer func' arguments.      
31748         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
31749         but added `MonoThread *thread' argument.
31750         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
31751
31752         * threads.c (mono_new_thread_init): Added `gpointer func' argument
31753         and pass it to the mono_thread_start_cb callback.
31754         (mono_install_thread_callbacks): New public function to install a
31755         set of callbacks which are set by the debugger.
31756         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
31757
31758 2003-01-22  Martin Baulig  <martin@ximian.com>
31759
31760         * Makefile.am: Install debug-mono-symfile.h.
31761
31762 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
31763
31764         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
31765
31766 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
31767
31768         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
31769         * class.c (mono_ptr_class_get): correctly set access levels of pointers
31770         (mono_array_class_get): correctly set access levels of arrays
31771
31772 2003-01-20      Patrik Torstensson
31773         * image.h (MonoAssemblyName): changed major, minor, build, revision
31774         from signed to unsigned.
31775
31776 2003-01-20  sean kasun <skasun@azstarnet.com>
31777
31778         * reflection.c (load_cattr_value): Now this handles
31779         MONO_TYPE_SZARRAY.  Fixes bug #35629
31780
31781 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
31782
31783         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
31784         integer value
31785
31786 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31787
31788         * decimal.c: fixed bug #26056.
31789
31790 2003-01-17  Martin Baulig  <martin@ximian.com>
31791
31792         * gc.c: Raise an ExecutionEngineException instead of using g_error().
31793
31794 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31795
31796         * exception.[ch]:
31797         (mono_get_exception_type_initialization): new function.
31798
31799         * object.c: throw a TypeInitializationException when an exception is
31800         thrown invoking the class constructor.
31801
31802 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31803
31804         * reflection.c: fixed attribute reading.
31805
31806 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31807
31808         * icall.c:
31809         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
31810         provided, look for the type in the calling assembly and then in
31811         mscorlib; if the assembly name is provided, only try that one.
31812
31813 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
31814
31815         * object.c: register the vtable before there is a chance it's
31816         queried again recursively.
31817
31818 2003-01-13  Duncan Mak  <duncan@ximian.com>
31819
31820         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
31821         gc-internal.h. 
31822         
31823 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
31824
31825         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
31826
31827 2003-01-11  Martin Baulig  <martin@ximian.com>
31828
31829         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
31830         this to 20 for the release.
31831
31832 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31833
31834         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31835
31836         * loader.c (mono_method_get_marshal_info): bug fix
31837
31838         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31839         structures with explicit layout
31840
31841 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31842
31843         * profiler.c: made the output more readable (and sorted). 
31844         Added caller information for the allocation profiler.
31845
31846 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31847
31848         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31849
31850 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31851
31852         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31853         to get value types.
31854         
31855 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31856
31857         * object.c, profiler.h, profiler.c, profiler-private.h:
31858         Added object allocation profiler.
31859
31860 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31861
31862         * reflection.h, reflection.c: handle global methods.
31863         Compress blob entries.
31864
31865 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31866
31867         * marshal.c: fix compilation.
31868
31869 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31870
31871         * loader.c (mono_method_get_marshal_info): impl.
31872
31873         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31874
31875 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31876
31877         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31878         for reference types.
31879
31880 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31881
31882         * loader.c: fixed off by one error in loaded parameter names.
31883
31884 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31885
31886         * marshal.c (mono_marshal_get_icall_wrapper): like
31887         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31888         instead of a MonoMethod.
31889
31890 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31891
31892         * decimal.c: fixed bug #36537.
31893
31894 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31895
31896         * marshal.c: throw a missing method exception if a
31897         P/Invoke method is not found.
31898
31899 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31900
31901         * icall.c: allow a null this for constructors.
31902
31903 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31904
31905         * icall.c: raise the proper exceptions if the arguments to the
31906         internal Invoke are incorrect.
31907
31908 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31909
31910         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31911
31912 2003-01-03  Martin Baulig  <martin@ximian.com>
31913
31914         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31915
31916 2002-12-31  Martin Baulig  <martin@ximian.com>
31917
31918         * debug-mono-symfile.c: Completely rewrote the type section.
31919         Instead of using individual malloc()ed fields, we use one big
31920         continuous memory area and offsets into this area.
31921         See the comments in the source code for details.
31922
31923 2002-12-30  Martin Baulig  <martin@ximian.com>
31924
31925         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31926
31927 2002-12-30  Martin Baulig  <martin@ximian.com>
31928
31929         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31930         line number table in this data blob instead of using an external
31931         pointer.
31932
31933 2002-12-28  Martin Baulig  <martin@ximian.com>
31934
31935         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31936
31937 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31938
31939         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31940         as a boxed return type.
31941
31942 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31943
31944         * appdomain.c
31945         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31946         g_build_filename to properly get separators on the filename created.
31947
31948         * object.h: Small change, introduce MonoMarshalByRefObject to
31949         track the layout of that structure in the C# universe as we make
31950         changes there.
31951
31952 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31953
31954         * object.c: removed assert to allow static fields on interfaces.
31955         * loader.c: a TypeSpec may be used for any type, not just arrays.
31956
31957 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31958
31959         * class.c, class.h: added mono_class_array_element_size ().
31960         Ignore static methods in interfaces.
31961
31962 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31963
31964         * threads.c: fixed the build under cygwin.
31965
31966 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31967
31968         * reflection.c: handle nullref constants. Allocate keys for
31969         reflection handles with the GC.
31970
31971 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31972
31973         * threads.c, threads.h: added mono_thread_get_abort_signal()
31974         to get a suitable signal for thread abort.
31975
31976 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31977
31978         * metadata.c: fix handling of ExportedType table.
31979
31980 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31981
31982         * icall.c: added WriteWindowsDebugString internal call.
31983
31984 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31985
31986         * reflection.h: added fields to match C# implementation.
31987
31988 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31989
31990         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31991
31992 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31993
31994         * gc.h, gc-internal.h: Rename header for GC internal calls to
31995         gc-internal.h from gc.h as to not clash with Boehm GC having its
31996         header installed as <gc.h> in outside include paths.
31997         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31998         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31999
32000 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32001
32002         * icall.c: assign minor, build and revision in FillName.
32003
32004 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
32005
32006         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
32007         Added support for running code generated by Reflection.Emit.
32008
32009 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32010
32011         * appdomain.c: check for NULL argument in LoadFrom.
32012
32013 2002-12-10  Dick Porter  <dick@ximian.com>
32014
32015         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
32016
32017 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32018
32019         * appdomain.c: fix buglet when building exe file name.  Handle full
32020         assembly name (needed after latest changes to AssemblyName).
32021         * image.c:
32022         (mono_image_close): free some hashtables.
32023
32024 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
32025
32026         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
32027         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
32028         on some systems (redhat 7.3) 
32029
32030 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
32031
32032         * threads.c: delete the critical section of a sync block,
32033         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
32034
32035 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
32036
32037         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
32038
32039 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32040
32041         * appdomain.[ch]: handle the assembly preload event to try loading the
32042         assemblies using the paths we have in the current domain.
32043
32044         * assembly.[ch]: created an assembly preload hook that is called to try
32045         loading the assembly by other means that the ones provided here.
32046
32047         * domain.c: initialize the domain search path.
32048
32049         From now on, assemblies (TODO: except corlib and System) are loaded
32050         according to these rules when using mono_assembly_load ():
32051
32052                 1. It tries to load the assembly from the ApplicationBase
32053                 of the current domain appending .dll and .exe (TODO: have to
32054                 try loading from name/name.dll and name/name.exe).
32055
32056                 2. It tries the search path specified in PrivateBinPath for the
32057                 current domain (if any).
32058
32059                 3. Previous behavior.
32060
32061 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
32062
32063         * icall.c: implemented GetInterfaceMap() related icall.
32064         * domain.c, loader.h: load MethodInfo in mono_defaults.
32065
32066 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
32067
32068         * gc.c: disable the finalizer thread for now, untill all the issues
32069         with it are resolved.
32070
32071 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32072
32073         * string-icalls.c: handle embedded nulls in string ctor when the
32074         length is specified.
32075
32076 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
32077
32078         * class.c: look for explicit interface implementation in parent
32079         classes, too.
32080
32081 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
32082
32083         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
32084
32085 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
32086
32087         * gc.c: protect handles with a critical section.
32088
32089 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32090
32091         * icall.c:
32092         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
32093         parameters. If no assembly specified, try getting the type from all
32094         the assemblies in the current domain, else, load the assembly and get
32095         the type from it.
32096
32097 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32098
32099         * marshal.c: applied patch from Aleksey Demakov that fixes
32100         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
32101
32102 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32103
32104         * icall.c: fixed get_location.
32105
32106 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
32107
32108         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
32109         declarations to make it work with older gcc. 
32110
32111         * loader.c (mono_get_method): set signature->pinvoke for native calls
32112
32113 2002-11-20  Dick Porter  <dick@ximian.com>
32114
32115         * threads.c (mono_thread_init): Set the main thread's handle
32116
32117 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
32118
32119         * gc.c: allow compilation without GC support. Changed to match the
32120         mono coding style.
32121
32122 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
32123
32124         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
32125
32126 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
32127
32128         * reflection.c: set a public key token on the core assemblies.
32129
32130 2002-11-18  Dick Porter  <dick@ximian.com>
32131
32132         * threads.c: Split out some thread initialisation so that other
32133         files can set the start callback function.
32134
32135         * gc.c: Run finalisers in a separate thread, to avoid stack
32136         overflow.  Fixes bug 31333.
32137
32138         * appdomain.c: Set up GC finalisation thread.
32139
32140         * reflection.c: 
32141         * object.c: 
32142         * domain.c: Use gc.h macros for GC_malloc
32143         
32144 2002-11-15  Dick Porter  <dick@ximian.com>
32145
32146         * threadpool.c: 
32147         * threads.c:
32148         * appdomain.c: Removed mono_runtime_init_with_attach(),
32149         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
32150         merging the extra parameter with the existing function.  Removed
32151         unneeded code in mono_thread_attach().
32152
32153 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
32154
32155         * image.c (mono_image_loaded_by_guid): a method to get loaded
32156         images by guid. 
32157         (load_metadata_ptrs): we store the guid as string.
32158
32159 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
32160
32161         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
32162
32163         * metadata.c (mono_guid_to_string): imported method form Zoltan
32164         Varga (slightly modified)
32165
32166         * assembly.c (mono_assembly_open): load precompiled code
32167
32168         * loader.h (MonoMethod): we store the method token for use in the
32169         aot compiler. 
32170
32171 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32172
32173         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
32174         the hook function called when an assembly is loaded.
32175         
32176         * domain.c: Modified file.
32177         (mono_domain_assembly_load): removed hash table insertion of assemblies.
32178
32179         Fixes bug #33196.
32180
32181 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
32182
32183         * reflection.c: Map PEFileKind to the value expected by the WinNT
32184         image loader. 
32185
32186 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32187
32188         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
32189         Read until the buffer is filled completely.
32190
32191 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32192
32193         * icall.c: implemented MonoType.InternalGetEvent ().
32194
32195 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32196
32197         * appdomain.c: implemented InitAppDomainSetup. Delayed
32198         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
32199         the entry_assembly.
32200
32201         * assembly.c: base_dir is now an absolute path ending with
32202         G_DIR_SEPARATOR.
32203
32204         * icall.c: modified get_location according to the above changes.
32205
32206         * object.c: init AppDomain.SetupInformation for the default domain after
32207         we have the entry assembly.
32208
32209         * domain.c: when unloading a domain, setup = NULL.
32210
32211 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
32212
32213         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
32214
32215 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
32216
32217         * object.h, object.c: introduced mono_object_get_virtual_method ()
32218         to lookup the method invoked on an object when a callvirt is done on
32219         a method.
32220         * icall.c: make MethodInfo::Invoke() always do a virtual call.
32221
32222 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32223
32224         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
32225         current domain when loaded an assembly and failed to load it.
32226
32227         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
32228
32229 2002-10-31  Dick Porter  <dick@ximian.com>
32230
32231         * icall.c: 
32232         * file-io.h: 
32233         * file-io.c: Return the error status in a parameter, as the
32234         GetLastError() value has long since been blown away if we try and
32235         look it up in a subsequent internal call invocation.  Delete the
32236         GetLastError() internal call, because it's useless.
32237
32238 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
32239
32240         * class.[ch]: added cast_class to fix bug 29517
32241
32242 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
32243
32244         * marshal.c: create valid IL code in the filter clause:
32245         the new JIT is less forgiving:-)
32246
32247 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32248
32249         * icall.c: removed get_property internal call.
32250
32251 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
32252
32253         * appdomain.h domain.c: Added an ID to appdomains.
32254         
32255         * threads.c threads.h icall.c: Implement icall
32256         Thread:GetDomainID(), and remove unused icall 
32257         CurrentThreadDomain_internal.
32258
32259 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32260
32261         * icall.c: Don't recurse through the base types in GetConstructor.
32262         Fixes bug #32063. 
32263
32264 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32265
32266         * mempool.h, mempool.c: added mono_mempool_empty() and
32267         mono_mempool_stats().
32268
32269 2002-10-23  Dick Porter  <dick@ximian.com>
32270
32271         * file-io.c: 
32272         * file-io.h: 
32273         * icall.c: Added MonoIO.GetFileType internal call
32274
32275 2002-10-17  Dick Porter  <dick@ximian.com>
32276
32277         * appdomain.c (mono_runtime_cleanup): Don't signal the async
32278         delegate semaphore before waiting for all threads to finish,
32279         because new threads can also call async delegates.  Fixes bug
32280         32004.
32281
32282         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
32283         of 3 seconds, in case another async job is queued.  (This part is
32284         needed because the bug fix reintroduced the 3s exit lag.)  This
32285         makes the mono_runtime_shutdown flag superfluous.
32286
32287 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
32288
32289         * reflection.c: include ehader size in method section headers.
32290         Really check for suplicated modules entries.
32291
32292 2002-10-17  Martin Baulig  <martin@gnome.org>
32293
32294         * debug-mono-symfile.c: Added back support for locals.
32295
32296 2002-10-14  Martin Baulig  <martin@gnome.org>
32297
32298         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
32299         MONO_TYPE_VOID.
32300
32301 2002-10-14  Martin Baulig  <martin@gnome.org>
32302
32303         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
32304         mono_class_get() instead of looking in the class cache. 
32305
32306 2002-10-13  Martin Baulig  <martin@gnome.org>
32307
32308         * debug-mono-symfile.c: Set version number to 28, include the
32309         signature in method names.
32310
32311 2002-10-13  Martin Baulig  <martin@gnome.org>
32312
32313         * debug-mono-symfile.h: Set version number to 27.
32314
32315 2002-10-11  Martin Baulig  <martin@gnome.org>
32316
32317         * gc.c: Don't register/unregister NULL pointers as disappearing links.
32318
32319 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32320
32321         * metadata.c, metadata.h: added helper function to allocate signatures.
32322
32323 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32324
32325         * icall.c: added internal call to get the location of machine.config.
32326
32327 2002-10-08  Martin Baulig  <martin@gnome.org>
32328
32329         * debug-mono-symfile.c: Ignore classes with a pending init for the
32330         moment.
32331
32332 2002-10-03  Dick Porter  <dick@ximian.com>
32333
32334         * threads.c: Freebsd pthread_t is a pointer
32335
32336 2002-10-03  Dick Porter  <dick@ximian.com>
32337
32338         * socket-io.c: Implemented GetHostName_internal
32339
32340 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32341
32342         * mono-config.c:
32343         (mono_config_parse_file): don't leak the text.
32344
32345 2002-10-02  Martin Baulig  <martin@gnome.org>
32346
32347         * debug-mono-symfile.c: Added support for methods.
32348
32349 2002-10-01  Martin Baulig  <martin@gnome.org>
32350
32351         * debug-mono-symfile.c: Don't emit methods and line numbers for
32352         the dynamic symbol file, just write the type table.  We can easily
32353         have an external helper program which creates a symbol file for an
32354         IL file.        
32355
32356 2002-10-01  Dick Porter  <dick@ximian.com>
32357
32358         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
32359         Only add the handle to the cleanup array when we're about to
32360         launch the thread.  Bug 31425 deadlocked when the test was run on
32361         mono under w32.
32362
32363 2002-10-01  Martin Baulig  <martin@gnome.org>
32364
32365         * debug-mono-symfile.c: Added support for properties.
32366
32367 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32368
32369         * reflection.c: unaligned store fix from Mark Crichton
32370         <crichton@gimp.org>.
32371
32372 2002-09-27  Martin Baulig  <martin@gnome.org>
32373
32374         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
32375         New interncall.
32376
32377 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32378
32379         * assembly.h, assembly.c: use a sane API to hook into the assembly
32380         loading process instead of a useless special-purpouse hack
32381         (ngen needs a hook, too, for example).
32382
32383 2002-09-27  Dick Porter  <dick@ximian.com>
32384
32385         * threads.c (mono_thread_init): Call GetCurrentProcess() so
32386         io-layer can set up some process handle info.  Not needed on w32,
32387         but doesn't hurt either.
32388
32389         * process.c: Pass the program name in the second parameter to
32390         CreateProcess, so the path is searched.  Include the working
32391         directory. Implemented process name, process enumeration, and some
32392         process detail internal calls.
32393         
32394         * icall.c: Added internal calls for process lookup, and some
32395         process details
32396
32397 2002-09-26  Martin Baulig  <martin@gnome.org>
32398
32399         * assembly.c (mono_install_open_assembly_hook): New global
32400         function to install a function to be invoked each time a new
32401         assembly is loaded.
32402         (mono_assembly_open): Run this callback function if set.
32403
32404         * debug-mono-symfile.c: Put back line numbers for the dynamic
32405         symbol file and also record the .il file as source file.  This
32406         allows us to install the temporary symbol file as `file.dbg' just
32407         like a compiler-generated one.
32408
32409 2002-09-26  Nick Zigarovich <nick@chemlab.org>
32410
32411         * Corrected typo in gc.c (BOHEM vs BOEHM).
32412
32413 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32414
32415         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
32416         GetProperties. Also avoid calling g_slist_length in GetProperties and
32417         GetMethods.
32418
32419 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32420
32421         * reflection.c: avoid unaligned stores (bug spotted by
32422         Mark Crichton  <crichton@gimp.org>).
32423
32424 2002-09-25  Martin Baulig  <martin@gnome.org>
32425
32426         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
32427         instead of guint64 for addresses and added prologue/epilogue info.
32428
32429 2002-09-25  Martin Baulig  <martin@gnome.org>
32430
32431         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
32432         store line number info.  For the dynamic symbol file, we only need
32433         to provide the JIT generated dynamic line number info for the dynamic
32434         symbol file.
32435
32436 2002-09-25  Martin Baulig  <martin@gnome.org>
32437
32438         * debug-mono-symfile.h: Incremented version number.
32439
32440 2002-09-24  Martin Baulig  <martin@gnome.org>
32441
32442         * class.c (mono_debugger_class_init_func): New global function
32443         pointer variable.
32444         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
32445         call it.
32446
32447         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
32448         function.  This is called via the mono_debugger_class_init_func
32449         hook to add all types to the dynamic type table.
32450         (ves_icall_MonoDebugger_GetType): New interncall to get a class
32451         from its metadata token.
32452
32453         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
32454         New interncall for the debugger.
32455
32456 2002-09-24  Nick Drochak <ndrochak@gol.com>
32457
32458         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
32459         before using it in case it is null.
32460         
32461 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32462
32463         * metadata.c: allow custom modifiers in local var signatures
32464         (bug spotted by Zoltan Varga).
32465
32466 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32467
32468         * class.c: deal with the <Module> class that may have a NULL vtable.
32469         Eliminate warnings.
32470
32471 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32472
32473         * image.c, image.h: more strong name helpers.
32474         * monosn.c: more work: convert pem keys to cryptoapi format.
32475
32476 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32477
32478         * string-icalls.c: speedup IndexOf.
32479
32480 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32481
32482         * icall.c: updates from Zoltan.2.Varga@nokia.com.
32483
32484 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32485
32486         * icall.c: cleanup: use mono_object_domain ().
32487
32488 2002-09-23  Martin Baulig  <martin@gnome.org>
32489
32490         * debug-mono-symfile.c: Improved type support.
32491
32492 2002-09-22  Martin Baulig  <martin@gnome.org>
32493
32494         * debug-mono-symfile.c: Added support for reference types and strings.
32495
32496 2002-09-22  Martin Baulig  <martin@gnome.org>
32497
32498         * debug-mono-symfile.c: Started to work on the type table.
32499
32500 2002-09-21  Martin Baulig  <martin@gnome.org>
32501
32502         * debug-mono-symfile.c: Largely reworked the symbol table format.
32503         The symbol table is now incrementally updated each time a new
32504         method is added.  We're now also using our own magic and version
32505         so that you don't need to recompile all your classes if the
32506         dynamic table changes.
32507         (mono_debug_update_mono_symbol_file): Removed.
32508         (mono_debug_symfile_add_method): New function to add a method.
32509
32510 2002-09-21  Martin Baulig  <martin@gnome.org>
32511
32512         * icall.c
32513         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
32514         New interncall.
32515
32516         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
32517         New interncall to get a method from its metadata token.
32518
32519 2002-09-21  Martin Baulig  <martin@gnome.org>
32520
32521         * debug-mono-symfile.c: Create type table.
32522
32523 2002-09-20  Martin Baulig  <martin@gnome.org>
32524
32525         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
32526
32527 2002-09-20  Martin Baulig  <martin@gnome.org>
32528
32529         * debug-mono-symfile.c: Provide information about params and locals.
32530
32531 2002-09-20  Martin Baulig  <martin@gnome.org>
32532
32533         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
32534         New interncall.
32535
32536         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
32537         interncall to get a method from its metadata token.
32538
32539 2002-09-20  Martin Baulig  <martin@gnome.org>
32540
32541         * debug-mono-symfile.c: Added a few checks for method->header
32542         being non-NULL.  This should never happen, but for the moment
32543         let's use a g_warning() rather than a g_assert().
32544
32545 2002-09-19  Mark Crichton  <crichton@gimp.org>
32546
32547         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
32548         even if support for it isn't present.  Added an #ifdef to fix this.
32549
32550         * socket-io.c: Added checks back for Solaris support.
32551
32552 2002-09-19  Martin Baulig  <martin@gnome.org>
32553
32554         * debug-mono-symfile.c (read_string, write_string): Reflect latest
32555         changes in the symbol file format.
32556
32557 2002-09-18  Martin Baulig  <martin@gnome.org>
32558
32559         * debug-mono-symfile.c: Set version number to 21.
32560
32561 2002-09-18  Dick Porter  <dick@ximian.com>
32562
32563         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
32564         on netbsd.  Fixes bug 30051.
32565
32566 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32567
32568         * reflection.c:
32569         (set_version_from_string): little fix.
32570
32571 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32572
32573         * monosn.c, Makefile.am: added strong name utility.
32574         * reflection.h, reflection.c: implemented delayed signing,
32575         locale, version and hash id assembly attributes.
32576
32577 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32578
32579         * loader.c, metadata.c: load param attributes in signatures.
32580
32581 2002-09-16  Martin Baulig  <martin@gnome.org>
32582
32583         * debug-mono-symfile.c: Added string table with all method names.
32584
32585 2002-09-14  Martin Baulig  <martin@gnome.org>
32586
32587         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
32588         fast method lookup.
32589
32590 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32591
32592         * reflection.c: record the public key token of referenced assemblies.
32593
32594 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32595
32596         * image.c, image.h: added functions to get the strong name and the
32597         public key of an assembly.
32598         * pedump.c: use them.
32599
32600 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
32601
32602         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
32603
32604 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
32605
32606         * marshal.c (mono_marshal_get_managed_wrapper): Added
32607         MONO_TYPE_BOOLEAN 
32608
32609 2002-09-11  Martin Baulig  <martin@gnome.org>
32610
32611         * gc.c: Call GC_unregister_disappearing_link() on all links when
32612         finalizing them, this is necessary to aviod a crash in boehm's
32613         finalize handler.
32614
32615 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32616
32617         * gc.c: handle GetTarget for finalized objects spotted and fixed by
32618         nick@chemlab.org.
32619
32620 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32621
32622         * icall.c: implemented MonoType::Module.
32623         * reflection.c, reflection.h: mono_module_get_object () from
32624         Tomi Pakarinen <tomi.pakarinen@welho.com>.
32625
32626 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32627
32628         * icall.c: ignore overridden methods in GetMethods ().
32629         Fix for FieldInfo::SetValue().
32630         * object.c: handle float/double in runtime invoke.
32631
32632 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32633
32634         * object.c: allow a constructor to be called again on an object.
32635
32636 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32637
32638         * class.h, class.c: move field layout code to it's own function and
32639         export it. Get an interface id earlier. Move fields in MonoClass
32640         so they are more cache friendly and align the bitfields.
32641         * loader.c: temporary handle get_param_names() for a runtime method.
32642         * reflection.c, reflection.h: more code to handle runtime creation of
32643         types.
32644
32645 2002-09-09  Martin Baulig  <martin@gnome.org>
32646
32647         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
32648         signature with the pinvoke field being set for the actual call.
32649
32650 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32651
32652         * icall.c: removed some unused icalls. Start of map of glib charsets
32653         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
32654
32655 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32656
32657         * debug-helpers.c: break infinite loop (found and fixed by
32658         Holger Arnold <harnold@gmx.de>).
32659
32660 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32661
32662         * icall.c: target may be null in create_delegate.
32663
32664 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32665
32666         * marshal.c: handle a boolean return type.
32667
32668 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32669
32670         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
32671
32672 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32673
32674         * gc.c: fix weakreferences.
32675
32676 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32677
32678         * icall.c: added icall to get default codepage.
32679
32680 2002-09-03  Dick Porter  <dick@ximian.com>
32681
32682         * threads.h: 
32683         * threads.c: Use MonoThread instead of MonoObject where
32684         apropriate.
32685
32686         Store running thread objects in a hash table, so that we have all
32687         the info to hand when waiting for them to finish
32688         (means we don't need OpenThread() any more, so mingw builds should
32689         be fully functional again.)
32690
32691         * verify.c:
32692         * object.h: Added thread ID to MonoThread
32693
32694 2002-09-03  Martin Baulig  <martin@gnome.org>
32695
32696         * icall.c (System.Reflection.Assembly::get_location): New interncall.
32697
32698 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32699
32700         * icall.c: fixed leak in get_temp_path. Thanks lupus.
32701
32702 2002-09-03  Martin Baulig  <martin@gnome.org>
32703
32704         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
32705         argument to store the end address of the disassembled instruction.
32706
32707         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
32708         here from debug-symfile.h.
32709         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
32710         JIT into this struct.
32711         (MonoSymbolFile): Added `char *image_file' field.
32712         (MonoDebugGetMethodFunc): Removed.
32713         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
32714         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
32715         (mono_debug_find_method): New method.
32716
32717         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
32718         create a full symbol file.
32719         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
32720         and static symbol files.
32721         (mono_debug_find_method): The symbol file keeps an internal method hash,
32722         call this to get a MonoDebugMethodInfo from a MonoMethod.
32723
32724         * debug-symfile.[ch]: Removed.
32725
32726 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
32727
32728         * image.c (do_mono_image_open): Remove linker version check.
32729
32730 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
32731
32732         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
32733         wrappers for instance methods.
32734         
32735 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32736
32737         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
32738
32739 2002-08-28  Dick Porter  <dick@ximian.com>
32740
32741         * Makefile.am: Export HOST_CC for w32 builds
32742
32743 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32744
32745         * file-io.c process.c: MonoString are null terminated, no
32746         need for mono_string_to_utf16() anymore.
32747
32748 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32749
32750         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
32751
32752 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
32753
32754         * icall.c, reflection.h: speedup System.MonoType.
32755
32756 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32757
32758         * reflection.c: allow null as the value of a string argument in
32759         custom attributes constructors.
32760
32761 2002-08-27  Martin Baulig  <martin@gnome.org>
32762
32763         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
32764         `trampoline_address' field.
32765
32766 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
32767
32768         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
32769         check (fixes bug #29486) 
32770
32771 2002-08-27  Martin Baulig  <martin@gnome.org>
32772
32773         * debug-mono-symfile.c: Changed the file format in a way that allows us
32774         open it read-only and to use a specially malloced area for all the
32775         dynamic data.  We can now also generate a symbol file on-the-fly if we're
32776         debugging IL code and there is no MCS generated symbol file for it.
32777
32778 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32779
32780         * object.c: added a define for a good string and array
32781         creation speedup (not enabled by default because we need to deal with
32782         the synch stuff).
32783
32784 2002-08-26  Martin Baulig  <martin@gnome.org>
32785
32786         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
32787         function to create a dynamic symbol file.  This is used by the
32788         debugger to create a symbol file for IL code on-the-fly.
32789
32790 2002-08-26  Martin Baulig  <martin@gnome.org>
32791
32792         * loader.c (mono_lookup_pinvoke_call): Include the error message
32793         from g_module_error() in the error message.
32794
32795 2002-08-24  Martin Baulig  <martin@gnome.org>
32796
32797         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
32798         function to update the symbol file.  The symbol file is mmap()ed
32799         writable, but private.  This allows us to install the symbol file
32800         together with the assembly.
32801
32802 2002-08-24  Martin Baulig  <martin@gnome.org>
32803
32804         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
32805         but they can read the new symbol file format which mcs is now creating.
32806
32807         * debug-symfile.c (mono_debug_find_source_location): Moved to
32808         debug-mono-symfile.c; this is now operating on the new symbol file.
32809
32810 2002-08-23  Martin Baulig  <martin@gnome.org>
32811
32812         * debug-helpers.c (mono_method_desc_from_method): New function to get
32813         a MonoMethodDesc from a MonoMethod.
32814
32815 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32816
32817         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
32818         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
32819
32820 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32821
32822         * string-icalls.[ch]: make helper methods static.
32823
32824 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32825
32826         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
32827         types to it and to SetValueInternal.
32828
32829         * object.c: Moved handle_enum label to its proper place. This was the
32830         f... bug! ;-)
32831
32832         This time i compiled mcs and gtk-sharp and they both work.
32833
32834 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32835
32836         * icall.c: reverted partially my previous patch until 
32837         object.c:set_value handles enums correcly.
32838
32839 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32840
32841         * icall.c:
32842         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32843         (ves_icall_System_Environment_get_MachineName): removed warning when
32844         compiling under cygwin.
32845
32846 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32847
32848         * object.c: fixed field_get_value() for reference types.
32849
32850 2002-08-22  Dick Porter  <dick@ximian.com>
32851
32852         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32853         Don't free a buffer while it's still needed.  Patch from Jonathan
32854         Liger <Jonathan.liger@wanadoo.fr>
32855
32856 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32857
32858         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32859         internal call.
32860
32861 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32862
32863         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32864         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32865
32866         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32867         we call unmanaged code which throws exceptions.
32868
32869 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32870
32871         * appdomain.h: added per-domain entry_assembly.
32872         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32873         arguments.
32874         * icall.c: Assembly::GetEntryAssembly icall.
32875         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32876         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32877
32878 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32879
32880         * appdomain.h, gc.c: added mono_domain_finalize ().
32881
32882 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32883
32884         * object.c:
32885         (mono_print_unhandled_exception): changed g_warning by g_printerr
32886         because g_log has a 1024 characters limit (yeah, i got a big stack
32887         trace). Don't print exception name, that should be in ToString 
32888         returned string.
32889
32890 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32891
32892         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32893         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32894
32895 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32896
32897         * object.c:
32898         (mono_print_unhandled_exception): after previous commit, i realized
32899         that MS calls ToString on the exception. I changed this function to
32900         do that. This way we get stack_trace for free.
32901
32902 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32903
32904         * object.c:
32905         (mono_print_unhandled_exception): invoke Message property instead of
32906         getting 'message' field from Exception. Don't allocate memory for
32907         'trace' and 'message' if not needed.
32908
32909 2002-08-18  Dick Porter  <dick@ximian.com>
32910
32911         * unicode.c: Fix asserts to match Encoder.cs checks
32912
32913 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32914
32915         * marshal.c: fix unaligned store issue and a few wrong
32916         opcode argument types.
32917
32918 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32919
32920         * icall.c: added GetUninitializedObjectInternal internal call.
32921
32922 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32923
32924         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32925         to the right domain.
32926
32927 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32928
32929         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32930
32931         * class.c (class_compute_field_layout): set blittable to false for Strings
32932
32933         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32934
32935 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32936
32937         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32938         first chunk of code to create types at runtime. Code to
32939         handle ReflectedType/DeclaringType. Make reflection handles
32940         domain specific.
32941
32942 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32943
32944         * class.c: set correct name in arrays.
32945
32946 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32947
32948         * appdomain.c (mono_domain_transfer_object): make it work with
32949         valuetypes. bug fixes.
32950
32951 2002-08-12  Dick Porter  <dick@ximian.com>
32952
32953         * object.h: Rename some parameters to avoid c++ keywords (Patch
32954         from Joseph Wenninger <kde@jowenn.at>)
32955
32956 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32957
32958         * icall.c: added icall to implement Assembly.GetFile*.
32959
32960 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32961
32962         * reflection.h, reflection.c: code to embed managed resources.
32963
32964 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32965
32966         * class.c: move all the type size stuff into
32967         class_compute_field_layout().
32968
32969 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32970
32971         * class.c: ensure enums have always the correct instance size.
32972         * unicode.c: remove wrong assert.
32973
32974 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32975
32976         * assembly.c: fix mem corruption issue.
32977         * image.h, image.c: added mono_image_get_resource () to access
32978         managed resources.
32979         * icall.c: implemented Assembly.EntryPoint property and some
32980         Managed Resources related internalcalls.
32981
32982
32983 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32984
32985         * image.c, image.h: impemented mono_image_get_entry_point ().
32986         * appdomain.c: use mono_image_get_entry_point.
32987
32988 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32989
32990         * reflection.c: support the object type argument when loading
32991         custom attributes.
32992
32993 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32994
32995         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32996         String as return type.
32997
32998 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32999
33000         * reflection.c: fix encoding of named args for custom attrs to match
33001         the ms implementation. Read them back when instantiating custom
33002         attributes.
33003
33004 2002-08-02  Radek Doulik  <rodo@ximian.com>
33005
33006         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
33007         by Dietmar as quick fix
33008         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
33009         16 as stack size, used on more places as quick fix before Dietmar
33010         will fix it properly
33011
33012 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33013
33014         * object.h, object.c: added accessors for fields and properties.
33015
33016 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33017
33018         * class.c, class.h: made mono_class_get_field_from_name ()
33019         loop on parent types.
33020         Added mono_class_get_property_from_name ().
33021
33022 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33023
33024         * class.c, class.h: move the code to setup the type vtable in its own
33025         function so that it can be reused also for types created at runtime.
33026         Eliminate the "class" identifier from the header file.
33027         * reflection.c: setup the vtable for enums so that we can create
33028         objects for use in SetConstant ().
33029
33030 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
33031
33032         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
33033         instead of the delegate itself as this pointer (bug #28383)
33034
33035 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
33036
33037         * marshal.c (mono_marshal_get_managed_wrapper): added return type
33038         conversions.
33039
33040 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33041
33042         * loader.c: don't set the pinvoke bit on icalls.
33043
33044 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
33045
33046         * debug-helpers.c (mono_method_full_name): only print a number to
33047         indicate wrapper type (so that the output is more readable in traces).
33048
33049 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
33050
33051         * class.c (mono_class_init): include method override patch from Paolo
33052
33053 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
33054
33055         * icall.c: fixed GetTypeCode().
33056
33057 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
33058
33059         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
33060         use real delegate invoke function to make it work with multicast
33061         delegates (fix bug# 28291).
33062
33063 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33064
33065         * object.c: load constant strings.
33066
33067 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33068
33069         * reflection.c: no magic numbers.
33070         * tabledefs.h: security action enum.
33071
33072 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33073
33074         * assembly.c: fix possible memory corruption.
33075
33076 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33077
33078         * reflection.h, reflection.c: added support for linking resources.
33079         * verify.c: check we have an updated corlib.
33080
33081 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
33082
33083         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
33084         string arrays.
33085         (mono_marshal_string_array): null terminate unmanaged string arrays.
33086         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
33087
33088 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33089
33090         * icall.c: Type.GetType () can now return also types from the
33091         calling assembly.
33092
33093 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
33094
33095         * loader.h, loader.c: stack walking support.
33096         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
33097         GetCallingAssembly.
33098
33099 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
33100
33101         * marshal.c: added optimisations for blittable types 
33102
33103         * class.c (mono_array_class_get): do not set blittable attribute on arrays
33104         (mono_class_setup_mono_type): set blittable attribute for single
33105         and double.
33106
33107         * marshal.c (mono_string_utf8_to_builder): impl.
33108         (mono_string_builder_to_utf8): impl.
33109         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
33110
33111 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
33112
33113         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
33114         (mono_marshal_get_managed_wrapper): impl. byref types
33115
33116 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33117
33118         * icall.c:
33119         (search_method): don't display debug message. 
33120
33121 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
33122
33123         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
33124
33125 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
33126
33127         * appdomain.c: set the missing filename when throwing exception.
33128
33129 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
33130
33131         * metadata.c (mono_type_size): code cleanup
33132         (mono_type_stack_size): removed some test code
33133
33134 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
33135
33136         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
33137         mono_get_exception_file_not_found now.
33138
33139         * exception.c (mono_exception_from_name_two_strings): New version
33140         that will call a constructor with two string arguments. 
33141         (mono_get_exception_file_not_found): New helper routine, used to
33142         report file-not-found errors.
33143
33144 2002-07-20  Dick Porter  <dick@ximian.com>
33145
33146         * process.h:
33147         * process.c: Pass file handles to CreateProcess
33148         
33149         * icall.c:
33150         * file-io.h:
33151         * file-io.c: Implemented CreatePipe
33152
33153 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
33154
33155         * metadata.c (mono_get_param_info): set alignment for value types
33156
33157 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33158
33159         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
33160         Constify mono_domain_assembly_open().
33161         * loader.c: handle null namespace in icalls.
33162
33163 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
33164
33165         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
33166         (emit_str_to_ptr_conv): marshal object as structs
33167
33168         * metadata.c (mono_type_to_unmanaged): marshal object as structs
33169
33170         * marshal.c (mono_marshal_get_runtime_invoke): support value types
33171
33172 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
33173
33174         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
33175         (mono_marshal_get_native_wrapper): we an now return value types
33176
33177 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33178
33179         * verify.c: more checks implemented.
33180
33181 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
33182
33183         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
33184         (fix bug #27695)
33185         (mono_marshal_get_native_wrapper): allow byref arguments
33186         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
33187         impl. PtrToStringXXX methods
33188         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
33189         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
33190         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
33191         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
33192         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
33193
33194 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33195
33196         * reflection.c: fix buglet in parsing an assembly name.
33197
33198 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
33199
33200         * marshal.c (emit_ptr_to_str_conv): first impl.
33201
33202 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33203
33204         * object.c, class.h: cache the vtable in the class as suggested by
33205         vargaz@freemail.hu (Zoltan Varga).
33206
33207 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33208
33209         * class.h, loader.c: added mono_field_from_token().
33210         * verify.c: first cut of type checking code.
33211
33212 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
33213
33214         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
33215
33216 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
33217
33218         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
33219         (fix bug #27782)
33220         (mono_marshal_get_remoting_invoke): impl.
33221         (mono_delegate_begin_invoke): impl.
33222         (mono_mb_emit_save_args): impl.
33223         (mono_delegate_end_invoke): impl.
33224         (mono_marshal_get_delegate_begin_invoke):
33225         (mono_marshal_get_delegate_end_invoke):
33226         (mono_marshal_get_delegate_invoke): generate a special name for
33227         those methods (including the signature) and associate them whith
33228         the delegate class. 
33229
33230 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
33231
33232         * reflection.[ch]: 
33233         (mono_reflection_type_from_name): now it has a MonoImage parameter
33234         which is used as the default image to search the type in. If the image
33235         is NULL or getting the type from it fails, it defaults to corlib.
33236
33237         * icall.c: changed 1 call to mono_reflection_type_from_name to match
33238         new parameter.
33239
33240 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33241
33242         * reflection.c: update the parameter table index.
33243
33244 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33245
33246         * domain.c: don't include the mark byte in the string hash.
33247
33248 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33249
33250         * icall.cs: icall for Type.GetTypeCode ().
33251         * verify: a couple of fixes and disabled local initialization checks.
33252
33253 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
33254
33255         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
33256
33257         * debug-helpers.c (mono_method_full_name): print the type of the
33258         runtime wrapper
33259
33260         * metadata.c (mono_signature_hash): a hash function for signatures
33261         (mono_signature_hash): better hash algorithm
33262
33263         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
33264
33265         * debug-helpers.c (mono_method_full_name): this can now generate
33266         method names with signatures
33267
33268         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
33269         method dont have this pointers.
33270
33271 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33272
33273         * reflection.c: fixup typebuilder tokens.
33274         * image.c: fix buglet.
33275         * marshal.h: remove whitespace.
33276         * metadata.h, metadata.c: reinstate code that was removed.
33277         * verify.c: handle catch directives and fix another couple of bugs.
33278
33279 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
33280
33281         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
33282         (mono_marshal_get_native_wrapper): make it comp. with the old code
33283         (mono_marshal_get_native_wrapper): support boolean
33284         (mono_marshal_get_managed_wrapper): support more types
33285
33286 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
33287
33288         * class.c (class_compute_field_layout): compute class->blittable attribute.
33289
33290 2002-07-09  Dick Porter  <dick@ximian.com>
33291
33292         * threads.c: Make the thread cleaning up cope with threads that
33293         call ExitThread()
33294
33295 2002-07-08  Radek Doulik  <rodo@ximian.com>
33296
33297         * reflection.c (method_encode_code): use non-translated values to
33298         compute finally_start, this fixes exception handling on ppc, yay!
33299
33300         * decimal.h (struct signscale): fix endianess
33301
33302 2002-07-07  Radek Doulik  <rodo@ximian.com>
33303
33304         * reflection.c: swap box_val and not val
33305
33306 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33307
33308         * reflection.c, reflection.h: handle full assembly info in type name.
33309         Handle Type arguments when loading custom attributes.
33310         * icall.c: updated to use new mono_reflection_type_from_name () method.
33311
33312 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33313
33314         * loader.c:
33315         (method_from_memberref): also print assembly name when method not found.
33316
33317 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33318
33319         * icall.c:
33320         (ves_icall_TypeGetProperties): fixed bug #27473. 
33321
33322 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33323
33324         * reflection.c: display image name and token when cannot find the
33325         .ctor for an attribute.
33326
33327 2002-07-05  Martin Baulig  <martin@gnome.org>
33328
33329         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33330
33331 2002-07-04  Dick Porter  <dick@ximian.com>
33332
33333         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
33334         compile on mingw.  This will cause mingw builds to not wait for
33335         subthreads to terminate after the main thread does.  I've lodged a
33336         bug with the mingw developers for them to wrap OpenThread().
33337
33338 2002-07-03  Dick Porter  <dick@ximian.com>
33339
33340         * threads.c: Store thread IDs instead of handles, because
33341         GetCurrentThread() returns a pseudohandle and therefore stores
33342         useless values.  mono_thread_cleanup() continues checking the
33343         array of threads until it is empty, to cope with subthreads
33344         spawning new threads after the main thread has finished.
33345
33346         * profiler.h:
33347         * profiler.c:
33348         * profiler-private.h: Pass the thread ID to thread profiler
33349         functions, instead of a handle
33350
33351 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33352
33353         * verify.c: fixes to make it more usable.
33354         * pedump.c: added --verify code to verify IL code in an assembly.
33355
33356 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33357
33358         * reflection.c: turn errors into warnings to allow compiling corlib.
33359
33360 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33361
33362         * reflection.c: add special cases to compile corlib.
33363
33364 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33365
33366         * reflection.c: handle properties with only a set method.
33367
33368 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33369
33370         * opcodes.h: add enum with opcodes in opval order.
33371
33372 2002-07-01  Dick Porter  <dick@ximian.com>
33373         
33374         * object.h:
33375         * object.c (mono_runtime_run_main): Removed unneeded argument
33376
33377 2002-06-28  Martin Baulig  <martin@gnome.org>
33378
33379         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33380
33381 2002-06-27  Dick Porter  <dick@ximian.com>
33382
33383         * threads.c: Store the handle in both the parent thread and in the
33384         subthread, to minimise the time between starting a new thread and
33385         storing its ID.
33386
33387 2002-06-26  Dick Porter  <dick@ximian.com>
33388
33389         * appdomain.c (mono_runtime_cleanup): Close the socket library
33390         after all the threads have finished, not before
33391
33392 2002-06-26  Martin Baulig  <martin@gnome.org>
33393
33394         * debug-symfile.c (mono_debug_find_source_location): Added
33395         `guint32 *line_number' argument.  If it's not NULL, store the line number
33396         there and return the file name without the line number.
33397
33398 2002-06-25  Dick Porter  <dick@ximian.com>
33399
33400         * icall.c:
33401         * process.h:
33402         * process.c: Process forking and other support functions
33403
33404 2002-06-25  Dick Porter  <dick@ximian.com>
33405
33406         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
33407         things dont happen when the image is closed.
33408         (mono_image_lookup_resource): Walk the resource section looking
33409         for a particular entry
33410
33411         * cil-coff.h: PE resource section decoding
33412
33413 2002-06-25  Dick Porter  <dick@ximian.com>
33414         
33415         * assembly.h:
33416         * assembly.c: 
33417         (mono_assembly_foreach): Accessor functions to walk the list of
33418         loaded assemblies
33419         (mono_assembly_set_main):
33420         (mono_assembly_get_main): Process methods need to know which
33421         assembly is the "main" one
33422
33423         * object.c (mono_runtime_run_main): Record the main assembly
33424
33425         * debug-helpers.c: Fix typo
33426
33427 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
33428
33429         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
33430         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
33431
33432 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33433
33434         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
33435
33436 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
33437
33438         * image.c (do_mono_image_open): Initialize reference count,
33439         otherwise we leak the MonoImage.
33440
33441 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33442
33443         * reflection.c: small tweak to handle self-hosting.
33444
33445 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33446
33447         * reflection.c: fix type name parse code.
33448
33449 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33450
33451         * reflection.c: break out of the loop.
33452         * image.c: special case corlib.
33453
33454 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33455
33456         * reflection.c: add all the custom attrs at the end to ensure the
33457         ctors have been properly initialized when the attributes are defined
33458         in the current assembly.
33459
33460 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33461
33462         * reflection.c: handle correctly multiple-nested types.
33463
33464 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33465
33466         * row-indexes.h: fix typos.
33467         * reflection.c: adjust for typos and fix method_def_or_ref
33468         encoding in MethodImpl table.
33469
33470 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33471
33472         * reflection.c: fix entry point patching (thanks Serge!).
33473
33474 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
33475
33476         * verify.c: add check for System.Exception
33477
33478 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33479
33480         * image.c, class.c: minifix for code just c&p'ed.
33481         * reflection.c: warning fix.
33482         * object.h, loader.h, domain.c: load also StringBuilder.
33483
33484 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33485
33486         * marshal.h, marshal.c: some support code to handle complex marshaling.
33487
33488 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33489
33490         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
33491         Better signatures with vtable error dump.
33492
33493 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
33494
33495         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
33496
33497 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
33498
33499         * icall.c (ves_icall_Type_GetField): impl.
33500
33501 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33502
33503         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
33504         to retrieve a marshal description blob for a field or param.
33505
33506 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33507
33508         * reflection.h, reflection.c: change order of nested type emission
33509         to avoid table corruption. The NestedTypes table is sorted.
33510         * icall.c: change order of GetConstructor results to workaround mcs bug.
33511
33512 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33513
33514         * reflection.h, reflection.c: handle field and param marshal
33515         information.
33516
33517 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33518
33519         * icall.c, marshal.c marshal.h: more Marshal class implementation.
33520
33521 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33522
33523         * reflection.c: fix call convention.
33524
33525 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33526
33527         * reflection.h, reflection.c: mono_image_get_memberref_token()
33528         takes a type instead of a class, now. Added
33529         mono_image_get_array_token() to create tokens for the special
33530         multi-dim array methods.
33531
33532 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33533
33534         * assembly.c: handle modules (no assembly table). Split
33535         loading references in its own function.
33536         * class.c: handle moduleref resolution scope.
33537         * image.c, image.h: cache module name in image.
33538
33539 2002-06-07  Martin Baulig  <martin@gnome.org>
33540
33541         * reflection.c (mono_image_get_type_info): Only add a class layout entry
33542         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
33543
33544 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33545
33546         * icall.c: more signature fixes that used uint instead of int.
33547
33548 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33549
33550         * reflection.c: fixed signature of field refs.
33551
33552 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33553
33554         * class.c, reflection.c: handle typerefs of nested types
33555         (both on read and when writing files).
33556
33557 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33558
33559         * icall.c: fix method signatures that tried to workaround the previous
33560         typo, d'oh!
33561
33562 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33563
33564         * debug-helpers.c: fix typo.
33565
33566 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33567
33568         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
33569         rewrote the PE/COFF writing code (our programs are understood by the
33570         ms runtime, now).
33571
33572 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33573
33574         * gc.c, gc.h, icall.c: weakreference support.
33575
33576 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33577
33578         * Makefile.am, mono-config.c: use $(sysconfdir).
33579
33580 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33581
33582         * icall.c: changed default precision of Double.ToString() to 15.
33583         Fixed memory leak. Unified with Single.ToString.
33584
33585 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33586
33587         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
33588
33589 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33590
33591         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
33592         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
33593         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
33594         and myself.
33595
33596 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33597
33598         * debug-symfile.c, sysmath.c: yet more compilation fixes.
33599
33600 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33601
33602         * reflection.c, socket-io.c: more compilation fixes.
33603
33604 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33605
33606         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
33607         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
33608         unicode.c: warning and compiler compatibility fixes.
33609
33610 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33611
33612         * class.h, metadata.c: fixed warnings/compilation errors.
33613
33614 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33615
33616         * Makefile.am, mono-config.c, mono-config.h: configuration file
33617         support routines.
33618         * loader.c, loader.h: make Dll mapping configurable at runtime in the
33619         config file. Export methods to insert and lookup mappings.
33620
33621 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33622
33623         * reflection.c: handle types and boxed objects in custom attr
33624         constructors.
33625
33626 2002-05-30  Martin Baulig  <martin@gnome.org>
33627
33628         * debug-symfile.c
33629         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
33630
33631 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
33632
33633         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
33634         to lookup the implmap row for a P/Invoke method.
33635         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
33636         P/Invoke method from the runtime on an as needed basis.
33637
33638 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
33639
33640         * metadata.c (mono_metadata_parse_signature): impl.
33641
33642 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33643
33644         * class.c: handle .pack directive.
33645
33646 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33647
33648         * object.c: initialize static fields with RVA data.
33649
33650 2002-05-25  Martin Baulig  <martin@gnome.org>
33651
33652         * debug-symfile.c
33653         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
33654
33655 2002-05-24  Martin Baulig  <martin@gnome.org>
33656
33657         * debug-symfile.c
33658         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
33659         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
33660         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
33661
33662 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33663
33664         * object.c: special case string ctros in invoke.
33665         * gc.c: silly whitespace changes.
33666
33667 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
33668
33669         * threadpool.[ch]: impl. a threadpool that can
33670         be used by mint and mono.
33671
33672 2002-05-22  Martin Baulig  <martin@gnome.org>
33673
33674         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
33675         The first argument is now a `MonoReflectionModuleBuilder *', the return
33676         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
33677         `methods' field to get the method builder.  The `token' argument is the
33678         unfixed token.
33679
33680         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
33681         invalid characters instead of g_assert_not_reached()ing.  This seems
33682         to be the behaviour of mscorlib.
33683
33684 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
33685
33686         * object.c (mono_runtime_invoke_array): applied patch from Rachel
33687         Hestilow to fix bug #25104
33688
33689 2002-05-21  Martin Baulig  <martin@gnome.org>
33690
33691         * debug-symfile.c (mono_debug_find_source_location): New function.
33692         Looks up an IL offset in the line number table and returns the source
33693         location as a string.
33694
33695 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33696
33697         * icall.c:
33698         (mono_double_ToStringImpl): changed %f by %g until we have something
33699         better.
33700
33701 2002-05-21  Nick Drochak  <ndrochak@gol.com>
33702
33703         * icall.c : Use different name for Math.Pow's icall.  Needed to check
33704         parameters first in C#.
33705
33706 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33707
33708         * icall.c, reflection.h: added icall to get info about an event.
33709
33710 2002-05-20  Radek Doulik  <rodo@ximian.com>
33711
33712         * object.c (mono_value_box): don't use memcpy for boxing on BIG
33713         endian
33714         (mono_value_box): don't use memcpy for small sizes on
33715         architectures with unaligned access
33716
33717 2002-05-20  Martin Baulig  <martin@gnome.org>
33718
33719         * reflection.c (mono_reflection_setup_internal_class): Don't crash
33720         if `tb->parent == NULL'.
33721         (mono_reflection_create_internal_class): New function.  This is
33722         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
33723         for enum types.
33724
33725         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
33726         New interncall.
33727
33728 2002-05-19  Martin Baulig  <martin@gnome.org>
33729
33730         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
33731         argument to get the length, don't default to the array length.
33732
33733 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
33734
33735         * assembly.c (mono_assembly_setrootdir): New function used to
33736         override the MONO_ASSEMBLIES directory.
33737
33738 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33739
33740         * icall.c: ValueType_GetHashCode() initialize local var.
33741
33742 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33743
33744         * reflection.c: sort custom attributes table.
33745
33746 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33747
33748         * reflection.c: support named args in custom attributes (write support).
33749
33750 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33751
33752         * reflection.c: fix finally position calculation.
33753
33754 2002-05-15  Radek Doulik  <rodo@ximian.com>
33755
33756         * reflection.c: fixed endianess at many places
33757
33758         * icall.c (ves_icall_InitializeArray): comment out debug msg
33759
33760 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
33761
33762         * object.c (mono_unhandled_exception): new function to handle
33763         unhandled exceptions.
33764         (mono_unhandled_exception): call the UnhandledException event.
33765         (mono_runtime_delegate_invoke): impl.
33766
33767 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
33768
33769         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
33770         returns the RVA, not the direct pointer to the data. Handle the case
33771         when the class size is fixed.
33772
33773 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33774
33775         * reflection.c: fix some endianess issues.
33776
33777 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
33778
33779         * object.c (mono_runtime_invoke): is now able to catch exceptions.
33780
33781         * threads.c (mono_thread_init): added a callback which is invoked
33782         at thread start.
33783
33784 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33785         
33786         * icall.c: make GetHashCode return non-negative values.
33787
33788 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33789
33790         * object.c, icall.c, gc.c: revert to address-based hashcode.
33791
33792 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
33793
33794         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
33795
33796 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33797
33798         * icall.c, class.c: special case <Module>.
33799
33800 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
33801
33802         * icall.c: fix bug in GetNow().
33803
33804 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
33805
33806         * object.c (mono_runtime_class_init): make sure that we call all
33807         static class constructors.
33808
33809 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33810
33811         * reflection.c: sort methodsemantics table.
33812
33813 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33814
33815         * reflection.h, reflection.c: honour init locals setting.
33816
33817 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
33818
33819         * icall.c: copied Double ToStringImpl for Single ToStringImpl
33820
33821 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33822
33823         * reflection.c: support ContructorBuilders in attribute blob creation.
33824
33825 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33826
33827         * reflection.c: some changes to build a binary that can be run
33828         directly in windows.
33829
33830 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33831
33832         * loader.c: print a big message when an icall can't be found.
33833
33834 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33835
33836         * string-icalls.c: fix bug 24248.
33837
33838 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33839
33840         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33841         icall.c, reflection.h: separate assembly loading by pathname and by
33842         assembly name. Use the MONO_PATH env var to search for assemblies.
33843
33844 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33845
33846         * assembly.c, image.h: add some support for assemblies
33847         with multiple modules.
33848         * class.c, class.h: export mono_class_from_typeref().
33849         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33850         instead.
33851
33852 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33853
33854         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33855         documentation says (the ECMA one is correct).
33856
33857 2002-05-02  Dick Porter  <dick@ximian.com>
33858
33859         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33860         Don't name the synchronisation mutex.
33861
33862 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33863
33864         * rand.c
33865         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33866         Make the prototypes match.
33867         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33868         Same.
33869
33870         * icall.c
33871         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33872         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33873         all systems have tm.tm_zone, so use strftime() with %Z to print
33874         the timezone abreviation into a temp string.
33875
33876         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33877         rather than mono_array_addr() on a MonoString on Big Endian
33878         machines.
33879
33880 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33881
33882         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33883         fix bug 24041
33884
33885 2002-04-30  Dick Porter  <dick@ximian.com>
33886
33887         * socket-io.c: Cope with SOCKET being an integer rather than a
33888         pointer now.
33889
33890         * threads.c: Added Thread_free_internal, to deal with thread
33891         handle cleanup.  Moved calls to handle_store() and handle_remove()
33892         to start_wrapper(), so each can only be called once.  Allocate
33893         synchronisation blocks with GC_malloc(), and use GC finalisation
33894         to close the handles.
33895
33896         * icall.c: added System.Threading.Thread::Thread_free_internal
33897
33898 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33899
33900         * icall.c: support Environment.Exit, CommandLineArgs().
33901
33902 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33903
33904         * object.c, object.h: added mono_runtime_run_main () and
33905         mono_runtime_get_main_args () for use in System.Environment.
33906
33907 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33908
33909         * gc.c: fix thinko, enable actual finalization since the jit is now
33910         fixed.
33911
33912 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33913
33914         * gc.c, object.c: take into account that an object may be offset wrt the address
33915         returned by GC_malloc().
33916
33917 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33918
33919         * image.c: handle files without entries in the assembly table (modules).
33920
33921 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33922
33923         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33924         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33925         allowed to be null when it's System.Object class setup.
33926
33927 2002-04-27  Martin Baulig  <martin@gnome.org>
33928
33929         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33930         if `tb->parent == NULL' rather than crashing.
33931
33932 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33933
33934         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33935         calling acos() where asin() should have been called.
33936
33937 2002-04-26  Martin Baulig  <martin@gnome.org>
33938
33939         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33940         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33941         there's a subdirectory called `System', but we don't want to read that
33942         subdirectory as an assembly.
33943
33944 2002-04-25  Martin Baulig  <martin@gnome.org>
33945
33946         * debug-symfile.c: Reflect latest MonoString changes.
33947
33948 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33949
33950         * rand.c, rand.h: instance method icalls need to have an explicit
33951         this pointer as first argument in the C implementation.
33952
33953 2002-04-25  Nick Drochak <ndrochak@gol.com>
33954
33955         * icall.c: Fix typo in map for GetNonZeroBytes
33956
33957 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33958
33959         * string-icalls.c : String does now passes unit tests without any 
33960         errors, the following changes has been made:
33961         
33962         Implemented replace methods.
33963         Renaming of methods to (try) follow the standard.
33964         Fixed compare ordinal
33965         Made all memory allocated directly to function instead of via icall function.
33966         Small performance fix in is_in_array function
33967                         
33968  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33969
33970         c (mono_string_Internal_ctor_charp_int_int):
33971         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33972         sindex < 0, throw ArgumentOutOfRangeException instead of
33973         ArgumentNullException.
33974
33975         Added new check for length == 0, however
33976         I need to make it return String.Empty from the C code.
33977         
33978         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33979         that calculate the length for us here.
33980         
33981         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33982         mono_string_new_utf16 with mono_string_new, since value is utf8.
33983
33984 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33985
33986         * object.c: register the object for finalization if needed.
33987         Allocate one more char in the string for the terminating 0 char.
33988
33989 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33990
33991         * class.c, class.h, image.c: check if a type implemenst a destructor.
33992         Use the proper key for array class lookups.
33993         * icall.c: register the icalls in the System.GC class.
33994         * gc.c, gc.h: GC-related functions and icalls.
33995
33996 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33997
33998         * icall.c:
33999         * socket-io.c:
34000         * unicode.c: free some strings gotten from mono_string_to_utf8 and
34001         changed a couple of free () by g_free ().
34002
34003         * decimal.c: one-liner in the comments for decimal2string ().
34004
34005 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34006
34007         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
34008
34009 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34010
34011         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
34012         * object.c (mono_runtime_invoke_array) : handle null in params
34013
34014 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34015
34016         * string-icalls.c: fixed bug in split (one off bug)
34017
34018 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34019
34020         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
34021         * icalls.c: added String::Equals as internal method
34022
34023 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34024
34025         * threads.c: fixed bug in the double interlocked functions
34026
34027 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
34028
34029         * threads.c: implemented all of the new interlocked icalls.
34030         * string-icalls.c: fix a bug in insert.
34031         * icalls.c: added the icalls for interlocked, removed old string functions.
34032         
34033 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34034
34035         * loader.c: fix off-by-one error when reading argument names.
34036
34037 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34038
34039         * profiler.c: win32 counter implementation (untested).
34040         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
34041         (the latter needs testing and more complete impl. from win32 folks).
34042
34043 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
34044
34045         * object.c: mono_array_new_full workaround mono_array_class_get
34046         problem.
34047
34048 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34049
34050         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
34051         * object.h (mono_string_chars): Changed casting type.
34052
34053 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34054
34055         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
34056                            method signatures to use gunichar2 instead of gint16.
34057
34058 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
34059
34060         * object.h, object.c: domain-specific versions of mono_object_new and
34061         mono_array_new.
34062
34063 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
34064
34065         * object.c: changed String layout
34066
34067         * string-icalls.c (mono_string_Internal_ctor_chara): added
34068         internal string constructors.
34069
34070 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
34071
34072         * threads.c: pass 'this' to the thread start routine.
34073
34074 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34075
34076         * string-icalls.c: fix IndexOf and LastIndexOf. Now
34077         InternalCompareStr don't call twice mono_string_cmp_char for the last
34078         character. Improved performance in mono_string_cmp_char.
34079
34080 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34081
34082         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
34083         code into its own library: libmonoruntime.
34084
34085 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
34086
34087         * object.h, object.c: changed array format so that szarrays do not
34088         require a bounds structure.
34089         * icall.c, appdomain.c: support for new szarray format.
34090
34091 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34092
34093         * metadata.c: compare also the retuns type when comparing signatures:
34094         we didn't do this as an optimization since really overloaded methods
34095         must differ also in the arguments, but this doesn't work with
34096         low-level IL code (or when using explicit conversion operators: see
34097         bug#23498 for an example).
34098
34099 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34100
34101         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
34102
34103 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34104
34105         * icall.c: make MonoType::GetElementType its own icall.
34106
34107 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34108
34109         * icall.c: remove MonoMethod_get_Name().
34110         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
34111         object.
34112
34113 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34114
34115         * string-icalls.c: optimized a few methods.
34116
34117 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34118
34119         * icall.c: added all new string internal calls
34120         * string-icalls.c: added, new string internal call implementation.
34121         * object.c: added mono_string_new_size for allocating a string a size
34122
34123 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
34124
34125         * object.c (mono_object_isinst): use the same code as in the
34126         optimized x86 version.
34127
34128 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34129
34130         * profiler.c: TSC-based timer code (faster and more accurate).
34131         Not hooked up in configure, yet (set USE_X86TSC to 1).
34132
34133 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
34134
34135         * profiler.c, profiler.h: track time spent compiling methods.
34136         * threads.c: track thread creation/destruction.
34137
34138 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
34139
34140         * profiler.c, profiler.h, profiler-private.h: profiling interface
34141         and sample implementation. Moved here so that it can be used also by
34142         the jit.
34143
34144 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
34145
34146         * reflection.c, reflection.h: keep types and other handles separate in
34147         the hash tables for referred tokens. Add guid for modules.
34148
34149 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34150
34151         * assembly.c: fix bugs found with valgrind.
34152         * metadata.h, metadata.c: added mono_metadata_guid_heap().
34153
34154 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
34155
34156         * threads: added icall support for getting current domain for
34157                    the thread.
34158  
34159 2002-04-13  Martin Baulig  <martin@gnome.org>
34160
34161         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
34162         (MonoDebugVarInfo): Added `index' field for register based addresses.
34163         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
34164         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
34165         `MonoDebugVarInfo *params' and `guint32 this_offset' with
34166         `MonoDebugVarInfo *this_var'.
34167
34168         * debug-symfile.c (relocate_variable): New static function to write
34169         a location description for a local variable or method parameter.
34170
34171 2002-04-12  Martin Baulig  <martin@gnome.org>
34172
34173         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
34174         stack offset and begin/end scope address of a local variable.
34175         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
34176         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
34177         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
34178
34179         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
34180         Added new relocation types for start/end scope of a local variable.
34181
34182 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34183
34184         * object.h: add mono_object_domain() macro.
34185         * reflection.c: handle typespecs.
34186         * icall.c: MonoMethod::get_Name() implementation.
34187
34188 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34189
34190         * icall.c: String::GetHashCode() icall implementation.
34191
34192 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34193
34194         * icall.c: String::IndexOfAny icall.
34195         * object.c, object.h: make array->max_length more useful.
34196         Intrduced mono_object_class() and mono_string_length() macros.
34197
34198 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34199
34200         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
34201         instead of g_unichar_isdigit.
34202
34203 2002-04-11  Nick Drochak  <ndrochak@gol.com>
34204
34205         * icall.c: Implement a simple Double.ToString().
34206
34207 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34208
34209         * appdomain.h: only io-layer.h is supposed to be included.
34210         * icall.c: explicitly import environ. Fix warning.
34211
34212 2002-04-10  Nick Drochak  <ndrochak@gol.com>
34213
34214         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
34215                 return true even if it's not Daylight Savings time.
34216                 Only return false for the case where the function isn't
34217                 implemented for a plaform (read Windows).
34218
34219 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34220
34221         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
34222         data with a mutex.
34223
34224 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
34225
34226         * mempool.c (mono_mempool_alloc): only use g_malloc when
34227         absolutely necessary.
34228
34229 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
34230
34231         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
34232
34233         * class.c (mono_class_vtable): use domain mempool to allocate vtable
34234         (mono_class_proxy_vtable): use domain mempool
34235
34236 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34237
34238         * appdomain.h, appdomain.c: split initialization that requires the
34239         execution engine support into mono_runtime_init().
34240
34241 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
34242
34243         * class.c (mono_class_init): don't include vtable inside MonoClass
34244         to save some memory, gather some statistics.
34245         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
34246
34247 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34248
34249         * icall.c: internalcall implementation for ValueType.Equals().
34250
34251 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
34252
34253         * object.c (mono_message_init): moved 
34254         (mono_runtime_exec_main): new arch. independent impl.
34255         (mono_runtime_invoke_array): new method - like
34256         mono_runtime_invoke, but you can pass an array of objects.
34257         (mono_remoting_invoke): new arch. independent impl.
34258         (mono_message_invoke): new arch. independent impl.
34259         (mono_runtime_class_init): new arch. independent impl.
34260         (mono_runtime_object_init): new arch. independent impl.
34261
34262 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34263
34264         * metadata.c, object.c, reflection.c: documented the exported
34265         functions.
34266
34267 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34268
34269         * icall.c: simpler code to pass the assembly builder data to corlib.
34270         Implement GetNestedTypes() internalcall.
34271
34272 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34273
34274         * class.c: warn if a type can't be loaded.
34275
34276 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
34277
34278         * image.h: typedef MonoImageOpenStatus
34279         * types.h: removed unused file
34280         
34281 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
34282
34283         * icall.c: Enum_ToObject accepts enum value arguments.
34284
34285 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34286
34287         * class.c: move initialization of properties, events and nested
34288         classes, so that they happen for interfaces, too.
34289
34290 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34291
34292         * icall.c: cleanup some ugly casts in Array_SetValue*.
34293
34294 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34295
34296         * icall.c: the values array fro enums is of the correct type, now.
34297         Implement (correctly) getFullName instead of assQualifiedName for
34298         MonoType.
34299         * reflection.h, reflection.c: added mono_type_get_name ().
34300
34301 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34302
34303         * assembly.c, image.h: for each MonoImage, record from wich assembly
34304         it was loaded.
34305         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
34306         Make Type.Assembly work.
34307
34308 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
34309
34310         * debug-symfile.h: use char* instead of gpointer to avoid
34311         unnecessary casts.
34312
34313         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
34314
34315         * icall.c (ves_icall_InternalExecute): impl. FielSetter
34316         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
34317
34318 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
34319
34320         * icall.c (mono_message_init): impl. (code cleanup)
34321         (ves_icall_InternalExecute): impl. FieldGetter
34322
34323         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
34324         defined we call all (non-static)methods through the vtable. 
34325
34326 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
34327
34328         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
34329         finalizer even though the memory is still referenced (and the chunk of
34330         memory is not freed).
34331
34332 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34333
34334         * assembly.c: fix brokeness.
34335
34336 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
34337
34338         * class.c: kill some warnings. Check explicit interface method
34339         implementation also without considering the namespace.
34340         Load also literal strings in static class data.
34341
34342 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
34343
34344         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
34345         (default_assembly_name_resolver): Make the resolver take the
34346         "base" directory where the assembly was originally defined, so we
34347         can load DLLs that are in the same directory as the assembly that
34348         is being referenced.
34349
34350 2002-03-28  Dick Porter  <dick@ximian.com>
34351
34352         * file-io.h: 
34353         * file-io.c:
34354         * socket-io.c: 
34355         * unicode.h: 
34356         * unicode.c: Warning cleanups
34357
34358 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
34359
34360         * object.h, reflection.h: use the correct type instead of MonoObject.
34361
34362 2002-03-28  Martin Baulig  <martin@gnome.org>
34363
34364         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
34365         (mono_debug_update_symbol_file): Initialize classes if necessary.
34366
34367 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34368
34369         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
34370         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
34371
34372 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
34373
34374         * assembly.h: fix function prototype.
34375         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
34376         * mono-endian.h: use const cast.
34377
34378 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34379
34380         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
34381
34382 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34383
34384         * loader.c: don't assert when a typeref can't be loaded, give
34385         a chance to the runtime to trow an exception instead.
34386         * loader.h: fix warning.
34387
34388 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34389
34390         * class.c (mono_class_proxy_vtable): added proxy support
34391
34392 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
34393
34394         * icall.c: removed last of PAL calls, added System.Environment
34395         * file-io.h, file-io.c: MonoIO implementation
34396         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
34397
34398 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34399
34400         * appdomain.c: do not use the byte marker in ldstr table lookup.
34401         * debug-helpers.c: allow two ':' to separate class and method name.
34402         * object.c: allocate arrays bounds with the GC, too.
34403         * verify: add a few more checks.
34404
34405 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
34406
34407         * reflection.c: output also literal strings. Allocate parameter data
34408         with GC_malloc() (thanks, Martin, for catching this!).
34409
34410 2002-03-26  Martin Baulig  <martin@gnome.org>
34411
34412         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
34413         include the `this' offset in the `param_offsets'.
34414
34415 2002-03-25  Martin Baulig  <martin@gnome.org>
34416
34417         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
34418         mono_debug_get_class() function to get the classes. Added new
34419         relocation types for arrays and strings.
34420         (mono_debug_get_class): New static function to search in all
34421         referenced assemblies for a metadata token.
34422
34423         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
34424
34425 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34426
34427         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
34428         hold gc-allocated objects. Make the string heap a stream like the
34429         others. Removed duplicated code when writing stream info.
34430         Added asserts to catch possible buffer overflows. Set the sorted map
34431         for tables that need sorting. Added some documentation.
34432
34433 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
34434
34435         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
34436         for interned strings and vtables.
34437
34438 2002-03-24  Martin Baulig  <martin@gnome.org>
34439
34440         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
34441         it in the array since it was created with g_slist_prepend().
34442
34443 2002-03-24  Martin Baulig  <martin@gnome.org>
34444
34445         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
34446         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
34447         (mono_debug_method_from_token): Renamed to
34448         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
34449         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
34450
34451         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
34452         relocation types.
34453
34454         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
34455
34456 2002-03-24  Martin Baulig  <martin@gnome.org>
34457
34458         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
34459         (mono_debug_method_from_token): New func.
34460
34461         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
34462         New interncall, calls mono_debug_local_type_from_signature().
34463         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
34464         calls mono_debug_method_from_token().
34465
34466 2002-03-23  Martin Baulig  <martin@gnome.org>
34467
34468         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
34469         specifies the number of bytes to be converted, not the array size.
34470         Return the number of chars, not the number of bytes.
34471         (ves_icall_iconv_get_chars): The `byteCount' argument
34472         specifies the number of bytes to be converted, not the array size.
34473
34474 2002-03-23  Martin Baulig  <martin@gnome.org>
34475
34476         * reflection.h (MonoReflectionSigHelper): New type.
34477
34478         * reflection.c (mono_reflection_sighelper_get_signature_local),
34479         (mono_reflection_sighelper_get_signature_local): New functions.
34480
34481         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
34482         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
34483         interncalls.
34484
34485 2002-03-23  Martin Baulig  <martin@gnome.org>
34486
34487         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
34488         is_writeable is set.
34489         (mono_raw_buffer_update): New function to write the modified map
34490         back to disk.
34491
34492         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
34493
34494         * debug-symfile.c (mono_debug_update_symbol_file): Call
34495         mono_raw_buffer_update() when done writing.
34496
34497 2002-03-23  Martin Baulig  <martin@gnome.org>
34498
34499         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
34500
34501         * debug-symfile.c: Added support for arguments and local variables.
34502
34503 2002-03-23  Dick Porter  <dick@ximian.com>
34504
34505         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
34506         protected by ifdefs, hence breaking the w32 build.
34507
34508 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34509
34510         * object.c: implement is_interned() the right way.
34511
34512 2002-03-21  Martin Baulig  <martin@gnome.org>
34513
34514         * debug-symfile.[ch]: New files to handle debugging information
34515         files. There's also support to dynamically update these symbol
34516         files to include machine dependent information.
34517
34518 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
34519
34520         * threads.c (mono_thread_create): new function to create thread
34521         from C
34522
34523 2002-03-20  Martin Baulig  <martin@gnome.org>
34524
34525         * icall.c (ves_icall_InternalInvoke): Create a new object if the
34526         method is a constructor.
34527         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
34528         points to ves_icall_InternalInvoke().
34529
34530 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
34531
34532         * file-io.c: Flush shouldn't throw exceptions.
34533
34534 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
34535
34536         * file-io.c: FileStream flush support; FileSetLength now
34537         restores file pointer.
34538
34539 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34540
34541         * class.c: set image for pointer classes.
34542
34543 2002/03/19  Nick Drochak <ndrochak@gol.com>
34544
34545         * sysmath.c: Forgot one.
34546
34547 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
34548
34549         * sysmath.c: Avoid redefining existing names.
34550
34551 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
34552
34553         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
34554         handled by runtime as icall rather than dllimport from libm.so
34555         * file-io.c, file-io.h: fixed handle argument type.
34556
34557 2002-03-18  Dick Porter  <dick@ximian.com>
34558
34559         * reflection.c (mono_image_get_type_info): rename interface to
34560         iface, because of "#define interface struct" on windows.
34561
34562 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
34563
34564         * class.c, class.h: rename and export mono_ptr_class_get().
34565         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
34566         * reflection.c, reflection.h, icall.c: better/saner type name
34567         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
34568         method signatures.
34569
34570 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
34571
34572         * class.c (mono_class_init): removed hardcoded GHC_SLOT
34573
34574         * icall.c (ves_icall_InternalInvoke): impl.
34575
34576 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34577
34578         * reflection.c: output the interface map table, too.
34579
34580 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34581
34582         * class.c (class_compute_field_layout): separate computation of 
34583         static field layout
34584
34585 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
34586
34587         * icall.c: added System.Buffer support.
34588         * file-io.c: moved file icalls from PAL to FileStream.
34589
34590 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34591
34592         * icall.c (ves_icall_System_Object_GetHashCode): impl.
34593
34594 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
34595
34596         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
34597
34598 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34599
34600         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
34601
34602 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34603
34604         * debug-helpers.{c,h}: moved here from monograph some useful functions
34605         to locate a method by name/signature in a class or image. Included
34606         also a small and flexible IL disassembler.
34607
34608 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34609
34610         * reflection.c: fixup tokens in methods with small header size, too.
34611
34612 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
34613
34614         * object.c (mono_string_to_utf8): remove assert(!error), instead
34615         print a warning. 
34616
34617 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
34618
34619         * icall.c: update to the new mono_Array_class_get interface.
34620
34621 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34622
34623         * appdomain.c, object.c: Boehm-GC enable.
34624         * icall.c: make get_data_chunk() support split data requests.
34625         Ensure a class is initialized in more cases. Return only the first
34626         property found in GetProperties() or the compiler gets confused. 
34627         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
34628         * reflection.h, reflection.c: add fixup mechanism for field and method
34629         tokens. Initialize assembly->typeref in a single place. Output
34630         properties after events. Support custom attributes for events, too.
34631         Typo fix for paramter custom attrs.
34632
34633 2002-03-07  Martin Baulig  <martin@gnome.org>
34634
34635         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
34636
34637 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
34638
34639         * class.c (mono_array_class_get): fix. for multi. dim. arrays
34640
34641 2002-03-06  Martin Baulig  <martin@gnome.org>
34642
34643         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
34644         non-zero lower bounds. See testcases #F10-#F13.
34645
34646 2002-03-05  Martin Baulig  <martin@gnome.org>
34647
34648         * exception.c (mono_get_exception_argument_out_of_range): New exception.
34649
34650         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
34651         ves_icall_System_Array_GetValue(), only calculate the absolute array position
34652         here.
34653         (ves_icall_System_Array_SetValue): Likewise.
34654         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
34655         as argument and does the actual work. This function is used when copying a
34656         multi-dimensional array.
34657         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
34658         now do all the widening conversions of value types.
34659         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
34660
34661 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34662
34663         * class.c: remove some magic numbers and use the smbolic names,
34664         instead. Added init_events() to load event info at class init time.
34665         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
34666         and mono_metadata_methods_from_event().
34667         * reflection.h, reflection.c: added support for writing out the evnets
34668         related information.
34669
34670 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34671
34672         * reflection.h, icall.c: use a different method (GetInterfaces)
34673         to gather interface info and add isbyref, isprimitive and
34674         ispointer to the ves_icall_get_type_info() return value.
34675
34676 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34677
34678         * class.h: stared adding support for events.
34679         * icall.c: split find_members implementation. Added debug icall to get
34680         the address of an object.
34681         * reflection.c: handle TypeBuilders in mono_type_get_object().
34682
34683 2002-03-01  Martin Baulig  <martin@gnome.org>
34684
34685         * icall.c (ves_icall_System_Array_GetLength): This must throw an
34686         ArgumentOutOfRangeException(), not an ArgumentException().
34687         (ves_icall_System_Array_GetLowerBound): Likewise.
34688         (ves_icall_System_Array_GetValue): Improved argument checking.
34689         (ves_icall_System_Array_SetValue): Improved argument checking.
34690
34691 2002-03-01  Martin Baulig  <martin@gnome.org>
34692
34693         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
34694         called with invalid arguments rather than just dying with g_assert().
34695         (ves_icall_System_Array_SetValue): Likewise.
34696         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
34697         raise a NotImplementedException instead.
34698         (ves_icall_System_Array_GetLength): Added argument checking.
34699         (ves_icall_System_Array_GetLowerBound): Added argument checking.
34700
34701 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
34702
34703         * object.h (mono_assert): new macros mono_assert and
34704         mono_assert_not_reached
34705
34706 2002-02-28  Martin Baulig  <martin@gnome.org>
34707
34708         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
34709         and "System::String::IsInterned" to "System::String::_IsInterned".
34710
34711 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
34712
34713         * icall.c: remove hacks for typebuilder. Added icall to create a
34714         modified type from a tybebuilder.
34715         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
34716         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
34717         to create a backing MonoClass for a TypeBuilder.
34718
34719 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34720
34721         * class.c, class.h: more refactoring of class init.
34722         Export mono_class_setup_mono_type() and mono_class_setup_parent().
34723
34724 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
34725
34726         * marshal.c, marshal.h: start of marshaling interface.
34727
34728 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34729
34730         * icall.c: fix order in assembly qualified name icall.
34731
34732 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34733
34734         * class.c: do not free str, since we store it in the hash table.
34735         * reflection.h: add label field to MonoILExceptionInfo.
34736         * reflection.c: handle references to more than one assembly. Handle
34737         case when there isn't a module created in the assembly.
34738
34739 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34740
34741         * class.c: Fix typo. Start refactoring of class init code.
34742
34743 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34744
34745         * appdomain.c: exit with 1 on error.
34746         * class.c: we already have the name in MonoClassField.
34747         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
34748         MonoStreamHeader instead of an offset of image->raw_metadata.
34749
34750 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
34751
34752         * appdomain.c (mono_init): Be even more descriptive about the error.
34753
34754 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
34755
34756         * appdomain.c: give the user an informative message when corlib can't
34757         be loaded.
34758
34759 2002-02-26  Martin Baulig  <martin@gnome.org>
34760
34761         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
34762         New icall to get the time zone data.
34763
34764 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34765
34766         * reflection.c: set virtual and raw size of section correctly.
34767         * threads.c: transfer domain information to newly created threads.
34768
34769 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34770
34771         * class.c: when instancing a class in a domain, load the default
34772         vaules for static fields from the constant table. Fix System.Enum to
34773         not be an enum.
34774         * icall.c: implement Object::GetType() internalcall. Implemented
34775         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
34776         Fixed checking of binding flags in find_members().
34777         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
34778         * reflection.c: handle enumerations when writing to the constant
34779         table. Use a different object cache for types.
34780
34781
34782 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
34783
34784         * object.c (mono_object_isinst): fix for arrays
34785
34786         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
34787
34788 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34789
34790         * object.c: don't use mprotect ()  and fix intern pool hash table
34791         lookup for big endian systems.
34792
34793 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34794
34795         * icall.c: change type_is_subtype_of () signature.
34796
34797 2002-02-21  Mark Crichton  <crichton@gimp.org>
34798
34799         * rand.c, rand.h: Added random number generator for
34800         System.Security.Cryptography classes.
34801
34802         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
34803
34804         * icall.c: Added System.Security.Cryptography calls.
34805
34806 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34807
34808         * class.c, icall.c, metadata.c: better support for pointer types.
34809         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
34810         * reflection.c: Add support for getting custom attrs for properties
34811         and simplify some code.
34812
34813 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34814
34815         * icall.c: change getToken () and add custom attribute GetBlob()helper
34816         method.
34817         * reflection.h: add custom attrs array to the reflection builder structures.
34818         * reflection.c: encode and emit custom attributes for all the relevant
34819         reflection objects. Cache fieldref and methodref tokens. Change
34820         mono_image_create_token() interface to take a MonoDynamicAssembly.
34821         More complete custom attributes decoder. Load custom attributes for
34822         Assembly, Field, Method and Constructor objects, too. Make the
34823         returned array an Attribute[] one, not object[]. Added
34824         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
34825         custom attribute constructor.
34826
34827 2002-02-20  Dick Porter  <dick@ximian.com>
34828
34829         * icall.c:
34830         * rawbuffer.c:
34831         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
34832         problem code out for now).
34833
34834 2002-02-19  Radek Doulik  <rodo@ximian.com>
34835
34836         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34837
34838 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34839
34840         * icall.c: register the GetCustomAttributes method.
34841         * object.c, object.h: add mono_string_new_len ().
34842         * reflection.h, reflection.c: added mono_runtime_invoke(),
34843         mono_install_runtime_invoke(). Added
34844         mono_reflection_get_custom_attrs () to load custom attributes and
34845         create the attribute objects.
34846
34847 2002-02-19  Dick Porter  <dick@ximian.com>
34848         * threads-dummy-types.c:
34849         * threads-dummy-types.h:
34850         * threads-dummy.c:
34851         * threads-dummy.h:
34852         * threads-pthread-types.c:
34853         * threads-pthread-types.h:
34854         * threads-pthread.c:
34855         * threads-pthread.h:  Deleted obsolete files
34856
34857 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34858
34859         * class.c (mono_class_vtable): runtime init the class when we
34860         allocate static class data.
34861
34862         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34863
34864         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34865         and String - but we will need generic marshalling support in the
34866         future. 
34867         (mono_init): set the domain name in a ms compatible way
34868
34869         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34870         String[].
34871
34872 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34873
34874         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34875         for sizes
34876
34877         * appdomain.c (mono_domain_unload): impl.
34878
34879 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34880
34881         * appdomain.c, object.c: fix intern pool implementation.
34882         * class.c: fix alignment code.
34883
34884 2002-02-16  Radek Doulik  <rodo@ximian.com>
34885
34886         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34887         and s2 > s1, just copy lower bytes to be compatible with little
34888         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34889         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34890
34891         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34892         force big_endian to be 1 for big endian machines 
34893         (ves_icall_iconv_new_decoder): ditto
34894
34895 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34896
34897         * socket-io.c (convert_sockopt_level_and_name): If the system
34898         doesn't define SOL_IP or SOL_TCP, get them by hand using
34899         getprotobyname() and caching the values (because this could be a
34900         slow operation).
34901         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34902         Use the appropriate struct when the system does support it. Ie,
34903         not all systems have struct ip_mreqn so use struct ip_mreq when
34904         appropriate.
34905
34906 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34907
34908         * reflection.c: handle finally clauses.
34909
34910 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34911
34912         * socket-io.c: use g_snprintf() instead of snprintf.
34913
34914 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34915
34916         * reflection.c (mono_param_get_objects): Cast second argument to
34917         mono_method_get_param_names to a const char** to silence the
34918         compiler warning.
34919
34920         * appdomain.c (mono_domain_assembly_open): Put parens around the
34921         truth statement in the for-loop.
34922
34923         * unicode.c (iconv_convert): Got rid of a compiler warning about
34924         int i being unused when the system has a new iconv.
34925         (iconv_get_length): Same.
34926
34927         * image.c (load_class_names): Cast the second argument to
34928         g_hash_table_insert() to char* to hush compiler warnings about the
34929         arg being a const.
34930         (mono_image_open): Same here.
34931
34932         * socket-io.c: Don't conditionally include sys/filio.h or
34933         sys/sockio.h here anymore since we now get them from
34934         io-layer/io-layer.h
34935         (inet_pton): If the system doesn't support inet_aton, implement
34936         using inet_addr and also #define INADDR_NONE if it isn't defined
34937         by the system.
34938
34939 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34940
34941         * metadata.c, metadata.h: added function to get packing and size info
34942         of a typedef.
34943         * reflection.h, reflection.c: handle field RVA data. Save info about
34944         the table layout if needed. Assign typedef indexes to all the types
34945         before dumping the info about them to avoid forward reference problems.
34946
34947 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34948
34949         * socket-io.c (convert_sockopt_level_and_name): ifdef
34950         SO_ACCEPTCONN because it is not defined on my system (old debian)
34951
34952 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34953
34954         * opcode.c: use stddef.h to get NULL.
34955
34956 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34957
34958         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34959         for FIONBIO, FIONREAD and SIOCATMARK.
34960         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34961         define INADDR_NONE and besides, inet_addr() is deprecated and
34962         should not be used. Use inet_pton() instead - it also has the
34963         added bonus that it can easily handle IPv6 addresses as well.
34964         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34965
34966 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34967
34968         * decimal.c: remove _MSC_VER conditional.
34969
34970 2002-02-13  Dick Porter  <dick@ximian.com>
34971
34972         * socket-io.c: 
34973         * icall.c: Internal calls for Blocking, Select, Shutdown,
34974         GetSocketOption and SetSocketOption
34975
34976 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34977
34978         * assembly.cs: better resolver: use it instead of some kludgy
34979         code.
34980
34981 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34982
34983         * reflection.c: the best way to speed-up the compiler is to avoid
34984         infinite loops.
34985
34986 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34987
34988         * class.c (mono_class_vtable): changed the object layout
34989         (obj->vtable->class). 
34990         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34991
34992 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34993
34994         * assembly.c: look for assemblies in the assembly dir, too.
34995
34996 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34997
34998         * class.c: fix thinko in mono_class_from_type().
34999
35000 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35001
35002         * exception.h, exception.c: added TypeLoadException.
35003         * object.h, object.c: added mono_array_clone ().
35004         * icall.c: handle throwOnError in AssemblyGetType().
35005         Added Array.Clone().
35006         * opcode.h, opcode.c: use a single value for the opcode val.
35007         Compile fix for non-gcc compilers.
35008
35009 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
35010
35011         * opcodes.c, opcodes.h: export interesting info about opcodes.
35012
35013 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
35014
35015         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
35016         icalls. 
35017
35018         * class.c (class_compute_field_layout): set element_class for enums
35019         (mono_class_create_from_typedef): set element_class for normal classes
35020
35021         * icall.c (ves_icall_System_Enum_get_value): impl.
35022
35023         * class.c (mono_class_create_from_typedef): do not set valuetype
35024         flag for System.ValueType and System.Enum
35025
35026 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
35027
35028         * unicode.c (iconv_convert): fix big endian problem.
35029
35030 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35031
35032         * class.c: add asserts if we are ever going to scribble over memory.
35033         * socket-io.c: not all systems have AF_IRDA defined.
35034
35035 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
35036
35037         * class.c (class_compute_field_layout): do not consider static
35038         fields to compute alignment
35039
35040 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
35041
35042         * appdomain.c (mono_appdomain_get): impl.
35043         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
35044
35045 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35046
35047         * icall.c: ignore "file://" prefix when loading an assembly.
35048
35049 2002-01-23  Dick Porter  <dick@ximian.com>
35050
35051         * socket-io.c:
35052         * icall.c:
35053         * Makefile.am: Added socket support
35054
35055 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35056
35057         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
35058         code back.  This should return the assemblies that are loaded by
35059         the runtime on behalf of an application domain. 
35060
35061         The current implementation is still broken, it just returns every
35062         assembly loaded, but until we get real applications domain this
35063         will do.
35064
35065 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
35066
35067         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
35068         AppDomain object.
35069
35070 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35071
35072         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
35073         the mono_class_from_name lookup.
35074         (ves_icall_get_parameter_info): ditto.
35075         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
35076         method.
35077         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
35078
35079 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
35080
35081         * class.c: load also nested classes on class init.
35082         System.ValueType instance methods gets passed boxed
35083         values, unless methods in derived classed that get a pointer to the
35084         data.
35085         * icall.c: use better name parsing code in GetType().
35086         * image.c, image.h: add mono_image_loaded ().
35087         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
35088         * reflection.c, reflection.h: added mono_reflection_parse_type().
35089
35090 2002-01-22  Veronica De Santis <veron78@interfree.it>
35091
35092         * icall.c : Added mapping of internal calls for Manual and Auto reset events
35093         * threads.c : Added the implementation of internal calls for events
35094         * threads.h : Added prototypes of internal calls for events
35095         
35096 2002-01-21  Radek Doulik  <rodo@ximian.com>
35097
35098         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
35099
35100 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
35101
35102         * class.c (mono_class_init): set min_align to 1 (instead of 0)
35103         (mono_class_value_size): use min_align
35104
35105 2002-01-20  Dick Porter  <dick@ximian.com>
35106
35107         * threads.h:
35108         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
35109         so it compiles on w32.
35110
35111 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
35112
35113         * metadata.c (mono_type_stack_size): impl.
35114
35115         * class.c (mono_class_get_field): impl. memberref token
35116
35117 2002-01-16 Veronica De Santis <veron78@@interfree.it>
35118
35119         * icall.h : Added the internal calls mapping for CreateMutex_internal
35120                     and ReleaseMutex_internal.
35121         * threads.h : Added the prototype of mutexes internal calls.
35122         * threads.c : Added the implementations of mutexes internal calls.
35123
35124 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35125
35126         * metaparse.h: removed unused file.
35127         * reflection.c, reflection.h: added stream_data_align () function 
35128         to align data in streams and keep stream aligned. Add support for
35129         exception support in method headers.
35130
35131 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
35132
35133         * unicode.c: make iconv_convert () return the number of bytess written
35134         in the output buffer.
35135
35136 2002-01-15  Dick Porter  <dick@ximian.com>
35137         * threads.c: Make the runtime's idea of infinite timeouts coincide
35138         with the class library's
35139
35140         Fix a particularly egregious bug in mono_thread_cleanup(). That
35141         code was so utterly bogus it must have been written on a Monday.
35142
35143 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35144
35145         * reflection.h: add subtypes field to TypeBuilder.
35146         * reflection.c: encode constants for literal fields.
35147         Handle subtypes. Fix user string token (and add a zero byte)
35148         at the end.
35149         
35150 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
35151
35152         * class.c (mono_class_init): bug fix: assign slot numbers for
35153         abstract methods.
35154
35155 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35156
35157         * reflection.c: don't try to output a code RVA for abstract methods.
35158         Small fixes for method header format. Output parameter info to the
35159         ParamDef table. Save method overriding info to MethodImpl table.
35160         Fix property support. Allow typedef.extends to be a type in the
35161         building assembly.
35162         * verify.c: fix off-by-one error.
35163
35164 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
35165
35166         * class.c: fix mono_class_from_mono_type () for szarray types.
35167         Remove unused cache check in mono_class_from_type_spec().
35168         * icall.c: *type_from_name () functions handle simple arrays and byref.
35169         * reflection.c: handle byref and szarray types. Handle methods without
35170         body (gets P/Invoke compilation working). Handle types and fields in
35171         get_token ().
35172         * reflection.h: add rank to MonoTypeInfo.
35173
35174 2002-01-10  Dick Porter  <dick@ximian.com>
35175
35176         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
35177         internal calls
35178
35179 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35180
35181         * icall.c: initialize class in type_from_handle ().
35182         Loop also in parent classes for get_method ().
35183         * reflection.c: properly encode class and valuetype types.
35184         Start on encoding TypeBuilder types. Handle fieldrefs.
35185         Use correct length when registering a user string.
35186         Handle ConstructorBuilder and MonoMethod in get_token ().
35187         Make mono_type_get_object () aware of cached types.
35188         * object.c: back out change to mono_string_new ().
35189
35190 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
35191         * object.c: mono_string_new should return a NULL when the string 
35192         passed in is NULL -- not try to deference it.
35193         
35194 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35195
35196         * icall.c: hack to make IsSubType work for TypeBuilders.
35197         * reflection.c: emit constructors before methods.
35198         Retrieve param names in mono_param_get_objects().
35199
35200 2002/01/05  Nick Drochak  <ndrochak@gol.com>
35201
35202         * Makefile.am: fix list of headers and sources so automake 1.5
35203         doesn't complain. Removed \# at end of list.
35204
35205 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35206
35207         * reflection.c: get token for a method ref. Set return type of
35208         constructor to void.
35209         * loader.c: debug message.
35210         * class.c: typo fix.
35211
35212 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
35213
35214         * icall.c: fix array init with rank > 1. FindMembers
35215         loops in parent class as well.
35216         * image.c: do not insert nested types in name cache.
35217         * reflection.c: warning fix.
35218         * reflection.h: add override method (for interface impl).
35219
35220 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
35221
35222         * metadata.c: fix customattr decoding.
35223
35224 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
35225
35226         * rawbuffer.cs: Added native Win32 implementation, avoids using
35227         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
35228
35229 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
35230
35231         * class.c: make the low-level routines handle the cache.
35232
35233 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
35234
35235         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
35236
35237 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
35238
35239         * class.c: fix mono_array_element_size() for objects.
35240         * class.h, class.c: add properties to MonoClass and load them
35241         at init time.
35242         * icall.c: check with isinst() when assigning a value to an array
35243         instead of requiring the classes to match exactly.
35244         Implemented icall for System.Type::GetType().
35245         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
35246         enums. Handle bindingflags when looking for methods and fields.
35247         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
35248         and mono_metadata_methods_from_property().
35249         * reflection.h, reflection.c: added structures for propreties,
35250         parameters and enums. Implemented mono_property_get_object() and
35251         mono_param_get_objects().
35252
35253 2001-12-18  Dick Porter  <dick@ximian.com>
35254
35255         * file-io.c: Use mono_string_to_utf16() instead of
35256         mono_string_chars()
35257
35258         * object.c: Added mono_string_to_utf16(), which copies the non
35259         NULL-terminated MonoString into a new double-null-terminated
35260         buffer.
35261
35262 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
35263
35264         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
35265
35266 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
35267
35268         * file-io.c: raise exceptions if handle is invalid.
35269
35270 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
35271
35272         * assembly.c: yet another check for mscorlib.
35273         * class.c, class.h: load nesting info for classes.
35274         * icall.c: many new functions to support the Reflection classes.
35275         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
35276         * reflection.h, reflection.c: mono_image_create_token(),
35277         mono_assembly_get_object(), mono_type_get_object(),
35278         mono_method_get_object(), mono_field_get_object(): methods to return
35279         objects that parallel the C representation of assemblies, types,
35280         methods, fields.
35281
35282 2001-12-11  Dick Porter  <dick@ximian.com>
35283
35284         * icall.c:
35285         * file-io.c: Internal calls for file IO.
35286
35287 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
35288
35289         * tabledefs.h: missing FileAttributes.
35290         * verify.h, verify.c: use is_valid_string () to simplify and check for
35291         valid strings more correctly. Fix warnings and speeling.
35292         Check more tables: Filed, File, ModuleRef, StandAloneSig.
35293         Check code: branches, maxstack, method calls.
35294
35295 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
35296
35297         * object.c (mono_object_allocate): removed static, so that the jit
35298         can allocate value types.
35299
35300         * icall.c (ves_icall_System_DateTime_GetNow): impl.
35301
35302 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35303
35304         * class.c: init enum types right away and register the
35305         token->MonoClass map in mono_class_create_from_typedef ().
35306         * verify.h, verify.c: first cut of the verifier.
35307         * pedump.c: add --verify switch to verify metadata tables.
35308         * tabledefs.h: add some missing enums.
35309
35310 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
35311
35312         * class.c (mono_install_runtime_class_init): impl.
35313         (mono_class_init): renamed mono_class_metadata_init to
35314         mono_class_init, also removed the metadata_inited flag
35315
35316         * object.c (mono_object_isinst): use faster algorithm
35317
35318 2001-11-30  Radek Doulik  <rodo@ximian.com>
35319
35320         * mono-endian.h: reverted last change
35321         added function prototypes
35322
35323         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
35324         add mono-endian.c back
35325
35326         * mono-endian.c: returned back, as Paolo pointed out, it's needed
35327         for unaligned access, I've mistaked it with endianess. I am
35328         sorry.
35329         (mono_read16): fix reverted endianess
35330         (mono_read64): ditto
35331         (mono_read32): ditto
35332
35333 2001-11-30  Dick Porter  <dick@ximian.com>
35334
35335         * exception.c: Implement mono_exception_from_name()
35336
35337 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35338
35339         * metadata.h, metadata.c: remove params_size and locals_size and their
35340         calculation from the metadata code: they are only usefult to the
35341         interp.
35342
35343 2001-11-29  Radek Doulik  <rodo@ximian.com>
35344
35345         * object.c (mono_ldstr): swap bytes here, it's probably not the
35346         best place, but works for me now, I'll redo it once I know mono
35347         better, also note that I add PROT_WRITE and don't reset back, also
35348         note that it's only affects big endians, so x86 should be OK
35349
35350         * mono-endian.h (read16): use just glib macros for both endians
35351
35352         * mono-endian.c: removed as glib macros are used in in
35353         mono-endian.h so we don't need to care about endianess for read
35354         macros as glib does that for us already
35355
35356 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
35357
35358         * class.h, class.h: take minimum alignment into consideration so
35359         that the fields of a class remain aligned also when in an array.
35360
35361 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35362
35363         * loader.h, loader.c: add mono_method_get_param_names().
35364         * class.c: 0-init class fields.
35365
35366 2001-11-26  Dick Porter  <dick@ximian.com>
35367
35368         * icall.c:
35369         * threads-types.h:
35370         * threads.c: New file that handles System.Threading on all platforms
35371
35372         * object.c: 
35373         * object.h: Remove the synchronisation struct from MonoObject,
35374         replace it with a pointer that gets initialised on demand
35375
35376         * Makefile.am: Replace all the system-specific threading code with
35377         a single file that uses the new wrapper library
35378
35379 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
35380
35381         * class.c, class.h: add mono_install_trampoline() so that the runtime
35382         can register a function to create a trampoline: removes the ugly
35383         requirement that a runtime needed to export arch_create_jit_trampoline.
35384         * object.h, object.c: added mono_install_handler() so that the runtime
35385         can install an handler for exceptions generated in C code (with
35386         mono_raise_exception()). Added C struct for System.Delegate.
35387         * pedump.c: removed arch_create_jit_trampoline.
35388         * reflection.c: some cleanups to allow registering user strings and
35389         later getting a token for methodrefs and fieldrefs before the assembly
35390         is built.
35391         * row-indexes.h: updates and fixes from the new ECMA specs.
35392
35393 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
35394
35395         * class.h, class.c: add enum_basetype field to MonoClass.
35396         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
35397         to get index in the constant table reated to a field, param or
35398         property.
35399         * reflection.h, reflection.c: handle constructors. Set public-key and
35400         version number of the built assembly to 0.
35401         * row-indexes.h: update from new ECMA spec.
35402
35403 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35404
35405         * class.h, class.c: add a max_interface_id to MonoClass.
35406         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
35407         since it's used to do that. Added mono_type_type_from_obj().
35408         Make GetType() return NULL instead of segfaulting if the type was not
35409         found. Handle simple arrays in assQualifiedName.
35410         * object.h: add a struct to represent an Exception.
35411         * reflection.c: output call convention in method signature.
35412         Add code to support P/Invoke methods and fixed offsets for fields.
35413
35414 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
35415
35416         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
35417         the value.
35418         * icall.c: use mono_array_addr instead of array->vector: fixes the
35419         reflection image writing.
35420         * reflection.c: init call convention byte to 0 in method signature.
35421         Encode the property signature. Don't output property-related methods
35422         twice. Really process the properties for a type (don't cast a field to
35423         a property, my mom always told me that).
35424         Fix 64 bit issues in pointer alignment in a different and more
35425         readable way.
35426
35427 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
35428
35429         * loader.h: Removed type class from MonoDefaults, added monotype
35430
35431         * loader.c: Loaded MonoType, removed loading of Type
35432
35433         * icall.c (my_mono_new_object): Now returns a System.MonoType,
35434         and fills in System.Type._impl with a RuntimeTypeHandle rather
35435         than the actual MonoClass *
35436
35437         (ves_icall_type_from_handle): change from type_class to
35438         monotype_class
35439
35440         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
35441         implemented
35442
35443         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
35444         implemented
35445
35446         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
35447
35448         (ves_icall_System_Reflection_Assembly_GetType): implemented
35449
35450         (ves_icall_System_MonoType_assQualifiedName): implemented
35451
35452         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
35453
35454 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
35455
35456         * assembly.c (mono_assembly_open): Implement a cache for the
35457         assemblies. 
35458
35459         (mono_assembly_close): only destroy the assembly when the last
35460         reference is gone.
35461         
35462 2001-11-09  Dick Porter  <dick@ximian.com>
35463
35464         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
35465
35466 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
35467
35468         * class.c (mono_class_metadata_init): bug fix: compute the right slot
35469
35470 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35471
35472         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
35473         from Martin Weindel.
35474         * object.h: add mono_string_chars ().
35475
35476 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
35477
35478         * reflection.c (build_compressed_metadata): Eliminates warnings
35479         and uses 64-bit clean code.
35480
35481         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
35482         (mono_type_equal): Change signature to eliminate warnings.
35483
35484 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35485
35486         * icall.c, loader.c: remove the internalcall array constructors.
35487         Changes to match the new MonoArray structure.
35488         * object.h, object.c: an array object doesn't allocate an extra
35489         vector. Add mono_array_new_full () to create jagged arrays easily.
35490
35491 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35492
35493         * metadata.h, metadata.c: add mono_metadata_field_info () to
35494         retreive all the info about a field from vairous tables.
35495         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
35496         * class.h, class.c: augment MonoClassField with more info.
35497         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
35498         policy and load a field's RVA if needed.
35499
35500 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
35501
35502         * class.c (mono_class_metadata_init): create a trampoline for all
35503         virtual functions instead of actually compiling them.
35504
35505 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
35506
35507         * class.h, class.c: include name in MonoClassField.
35508         * class.c: fix fundamental type of System.Object and System.String.
35509         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
35510         tokens in ldtoken.
35511         * icall.c: remove internalcalls for the Reflection stuff that is now
35512         done in C# code.
35513         * loader.c: mono_field_from_memberref () implementation.
35514         * mono-endian.c: thinko (s/struct/union/g).
35515         * object.c, object.h: make the mono_string_* prototypes actually use
35516         MonoString instead of MonoObject.
35517         * reflection.c, reflection.h: updates for changes in the reflection
35518         code in corlib: we use C structures that map to the actual C# classes.
35519         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
35520         fat method header if needed and use the info from the ILGenerator for
35521         methods. Handle fields in types. Misc fixes.
35522
35523 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
35524
35525         * class.c (mono_class_metadata_init): bug fix: always allocate
35526         space for static class data
35527
35528 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
35529
35530         * class.c (mono_compute_relative_numbering): use relative
35531         numbering to support fast runtime type checks.
35532
35533 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
35534
35535         * class.c (mono_class_create_from_typeref): added debugging output
35536         to print class name when MonoDummy is returned instead of real class
35537
35538 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
35539
35540         * class.c (mono_class_metadata_init): interface offset table now
35541         contains pointers into the vtable - this is more efficient for the jit
35542
35543 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
35544
35545         * class.c (mono_class_metadata_init): use a temporary vtable (the
35546         old algorithm only worked for the interpreter, but not for the jit)
35547
35548 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
35549
35550         * loader.c (method_from_memberref): use mono_class_get to get the
35551         class of an array instead of using System.Array directly.
35552         (mono_get_method): also add MEMBERREF methods to the method cache
35553         which usefull for arrays.
35554
35555 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
35556
35557         * pedump.c (arch_compile_method): added to compute vtable entry
35558
35559         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
35560         number of interfaces.
35561         
35562         * class.h: merged MonoArrayClass into MonoClass
35563
35564         * class.c (mono_class_create_from_typedef): compute the vtable size and
35565         allocate space to include the vtable inside MonoClass
35566         (mono_class_metadata_init): initialize the vtable
35567
35568 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
35569
35570         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
35571         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
35572         * image.c: endian fixes by Laurent Rioux.
35573         * object.h, object.c: rename MonoStringObject to MonoString and
35574         MonoArrayObject to MonoArray. Change some function names to conform to
35575         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
35576         guint16* as first argument, so don't use char*.
35577         Provide macros to do the interesting things on arrays in a portable way.
35578         * threads-pthread.c: updates for the API changes and #include <sched.h>
35579         (required for sched_yield()).
35580         * icall.c: updates for the API changes above.
35581         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
35582         platforms that need them.
35583
35584 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35585
35586         * class.c: set the correct type for all the fundamental
35587         type when loading the class.
35588
35589 2001-10-05  Dick Porter  <dick@ximian.com>
35590
35591         * threads-pthread.c (pthread_mutex_timedlock): Simple
35592         compatibility version for C libraries that lack this call.
35593
35594 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35595
35596         * class.c: MonoTypes stored in MonoClass are stored as
35597         fundamental MonoTypes when the class represents a
35598         fundamental type (System.Int32, ...).
35599         The TypeHandle return by ldtoken is a MonoType*.
35600         * icall.c: ves_icall_get_data_chunk () write out all the
35601         PE/COFF stuff. Implement ves_icall_define_method (),
35602         ves_icall_set_method_body (), ves_icall_type_from_handle ().
35603         * image.c: properly skip unknown streams.
35604         * loader.h, loader.c: add type_class to mono_defaults.
35605         * metadata.c, metadata.h: export compute_size () as
35606         mono_metadata_compute_size () with a better interface.
35607         Typo and C&P fixes.
35608         * pedump.c: don't try to print the entry point RVA if there is no entry point.
35609         * reflection.c, reflection.h: many cleanups, fixes, output method
35610         signatures and headers, typedef and typeref info, compress the metadata
35611         tables, output all the heap streams, cli header etc.
35612         * row-indexes.h: typo fixes.
35613
35614 2001-10-04  Dick Porter  <dick@ximian.com>
35615
35616         * object.h: Add a synchronisation mutex struct to MonoObject
35617
35618         * object.c (mono_new_object): Initialise the object
35619         synchronisation mutexes
35620
35621         * icall.c: System.Threading.Monitor internal calls
35622         
35623         * threads-pthread.h:
35624         * threads-pthread.c: System.Threading.Monitor internal calls
35625
35626         * threads-types.h: New file, includes the system-specific thread
35627         structures
35628         
35629         * threads-pthread-types.h:
35630         * threads-pthread-types.c: New files, handle pthread-specific
35631         synchronisation types
35632
35633         * threads-dummy-types.h: 
35634         * threads-dummy-types.c: New files of dummy support for
35635         thread-specific types
35636
35637         * metadata.c:
35638         * image.c:
35639         * pedump.c: include mono-endian.h not endian.h
35640         
35641         * Makefile.am: More threads files.
35642         Name mono-endian.h not endian.h
35643
35644 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
35645
35646         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
35647         stuff and implement a few more bits.
35648         * icall.c: a field needs to be dereferenced twice. Do not use the same
35649         name for two variables in the same scope.
35650         * image.c, image.h: cleanups.
35651
35652 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
35653
35654         * class.c (mono_class_metadata_init): bug fix: compute the right size
35655
35656 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
35657
35658         * icall.c: implemented some of the Reflection internalcalls.
35659         * image.c, image.h: start writing out the PE/COFF image.
35660         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
35661         that does the reverse than decode_blob_size ().
35662         * object.c: use mono_metadata_encode_value (). Move here
35663         temporary implementation of mono_string_to_utf8 ().
35664         * rawbuffer.c: make malloc_map static.
35665
35666 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35667
35668         * metadata.c: fix type comparison for arrays.
35669         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
35670         Added a couple of new classes to monodefaults.
35671         * icall.c: added a couple of Reflection-related internalcalls.
35672         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
35673         Added a byval_arg MonoType to MonoClass.
35674
35675 2001-09-28  Dick Porter  <dick@ximian.com>
35676
35677         * icall.c:
35678         * threads-pthread.h: 
35679         * threads-pthread.c: Implemented internal calls for
35680         LocalDataStoreSlot operations.  Applied mutexes around all shared
35681         data.  Reworked the thread creation and Start() operations to
35682         avoid a race condition.
35683         
35684         * threads-dummy.h:
35685         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
35686
35687 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
35688
35689         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
35690
35691 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
35692
35693         * class.c, loader.c: warn and return NULL instead of erroring out.
35694         * icall.c: added System.AppDomain::getCurDomain().
35695         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
35696
35697 2001-09-25  Dick Porter  <dick@ximian.com>
35698
35699         * threads-pthread.h:
35700         * threads-pthread.c: Implemented timed thread joining and added
35701         System.Threading.Thread::Join_internal internal call
35702
35703         * icall.c: Added System.Threading.Thread::Join_internal internal call
35704
35705         * threads-dummy.h:
35706         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
35707
35708 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
35709
35710         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
35711         mono_string_intern () to implement the semantics of the ldstr opcode
35712         and the interning of System.Strings.
35713         * icall.c: provide hooks to make String::IsIntern and String::Intern
35714         internalcalls.
35715
35716 2001-09-23  Dick Porter  <dick@ximian.com>
35717
35718         * threads-dummy.c: 
35719         * threads-dummy.h: New files of dummy threading routines
35720
35721         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
35722         support code based on system specifics
35723
35724         Rename PTHREAD_LIBS to THREAD_LIBS
35725         
35726 2001-09-23  Dick Porter  <dick@ximian.com>
35727
35728         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
35729         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
35730         internal calls.
35731         (mono_thread_init): Set up a Thread object instance to return when
35732         the main thread calls Thread.CurrentThread
35733         (mono_thread_cleanup): Wait for all subthreads to exit
35734
35735         * icall.c: New internal calls for System.Threading.Thread::Sleep
35736         (including Schedule) and CurrentThread
35737
35738         * threads.h: New file, to insulate thread-specific stuff from the
35739         rest of the code
35740
35741 2001-09-21  Dick Porter  <dick@ximian.com>
35742
35743         * threads-pthread.h: 
35744         * threads-pthread.c: New file, for handling pthreads-style
35745         threading support.  Start() now starts a new thread and executes
35746         the ThreadStart delegate instance.
35747
35748         * icall.c: Added the internalcall for
35749         System.Threading.Thread::Start_internal
35750
35751         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
35752
35753 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
35754
35755         * loader.c: work around the different signatures for delegates
35756         constructors csc generates in compiled code vs the ones compiled in mscorlib.
35757
35758 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35759
35760         * class.h, class.c: add mono_class_get_field_from_name ().
35761         * *: Fix C comments and other ANSI C issues.
35762
35763 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
35764
35765         * endian.h, assembly.c: fix some endianness issues.
35766
35767 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
35768
35769         * loader.h, load.c: add delegate_class to mono_defaults.
35770         Handle runtime provided methods in mono_get_method ().
35771
35772 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
35773
35774         * loader.c (mono_get_method): use pinvoke for internal call
35775
35776         * icall.c: use pinvoke for internal call
35777
35778         * loader.c (method_from_memberref): set the method name
35779
35780 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
35781
35782         * metadata.c: help the compiler generate better code for
35783         mono_class_from_mono_type ().
35784
35785 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
35786
35787         * class.c (mono_class_metadata_init): delayed computing of the
35788         class size to mono_class_metadata_init ()
35789
35790 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
35791
35792         * class.c, class.h: add an interfaces member to MonoClass.
35793         * image.c, image.h: add assembly_name field to MonoImage
35794         from the assembly table.
35795         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
35796
35797 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35798
35799         * class.c: Handle Array in mono_class_from_mono_type ().
35800         * metadata.c, pedump.c: some endian fixes.
35801
35802 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35803
35804         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
35805         * metadata.c: fix small problem introduced with the latest commit.
35806
35807 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
35808
35809         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
35810         We don't need a MonoMetadata pointer anymore to compare signatures in
35811         mono_metadata_signature_equal (), update callers.
35812         Reduced memory usage an number of allocations for MonoMethodHeader and
35813         MonoMethodSignature.
35814
35815 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
35816
35817         * metadata.c: added compare for szarray.
35818
35819 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
35820
35821         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
35822         and add a couple more types to it and mono_defaults. Give an hint on
35823         classes that need implementing in our corlib and are referenced
35824         in mscorlib.
35825
35826 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
35827
35828         * class.h, class.c: keep track if a class is also an Enum.
35829         * loader.c: Implement a couple more types for use in libffi
35830         marshalling. Gives better diagnostics when failing to dlopen
35831         a library. Set method->klass for P/Invoke methods, too.
35832
35833 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35834
35835         * class.c, class.h: add a MonoType this_arg to MonoClass that
35836         represents a pointer to an object of the class' type that
35837         can be used by the interpreter and later the type cache.
35838         Add best guess alignment info for valuetype objects.
35839
35840 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35841
35842         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35843         into MonoType: one less level of indirection and allocation and
35844         simplifies quite a bit of code. Added cache for MonoTypes that are
35845         used frequently, so that we don't need to allocate them all the time.
35846
35847 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35848
35849         * class.c (mono_class_create_from_typedef): System.Enum is also a
35850         value type, although it does not derive from System.ValueType
35851         (maybe a bug in the ms compiler?)
35852
35853         * metadata.c (mono_type_size): return the right size for value types
35854
35855         * loader.c (mono_get_method): only initialize method header if not abstract
35856
35857         * class.c (mono_class_from_mono_type): use mono_default values. 
35858
35859 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35860
35861         * *: use MonoClass pointers instead of <type_tokens>
35862         
35863         * class.h: new flag: metadata_inited.
35864
35865         * class.c (mono_class_metadata_init): impl.
35866         (mono_class_instance_size): impl.
35867         (mono_class_data_size): impl.
35868
35869 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35870
35871         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35872         MonoClass now has the name and name_space fields. 
35873         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35874         mono_get_method () takes and optional MonoClass as argument.
35875         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35876         instead that takes advantage of a map from class names to typedef
35877         tokens in MonoImage.
35878
35879 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35880
35881         * metadata.c: zero is not a valid alignment boundary.
35882         Merge MONO_TYPE_VOID in default decoding code.
35883
35884 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35885
35886         * image.h: merged MonoMetadata into MonoImage
35887
35888         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35889         identify the type of elements.
35890
35891 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35892
35893         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35894         * cil-coff.h: split MonoMSDOSHeader and add size info.
35895         * image.c: add some consistency checks.
35896         * metadata.c: fix row size computation: one programmer
35897         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35898         add explanation for the locator routine.
35899         Fix decoding of size in method header.
35900         
35901 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35902
35903         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35904         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35905         function from gnome-libs.  This uses the right path separator
35906         based on the OS, and also works around a bug in some systems where
35907         a double slash is not allowed. 
35908         (default_assembly_name_resolver): Use g_concat_dir_and_file
35909         (mono_assembly_open): ditto.
35910
35911 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35912
35913         * metadata.c (mono_metadata_signature_equal): impl.
35914
35915         * *: void is now a realy MonoType (instead of using NULL)
35916         
35917         * metadata.c (do_mono_metadata_parse_type): use
35918         mono_metadata_parse_type to parse void value.
35919
35920 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35921
35922         * metadata.c, metadata.h: in the signature and method header store
35923         only the space required for holding the loca vars and incoming arguments.
35924
35925 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35926
35927         * metadata.c (do_mono_metadata_parse_type): treat void like any
35928         other type (instead of assigning NULL);
35929
35930 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35931
35932         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35933
35934 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35935
35936         * image.c (do_mono_image_open): added a cache for arrays.
35937
35938 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35939
35940         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35941         decode a single column from a row in a metadata table and changes
35942         to take advantage of it in the typedef locator (gives a nice speed up).
35943         Store offset info for function params.
35944
35945 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35946
35947         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35948
35949 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35950
35951         * assembly.c: how could mono_assembly_close () had ever worked?
35952         * metadata.c, metadata.h: provide offset info for local vars.
35953         Implement mono_type_size () to take care of alignment as well
35954         as size (it was mono_field_type_size in cli/class.c before).
35955
35956 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35957
35958         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35959
35960         * assembly.h (CORLIB_NAME): set to corlib.dll
35961
35962         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35963
35964 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35965
35966         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35967         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35968         tokentype.h: massive namespace cleanup.
35969
35970 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35971
35972         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35973
35974 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35975
35976         * metadata.c (mono_metadata_free_type): added check for type !=
35977         NULL (void) before calling mono_metadata_free_type()
35978
35979 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35980
35981         * metadata.h, row_indexes.h: added header with enumerations to use
35982         to index in the columns from tables in metadata and to decode coded
35983         tokens: we should start using this instead of embedding magic numbers
35984         all over the code.
35985
35986 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35987
35988         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35989         Move metadata_t info from cli_image_info_t to MonoImage, where
35990         it's easily accessible. Changed all the uses accordingly.
35991         Added the method and class caches to MonoImage.
35992         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35993         and mono_metadata_decode_value () signature to be more consistent
35994         with the other parse functions (and simplify code). Taken advantage
35995         of zero-length array allocation with GCC. Removed reduntant (and
35996         wrong) MonoFieldType struct and use MonoParam instead. Changed
35997         mono_metadata_parse_field_type () to use common code for parsing.
35998         Added mono_metadata_typedef_from_field () and
35999         mono_metadata_typedef_from_method () to lookup a typedef index from a
36000         field or method token.
36001         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
36002
36003 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
36004
36005         * metadata.c (mono_metadata_parse_field_type): Implement. 
36006         (do_mono_metadata_parse_type): Split engine from
36007         mono_metadata_parse_type, so that we can create smaller structures
36008         for things that just have one pointer to the MonoType (look at
36009         the MonoFieldType)
36010
36011 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
36012
36013         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
36014         as Jan Gray found out, it is incorrect. 
36015
36016 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
36017
36018         * assembly.c: Implement asssembly loading.  This loads an image
36019         and loads all the referenced assemblies.  Come to think of it, we
36020         could always do lazy loading of the assemblies. 
36021
36022         * image.c (mono_image_open): Keep loaded images in a hashtable.
36023
36024         * image.h (MonoImage): Add reference count.
36025
36026 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
36027
36028         * assembly.c (mono_assembly_open): Keep track of the file name in
36029         case the assembly has no ASSEMBLY table.
36030
36031         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
36032         from get.c here.
36033
36034 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
36035
36036         * metadata.c, metadata.h: decode local vars in method header
36037         parse function. Change callers accordingly.
36038
36039 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
36040
36041         * metadata.h, cil-coff.h: protect against multiple inclusion.
36042         Added some new structures to hold information decoded from metadata:
36043         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
36044         and relevant decoding/free functions.
36045         * metadata.c: implement decoding functions. Add warning for out of bounds
36046         index in mono_metadata_locate(). Implement mono_get_method () to retreive
36047         all the info about a method signature and invocation. Remove check on
36048         uninitialized local var in parse_mh() and fix memory leak.
36049
36050 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
36051
36052         * metadata.h: More macros.
36053
36054         * tokentype.h: New file.
36055
36056 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
36057
36058         * assembly.c: added a consistency check and initialize
36059         some structures with g_new0().
36060         * metadata.c: fixed a couple more bugs in table size computation
36061         and add other checks for out-of bound access to metadata.
36062
36063 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
36064
36065         * metatada.c: fix bugs computing table sizes. Spew a
36066         warning when index in string heap is out of bounds.
36067
36068 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
36069
36070         * metadata.h: Add a couple of macros to manipulate tokens. 
36071
36072 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36073
36074         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
36075         cli_section_tables).
36076
36077 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
36078
36079         * metadata.c (mono_metadata_user_string): New function, provides
36080         access to the UserString heap. 
36081
36082 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
36083
36084         * metadata.c: Add inline documentation.
36085
36086 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
36087
36088         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
36089         files. 
36090
36091 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
36092
36093         * typeattr.h: New file, TypeAttribute flags. 
36094
36095 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
36096
36097         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
36098         mono_assembly_ensure_section): Section loading code.
36099         (load_section_tables): Load the sections.
36100
36101         * mono/metadata/metadata.c (mono_metadata_locate_token,
36102         mono_metadata_locate): Functions to locate the information
36103         definition given a token or a table and an index.
36104         (mono_metadata_compute_table_bases): New.
36105         (compute_size): New function to compute the sizes of the various
36106         tables.
36107
36108         * mono/metadata/metadata.h: Finish listing the different index
36109         types. 
36110
36111         * mono/metadata/pedump.c: Improve to dump new information.
36112
36113 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
36114
36115         * mono/metadata/metadata.c: Entered all the tables matching
36116         Beta2. 
36117
36118         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
36119
36120
36121
36122