2009-02-03 Miguel de Icaza <miguel@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2009-02-03  Miguel de Icaza  <miguel@novell.com>
2
3         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
4
5 2009-02-03  Mark Probst  <mark.probst@gmail.com>
6
7         * generic-sharing.c: Don't hold domain lock when calling
8         instantiate_other_info().  Fixes #471958.
9
10         * domain-internals.h, loader.c: Describe locking policy of domain
11         lock vs loader lock.
12
13 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
14
15         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
16         errors.
17
18         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
19         under strict mode. Any type, when boxed can be seen as a reference type.
20
21         Fixes #469528.
22
23 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
24
25         * object.h: The lower bound of an array is a signed integer value.
26         Introduce mono_array_lower_bound_t typedef. It should be used instead of
27         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
28
29         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
30         calculate the upper bound.
31         
32         Fixes #471252.
33
34 2009-02-02  Miguel de Icaza  <miguel@novell.com>
35
36         From Paolo's work, refactored, cleared up:
37         
38         * threadpool.c, icall.c: ifdef code that requires a working socket
39         stack.
40
41         * metadata.c (mono_metadata_field_info): Do not attempt to return
42         a value from a function declared as void.
43
44         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
45         from the console stack.
46
47         * assembly.c: use strrchr instead of rindex.
48
49         * class.c, object.c, marshal.c, icall.c, reflection.c: include
50         alloca.h on systems that have it.
51
52         * environment.c: Avoid code that uses stuff from
53         HAVE_SYS_UTSNAME_H
54         
55         * appdomain.c: Include sys/time.h.
56
57         * console-io.c: include sys/ioctl.h if it is available.
58
59 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
60
61         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
62
63         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
64         the method builder.
65
66         * marshal.c: Set mb->skip_visibility instead of setting it on the method
67         after it was created and cached, as the later is not thread safe.
68         
69 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
70
71         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
72         called while the debugging module is not initialized. Fixes #471669.
73
74 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
75
76         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
77
78         Fixes #471255.
79
80 2009-02-02  Mark Probst  <mark.probst@gmail.com>
81
82         * generic-sharing.c (lookup_or_register_other_info): Make sure the
83         loader lock is not taken while the templates lock is held.  Fixes
84         #471089.
85
86 2009-02-02  Mark Probst  <mark.probst@gmail.com>
87
88         * metadata.c (type_in_image): Added a check to fix a monodis
89         crash.
90
91 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
92
93         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
94         nullable arguments.
95
96         * object.c (mono_runtime_invoke_array): Ditto.
97         
98         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
99         freeing wrappers of dynamic methods.
100
101         * loader.c (mono_free_method): Call it. Fixes #463323.
102         
103         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
104         methods taking vtype/byref arguments, to fix yet another bug caused by
105         the sharing of runtime invoke wrappers. Partly fixes #471259.
106
107 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
108
109         * debug-mono-symfile.c (check_line): Return NULL instead of returning
110         <first file in file table>:1 when the IL offset does not have an associated
111         line number.
112
113 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
114
115         * mono-debug.c (mono_debug_lookup_locals): New function to return local
116         variable info for a method.
117
118         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
119         
120 2009-01-30  Jb Evain  <jbevain@novell.com>
121
122         * pedump.c: reuse code from monodis to make sure pedump honors
123         MONO_PATH, which is needed to verify net_2_1 assemblies.
124
125 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
126
127         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
128         there is no line number info.
129
130 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
131
132         Avoid some MonoType allocations
133         * reflection.c (mono_reflection_initialize_generic_parameter):
134         Reuse MonoType from param->pklass rather than allocating one.
135         (mono_dynamic_image_free): Update to changes.
136
137 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
138
139         Rearrange some code to improve consistency
140         * reflection.c (mono_reflection_setup_generic_class): Move body ...
141         (mono_reflection_initialize_generic_parameter): ... here.
142
143 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
144
145         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
146         with type constraints as an experiment.
147
148         * boehm-gc.c (on_gc_notification): Update mono_stats.
149
150 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
151
152         Avoid some allocations
153         * class-internals.h (_MonoGenericInst::type_argv): Convert from
154         pointer to tail array to avoid extra allocation.
155         * metadata.c (free_generic_inst): Update to changes.
156         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
157         on-stack struct.
158
159 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
160
161         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
162         return TRUE if the two type objects are the same.
163
164 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
165
166         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
167         (mono_class_native_size): Use klass->marshal_info->min_align instead of
168         klass->min_align, since klass->min_align contains the managed alignment,
169         while the native alignment can be different, like for longs on x86.
170         Fixes #469135.
171
172         * class-internals.h (MonoMarshalType): Add a min_align field.
173
174 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
175
176         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
177         the 1.0 format.
178
179 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
180
181         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
182         some comments about the usage of the used_regs field.
183
184         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
185         Fixes #469217.
186
187 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
188
189         * appdomain.c: return NULL instead of throwing FileNotFoundException
190         when LoadAssembly() fails.
191
192 2009-01-23  Mark Probst  <mark.probst@gmail.com>
193
194         * metadata.c (mono_metadata_generic_param_equal): Only compare the
195         image if the owner is NULL.  Fixes the AOT failures.
196
197 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
198
199         * metadata.c (mono_metadata_load_generic_params): Initialize the 
200         MonoGenericParam structure using memset so the image field is initialized
201         as well.
202
203 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
204
205         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
206         a plain store.
207
208 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
209
210         * class.c (mono_class_setup_vtable_general): In the generic instance
211         optimization, set method->slot for abstract virtual methods. Fixes part of
212         #467834.
213
214 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
215
216         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
217         which signals that the unloading has started but all appdomain services must
218         remain operational.
219
220         * appdomain.c (mono_domain_unload): The initial state for unloading now
221         is unloading_start and we switch to unloading after the managed call to
222         AppDomain::DomainUnload has finished.
223
224         The new unloading state has to be created because managed code in the
225         DomainUnload event can depend on things like the threadpool still working.
226         The domain must remain fully functional while the event executes.
227
228         This shown as an issue due to Process::WaitForExit, which waits for
229         async reads of stdout and stderr to complete. Since those are processed
230         in the threadpool the code deadlocks because the DomainUnload callback 
231         waits for the async read finished event, which should have been set by a
232         threadpool job but has been discarded due to the domain been in unload
233         state.
234
235 2009-01-21  Mark Probst  <mark.probst@gmail.com>
236
237         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
238         image must match.
239
240 2009-01-21  Mark Probst  <mark.probst@gmail.com>
241
242         * reflection.c (resolve_object): For fields, inflate the class and
243         then get the field in the inflated class.
244
245 2009-01-20  Mark Probst  <mark.probst@gmail.com>
246
247         * object-internals.h (struct _MonoException): Added a comment
248         explaining the new use of trace_ips.
249
250 2009-01-20  Mark Probst  <mark.probst@gmail.com>
251
252         * generic-sharing.c (inflate_other_data): Inflate array methods
253         correctly.
254
255         * loader.c, class-internals.h: Rename search_in_array_class() to
256         mono_method_search_in_array_class() and make it non-static.
257
258 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
259
260         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
261         Hopefully fixes #458168.
262
263 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
264
265         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
266         as it is performed elsewhere.
267
268         Code is contributed under MIT/X11 license
269
270 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
271
272         * mono-perfcounters-def.h: Add counters for asp.net requests total and
273         requests queued.
274         * object.c (mono_raise_exception): Increment the exceptions total
275         counter when an exception is thrown.
276         * class-internals.h: Add a location for storing the total number of
277         asp.net requests served.
278         * mono-perfcounters.c: Implement update support for asp.net counters
279         from the class libraries. Implement read support for asp.net counters
280         and exceptions total counter.
281
282 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
283
284         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
285         accessing klass->methods. Fixes #467385.
286
287 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
288
289         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
290         for byval arguments without an [Out] attribute. Fixes #467212.
291
292         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
293         Fix compilation under android.
294         
295         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
296         processed, scan them directly after they are copied, to achieve better locality
297         and cache usage.
298
299         * socket-io.c: Applied patch from Koushik Dutta
300         (koush@koushikdutta.com). Disable IPV6 when running under android.
301
302 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
303
304         * icall.c (ves_icall_InternalExecute): Add write barriers.
305
306         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
307         the GC code.
308
309         * sgen-gc.c: Implement write barriers in IL code.
310
311 2009-01-17  Geoff Norton  <gnorton@novell.com>
312
313         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
314
315 2009-01-17  Geoff Norton  <gnorton@novell.com>
316
317         * image.c: When unloading the image->references table, there can be gaps
318         in it.  Ensure that we iterate every entry to avoid leaking assembly references
319         when unloading an appdomain.
320
321 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
322
323         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
324         speed up ptr-in-nursery checks.
325
326         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
327         threads_lock () to prevent deadlocks.
328
329         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
330         does not need to be scanned during minor collections, since writes to it
331         must use write barriers.
332
333 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
334
335         * metadata-verify.c: Add pe nt header verification.
336         
337 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
338
339         * gc.c: Fix a few warnings when using SGEN.
340
341 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
342
343         * metadata-verify.c: Add pe optional header verification.
344
345 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
346
347         * sgen-gc.c: Add support for user defined marker functions, used by
348         MonoGHashTable to avoid registering a GC root for every hash node.
349
350 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
351
352         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
353         non-pinned roots into separate hashes to avoid having to traverse them
354         in functions which are only interested in one kind.
355
356 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
357
358         * metadata-verify.c: Add pe header machine field verification.
359         
360 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
361
362         * metadata-verify.c: Add pe header size verification.
363
364 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
365
366         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
367         using the GC, they don't contain references.
368
369         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
370
371 2009-01-13  Geoff Norton  <gnorton@novell.com>
372
373         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
374         AppDomains created on the native side can be cleaned up on the native side.
375
376 2009-01-13  Geoff Norton  <gnorton@novell.com>
377
378         * appdomain.c: Ensure that we call mono_context_init for the embedding api
379         as well as the managed api.
380
381 2009-01-13  Geoff Norton  <gnorton@novell.com>
382
383         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
384         with a MonoAppDomain initialized against it.
385
386 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
387
388         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
389         
390         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
391
392         * marshal.c: Avoid setting the exception clauses after a method has been entered 
393         into the wrapper caches. Fixes #465700.
394
395         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
396         method builder.
397         (mono_mb_create_method): Set the clauses from the method builder.
398
399 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
400
401         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
402         Patch from Makoto Kishimoto.
403
404 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
405
406         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
407         encoding them as ROOT_DESC_COMPLEX.
408         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
409
410 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
411
412         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
413         no longer point to the nursery.
414
415         * sgen-gc.c: Add a few comments/FIXMEs.
416         
417         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
418
419         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
420         initialization of the various _method variables thread safe. Fixes
421         #465377.
422
423 2009-01-12  Mark Probst  <mark.probst@gmail.com>
424
425         * domain.c, domain-internals.h: Remove the shared_generics_hash
426         and its lookup functions.
427
428 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
429
430         * socket-io.c:  Fixing the MSVC build. 
431
432         Code is contributed under MIT/X11 license.
433
434 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
435
436         * metadata-verify.c: Add pe header watermark verification.
437
438 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
439
440         * metadata-verify.c: Add lfanew verification.
441
442 2009-01-12  Jb Evain  <jbevain@novell.com>
443
444         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
445         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
446
447 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
448
449         * socket-io.c: Fix the build.
450
451         * environment.c: Fix an #ifdef.
452
453 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
454
455         * threadpool.c (async_invoke_thread): Handle the wait function returning
456         WAIT_IO_COMPLETION as well.
457         (async_invoke_io_thread): Ditto.
458
459 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
460
461         * threads.c: Fixing the Windows build.
462
463         Code is contributed under MIT/X11 license.
464
465 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
466  
467         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
468         interrupt a wait.
469         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
470         the thread to wait again.
471
472 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
473
474         * metadata-verify.c: Initial skeleton of the metadata verifier.
475
476         * pedump.c: Add support for the metadata verifier.
477
478         * verify-internal.h: Export the whole assembly metadata verifier function.
479
480 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
481
482         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
483
484 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
485
486         * Makefile.am: Upgrade dtrace-prelink.sh location.
487
488 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
489
490         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
491         well. Otherwise the shutdown deadlock that happens on unix will can happen
492         as well.
493         If the main thread code finishes too fast it's possible that the finalizer
494         thread won't have executed yet, won't record itself as the finalizer thread
495         and the shutdown sequence will wait on it forever.
496
497 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
498
499         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
500         with MSVC.
501
502 2009-01-08  Miguel de Icaza  <miguel@novell.com>
503
504         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
505         Robert Jordan for pointing this out.
506
507 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
508
509         * icall.c
510         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
511         ves_icall_System_IO_DriveInfo_GetDriveType.
512
513 2009-01-07  Miguel de Icaza  <miguel@novell.com>
514
515         * icall.c: Wrap calls to mono_strtod in CriticalSection
516         invocations when using eglib, to work around #464316.
517
518 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
519
520         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
521         return value of GetCurrentDirectory to never access unitialized memory.
522
523 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
524
525         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
526         return value of GetCurrentDirectory and expand the buffer if needed.
527
528         Fixes #459094.
529
530 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
531
532         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
533           Adding a call to mono_init_com_types.
534
535         Code is contributed under MIT/X11 license.
536
537 2009-01-07  Geoff Norton  <gnorton@novell.com>
538
539         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
540         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
541         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
542         be the value of the ip buffer.
543
544 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
545
546         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
547         interfaces_packed here.
548
549         Fixes part of #463294.
550
551 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
552
553         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
554
555         Fixes part of #463294.
556
557 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
558
559         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
560         is a boxed complex as well.
561
562         Fixes part of #463294.
563
564 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
565
566         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
567         control if a methodspec should be created for the generic method definition from external assemblies.
568         Caching of methodspec is done using the handleref hash table.
569
570         Fixes #462592.
571
572 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
573
574         * loader.c (find_method): When searching the interfaces of a class
575         check the transitive closure of implemented interfaces.
576
577         Fixes #463303.
578
579 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
580
581         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
582         
583 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
584
585         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
586         interfaces calculation to fill_valuetype_array_derived_types.
587
588         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
589         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
590         for example.
591
592         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
593         interfaces for valuetypes if needed.    
594
595         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
596         for their basetype as well. Types are array expanded if rank is > 0.
597
598         Fixes #400716.
599
600 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
601
602         * socket-io.h : Changing the signature of
603           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
604           the blocking state.
605
606         * icall-def.h :  Changing the signature of
607           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
608
609         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
610           For Windows only.  Avoid blocking when calling accept by
611           querying for a connection via select.  The loop also queries
612           the thread state every 1000 micro seconds for the thread
613           stop state.  This will avoid the process hanging on shutdown
614           when using a TcpChannel that is never connected to.
615
616         Code is contributed under MIT/X11 license.
617
618 2008-12-30  Marek Safar  <marek.safar@gmail.com>
619
620         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
621
622 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
623
624         * class.c (get_implicit_generic_array_interfaces): Extract common
625         code to a helper function making it a lot easier on the eyes.
626
627 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
628
629         * class.c (get_implicit_generic_array_interfaces): If the internal
630         enumerator is an interface inflate System.Object instead of itself.
631
632         Fixes #461261.
633
634 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
635
636         * object.c (mono_runtime_invoke_array): Don't assert with
637         byref nullable types.
638
639         * marshal.c (mono_marshal_get_runtime_invoke): To handle
640         byref nullables we unbox the object and store it on the
641         stack. 
642         We can't use the boxed object since it is the T of Nullable<T>
643         and the boxed representation of a nullable it's underlying type
644         or null.
645         We could cheat and create a boxed nullable and use the same
646         machinery of other byref VTs but this feels like a hack and
647         using the stack has the bonus of reducing heap pressure.
648
649         Fixes #461941.
650
651 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
652
653         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
654         return value.
655
656         Fixes #461867.
657
658 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
659
660         * icall-def.h : Adding an internal call definition for 
661           System.Environment.internalBroadcastSettingChange.
662
663         * icall.c : Adding a Windows only implementation to broadcast a 
664           WM_SETTINGCHANGE when an environment variable has changed.
665
666         Code is contributed under MIT/X11 license.
667
668 2008-12-19  Mark Probst  <mark.probst@gmail.com>
669
670         * class.c, class-internals.h: Made
671         mono_class_has_parent_and_ignore_generics() non-static.
672
673 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
674
675         * image.c: deal with the mmap failing when loading an image.
676
677 2008-12-17  Geoff Norton  <gnorton@novell.com>
678
679         * threadpool.c: Ensure that the io_queue_lock is initialized
680         in all circumstances, as we always attempt to cleanup against it.
681
682 2008-12-17  Miguel de Icaza  <miguel@novell.com>
683
684         * icall.c (ves_icall_System_Environment_get_Platform): For
685         compatibility reasons for existing client code we will keep
686         returning 4 for a while.   
687
688         For how long will depend on the documentation being updated, and
689         for us to give client code a chance to be updated.
690
691         This reverts the original decison on #433108 since we did not
692         catch roughly 33 instances of the broken code in our own source
693         code base, we did not catch failures on the buildbots, and QA did
694         not bring this as a problem.
695
696         Only today I found some customer's code breaking due to our own
697         class libraries not being fully updated and tracked it down to
698         this change.  I am reverting it because if we could not even get
699         our story straight in our own code base, how can we hope that our
700         end user code be fixed?
701
702         As of this morning, our Wiki page that documents how to detect
703         Unix had not been fixed.    
704
705 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
706
707         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
708
709         * class.c (mono_class_get_fields): Handle loading errors.
710
711 2008-12-12 Mark Mason <mmason@upwardaccess.com>
712
713         * 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.
714         
715 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
716
717         * mono-perfcounters.c: avoid warning.
718
719 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
720
721         * reflection.c (ensure_runtime_vtable): Work on generic instances and
722         make sure all interfaces have MonoClass::interface_id set.
723
724         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
725         method table is property set.
726
727 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
728
729         * class.c: New function mono_class_setup_interface_id that setup
730         MonoClass::interface_id if needed.
731
732         * class-internals.h: Export new function.
733
734 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
735
736         * class.c: Add code to sanity check the vtable after setup_vtable_general
737         has done it's work.
738
739 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
740
741         * icall.c: make Assembly.GetExecutingAssembly work properly when
742         reflection is used to invoke the method.
743         Bug #321781 fixed.
744
745 2008-12-11  Mark Probst  <mark.probst@gmail.com>
746
747         * metadata/generic-sharing.c: Look for constraints in all type
748         arguments, not just the first one.
749
750 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
751
752         * appdomain.c: return the correct CodeBase for an Assembly instance
753         that was loaded from the shadow-copy directories.
754         Bug #458190 fixed.
755
756 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
757
758         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
759
760         * sgen-gc.c (check_object): New debugging helper function.
761
762         * object.c: Fix calls to mono_value_copy_array ().
763
764 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
765
766         * class.c (mono_class_setup_fields): If working on an inflated class
767         first check if the generic definition did init with success.
768
769         Fixes #445361.
770
771 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
772
773         pedump.c (main): Fix a warning.
774
775 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
776
777         * object-internals.h : Adding a definition for 
778           MonoReflectionComVisibleAttribute.
779
780         * marshal.c (cominterop_com_visible) :  Method added to check the 
781           ComVisible attribute of a class.
782
783         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
784           cominterop_raise_hr_exception added to consolidate common code 
785           to raise hr exceptions.
786
787         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
788           if a managed class should support IDispatch.
789
790         * marshal.c 
791           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
792           Added additional checks for managed object when getting 
793           an IDispatch interface.
794
795         Code is contributed under MIT/X11 license.
796
797 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
798
799         pedump.c (main): Handle mono_get_method () returning NULL. 
800
801 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
802
803         * marshal.h: Fix a warning.
804
805 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
806
807         * marshal.c : Adding cominterop_release_all_rcws to release all
808           runtime callable wrappers held by the runtime.
809
810         * marshal.h : Adding declaration for cominterop_release_all_rcws.
811           
812         Code is contributed under MIT/X11 license.
813
814 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
815
816         * metadata.c (mono_image_alloc_lock): New helper function.
817         (mono_image_alloc0_lock): Ditto.
818
819         * metadata.c: Use the alloc_lock () helper functions for allocating
820         memory from the image mempool.
821
822 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
823
824         * class.c (mono_class_from_generic_parameter): Document it's
825         locking behavior. Fix double checked locking here, we stored in
826         param->pklass a partially initialized MonoClass and no membar was used.
827
828 2008-12-05  Marek Habersack  <mhabersack@novell.com>
829
830         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
831         (3) functions are present in the C library use them to do the
832         job. If they are absent, make sure that the sum of int_part and
833         dec_part is rounded before returning. This is necessary due to the
834         division of dec_part by the power of 10 before the final addition
835         is performed - if the result is not rounded in some cases it will
836         yield invalid results.
837
838 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
839
840         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
841         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
842         instruction instead of a pointer constant.
843
844 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
845
846         * loader.c (mono_method_get_header): Do most of the work outside the
847         loader lock, to avoid assembly load hook deadlocks.
848
849         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
850         (mono_metadata_parse_type_full): Ditto.
851
852 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
853
854         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
855         Make the stack depth fixed. Ensure proper argument passing to the backtrace
856         funtions. Finally, use a lock to produce well ordered output.
857
858         The lock looks silly, as all calls to the corlib mempool should be guarded
859         with the loader lock, but for some reason this fact doesn't help. 
860
861         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
862
863 2008-12-02  Mark Probst  <mark.probst@gmail.com>
864
865         * socket-io.c: 64 bit big-endian fixes.
866
867 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
868
869         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
870         targets that require strict compatibility between the types.
871
872         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
873         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
874         Kill the strict argument and create a new one valuetype_must_be_boxed.
875
876         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
877         state that all valuetypes must be boxed.
878
879         Fixes #448560.
880
881 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
882
883         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
884         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
885
886         Contributed under MIT/X11 license.
887
888 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
889
890         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
891         the inflate_generic_type machinery should handle it.
892
893         This avoids a crash when the field's flags is zero and it's type is
894         a primitive.
895         What happens is that mono_metadata_parse_type_full will see that opt_attrs
896         is zero and will return one of the cached built-in primitive types. Since
897         those types live in read-only memory, the code that copies it crashes.  
898
899 2008-11-28  Mark Probst  <mark.probst@gmail.com>
900
901         * object.c: Don't put function descriptors into generalized IMT
902         thunks.
903
904 2008-11-28  Mark Probst  <mark.probst@gmail.com>
905
906         * class.c: Enable generic code sharing on PPC64.
907
908 2008-11-27  Mark Probst  <mark.probst@gmail.com>
909
910         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
911         from mini/mini.c.
912
913         * generic-sharing.c: Allocate the method template slists from the
914         image mempool so it doesn't leak.
915
916 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
917
918         * class.c (generic_array_methods): Release the linked list.
919
920 2008-11-27  Mark Probst  <mark.probst@gmail.com>
921
922         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
923         invocation to g_utf16_to_utf8().
924
925 2008-11-26  Mark Probst  <mark.probst@gmail.com>
926
927         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
928         arguments on big endian archs.
929
930 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
931
932         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
933         the type name (test added in corlib).
934
935 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
936
937         * pedump.c: initialize perf. counters. Fixes a segv.
938
939 2008-11-25  Martin Baulig  <martin@ximian.com>
940
941         * mono-debug-debugger.c
942         (mono_debugger_runtime_invoke): Return the exception object if an
943         exception was thrown.  Visual Studio displays the exception object
944         in the locals window.
945
946 2008-11-24  Mark Probst  <mark.probst@gmail.com>
947
948         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
949         ftnptr.
950
951 2008-11-24  Mark Probst  <mark.probst@gmail.com>
952
953         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
954         MONO_TYPE_U are sizeof (gpointer), too.
955
956 2008-11-24  Mark Probst  <mark.probst@gmail.com>
957
958         * marshal.c (mono_type_native_stack_size): Fixed size and
959         alignment for reference types.
960
961 2008-11-23  Mark Probst  <mark.probst@gmail.com>
962
963         * class.c (mono_class_generic_sharing_enabled): Disable generic
964         code sharing for PPC64.
965
966 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
967
968         * icall.c (mono_method_get_equivalent_method): Make sure
969         method->klass->methods is inited before looping over it.
970
971 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
972
973         * object.c: when calling ExecuteAssembly in a newly created domain,
974         the configuration file and application base are already set up.
975         Bug #446353 take 2 fixed.
976
977 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
978
979         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
980         Fixes #444715. Fix a warning.
981
982 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
983
984         * appdomain.c: write the full path of the assembly to the .ini file
985         created when "shadow-copying"
986         Bug #446353 fixed.
987
988 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
989
990         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
991         if signature==FALSE.
992
993 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
994
995         * marshal.h : Fix the cygwin build.
996            marshal.c:12442: undefined reference to `_IID_IMarshal'
997           
998         Code is contributed under MIT/X11 license.
999
1000 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
1001
1002         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
1003           free threaded marshaler when QueryInterface is called on a COM callable
1004           wrapper requesting the IMarshal interface.
1005           
1006         Code is contributed under MIT/X11 license.
1007
1008 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
1009
1010         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
1011
1012         * reflection.c (mono_type_get_object): Special case the very common
1013         void type.
1014
1015         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
1016         hold typeof(void).
1017
1018 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
1019
1020         * process.h : Adding method declaration for
1021           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
1022           
1023         * process.c : Adding implementation for
1024           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
1025           
1026         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
1027           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
1028
1029         Code is contributed under MIT/X11 license.
1030
1031 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
1032
1033         * appdomain.c (unload_thread_main): Clean up threadpool by
1034         calling mono_thread_pool_remove_domain_jobs.
1035
1036         * domain-internals.h (struct _MonoDomain): Add new fields to
1037         help coordinate the cleanup of the threadpool.
1038
1039         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
1040         that cleans up the threadpool of all jobs associated with an appdomain.
1041         It does that by cleaning up the queues and making sure all active
1042         threads are accounted.
1043
1044         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
1045         unloaded or in the process of. Take this is such way that there is
1046         no race condition between another thread starting the unload and the
1047         current thread acknowledging it.
1048
1049         * threadpool.c (async_invoke_thread): Same.
1050
1051         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
1052         firing the new thread.
1053
1054         * threadpool.c (start_tpthread): Same.
1055
1056         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
1057
1058         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
1059
1060 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
1061
1062         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
1063         Add support for DuplicateHandle.
1064         
1065         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
1066         Add support for DuplicateHandle.
1067         
1068         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
1069         Add support for DuplicateHandle.
1070
1071         Code is contributed under MIT/X11 license.
1072
1073 2008-11-06  Mark Probst  <mark.probst@gmail.com>
1074
1075         * class-internals.h: Make min_align into a whole byte.
1076
1077         * class.c: Set min_align for SIMD types to 16.
1078
1079 2008-11-05  Geoff Norton  <gnorton@novell.com>
1080
1081         * attach.c: Default the attacher to enabled for all cases including
1082         embedded.
1083
1084 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
1085
1086         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
1087         change r117650.
1088
1089 2008-11-04  Mark Probst  <mark.probst@gmail.com>
1090
1091         * monitor.c, monitor.h: New function for querying offsets of
1092         members of MonoThreadsSync.
1093
1094 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
1095
1096         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
1097         to speed up this function and to avoid the boundless memory growth caused by
1098         the signature_dup () calls.
1099
1100 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
1101
1102         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
1103         wrapper.
1104
1105         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
1106         by 1 bit.
1107
1108         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
1109
1110 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1111
1112         * appdomain.c:
1113         * domain-internals.h: made mono_set_private_bin_path_from_config()
1114         "internal".
1115         * object.c: call the above function after setting the configuration
1116         file path for the root domain.
1117         Fixes bug #314478.
1118
1119 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1120
1121         * assembly.c: when the assembly is loaded from an absolute path, end
1122         basedir with a directory separator.
1123         Bug #440781 fixed.
1124
1125 2008-10-30  Mark Probst  <mark.probst@gmail.com>
1126
1127         * monitor.c (mono_monitor_get_fast_enter_method): If
1128         CompareExchange is not available, don't create the fastpath
1129         instead of asserting.  (The method is missing in the 1.1 profile.)
1130
1131 2008-10-30  Mark Probst  <mark.probst@gmail.com>
1132
1133         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
1134
1135         * monitor.c, monitor.h: Code for generating Monitor.Enter and
1136         Monitor.Exit IL fastpaths.
1137
1138 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
1139
1140         * class.c (mono_class_create_from_typedef): Added Vector2ul.
1141
1142 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
1143
1144         * class.c (mono_class_create_from_typedef): Added Vector2l.
1145
1146 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
1147
1148         * class.c (mono_class_create_from_typedef): Added Vector2d.
1149
1150 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1151
1152         * appdomain.c: translate \ into / for cache_path.
1153         * domain-internals.h: new mono_is_shadow_copy_enabled().
1154         * icall.c: (fill_reflection_assembly_name) do the same path
1155         manipulations that get_code_base does.
1156         (get_code_base) use mono_is_shadow_copy_enabled.
1157
1158 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1159
1160         * appdomain.c: shadow-copied assemblies go to CachePath +
1161         ApplicationName when both are set. DynamicBase has nothing to do with
1162         shadow copies.
1163         Bug #406877 fixed.
1164
1165 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
1166
1167         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
1168         STANDALONESIG table.
1169
1170         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
1171         standalone signatures.
1172
1173         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
1174         comparison code: instead of comparing the signatures using a custom
1175         equals function, transform them to a common signature and compare that. This
1176         works better with AOT.
1177
1178 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
1179
1180         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
1181
1182         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
1183         call for generic instances.
1184         (mono_class_setup_properties): Call setup_properties () before accessing
1185         gklass->properties.
1186
1187         * class.c (mono_class_get_virtual_methods): New helper function to iterate
1188         over the virtual methods of a class using metadata if possible, avoiding the
1189         creation of MonoMethod's for non-virtual methods.
1190         
1191         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
1192         get_virtual_methods () to iterate over the virtual methods of classes.
1193
1194 2008-10-25  Martin Baulig  <martin@ximian.com>
1195
1196         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
1197
1198 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
1199
1200         * class.c (mono_class_create_from_typedef): Added Vector4i.
1201
1202 2008-10-24  Mark Probst  <mark.probst@gmail.com>
1203
1204         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
1205         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
1206         special-casing applies to eliminate the call completely.
1207
1208 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
1209
1210         * class.c (mono_class_create_from_typedef): Added Vector8s.
1211
1212 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1213
1214         * class.c (mono_class_create_from_typedef): Added Vector16sb.
1215
1216 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1217
1218         * icall.c: get rid of annoying warning.
1219
1220 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1221
1222         * threadpool.c: in 1.x, if you change the background status of the
1223         threadpool thread, it's not reset.
1224         Remove unnecessary calls to SetState.
1225
1226 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1227
1228         * threadpool.c: asynchronously create a set of idle threads upon first
1229         use of the threadpool. SetMinThreads will now start the appropriate
1230         number of idle threads if they are not already running. The default is
1231         1 threadpool thread per CPU. Increased the maximum number of threads
1232         per CPU to 10.
1233
1234 2008-10-22  Martin Baulig  <martin@ximian.com>
1235
1236         Revert r116521 from Zoltan, it breaks the debugger:
1237
1238         * class.c (mono_class_get_virtual_methods): New helper function to iterate
1239         over the virtual methods of a class using metadata if possible, avoiding the
1240         creation of MonoMethod's for non-virtual methods.
1241         
1242         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
1243         get_virtual_methods () to iterate over the virtual methods of classes.
1244
1245 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1246
1247         * threads.c: when creating a threadpool thread, set its state to
1248         'background'.
1249         * threadpool.c: reset the background state of a threadpool thread
1250         after finishing each work item
1251         Bug #437888 fixed.
1252
1253 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
1254
1255         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
1256         
1257         * class.c (mono_class_setup_vtable_general): Add an optimized version for
1258         generic instances which works by inflating the methods in the container
1259         class's vtable.
1260
1261         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
1262         variant which doesn't make a copy if no inflation was done.
1263         (mono_class_setup_fields): Use it.
1264
1265         * metadata.c (mono_metadata_get_shared_type): New helper function to
1266         return a shared instance of a given MonoType.
1267
1268         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
1269         a copy of most non-generic types.
1270
1271 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
1272
1273         * threadpool.c: remove one more GetSystemInfo () call.
1274
1275 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
1276
1277         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
1278         use the code in mono-proclib.h to get processor information.
1279
1280 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1281
1282         * appdomain.c: fixed the logic that determines whether assemblies in a
1283         directory are "shadow-copied" or not. Bug #433483 fixed.
1284
1285 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
1286
1287         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
1288         warning.
1289
1290 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
1291
1292         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
1293         returning a vtype.
1294
1295         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
1296         reflection.c: Use mono_field_get_name () for accessing a field's name.
1297
1298         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
1299         class.c
1300
1301         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
1302         field.
1303
1304         * loader.c (find_method_in_class): Reenable the metadata optimization by
1305         not using it for generic instances.
1306
1307         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
1308         data/def_type fields from MonoClassField into a separate structure.
1309         (struct MonoClassField): Remove data/def_type fields.
1310         (struct _MonoClass): Add a 'field_def_values' array to store the default
1311         values/RVA for fields.
1312
1313         * class.c reflection.c: Update after the changes.
1314         
1315         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
1316         for accessing field->data.
1317
1318         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
1319
1320         * loader.c (find_method_in_class): Revert the last change for now as
1321         it breaks Mono.C5 unit tests.
1322
1323         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
1324         'field_generic_types' and 'field_objects' which contain the information
1325         previously stored in MonoInflatedField.
1326         (MonoInflatedField): Delete.
1327         (struct _MonoClassField): Delete 'generic_info' field.
1328
1329         * reflection.c: Store the information which was previously in 
1330         field->generic_info in MonoDynamicGenericClass instead.
1331
1332         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
1333         MonoClassField changes.
1334
1335 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
1336
1337         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
1338         store the value inside the data array of the MonoMethodWrapper.
1339         This saves memory, is faster and fixes the lifetime issues (methods
1340         were never removed from the hash previously). May also fix bug#436996.
1341
1342 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
1343
1344         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
1345         generic instances, compute the type from the generic definition instead of
1346         looking in field->generic_info.
1347
1348         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
1349         for inflated fields, the only user was get_fieldref_token () which no
1350         longer needs it.
1351
1352         * class.c (mono_class_init): Revert the last change as it seems to cause
1353         crashes.
1354
1355         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
1356         bytes on 64 bit platforms.
1357
1358         * object.c (mono_class_create_runtime_vtable): Fix a warning.
1359         
1360         * object.c (mono_class_create_runtime_vtable): Don't initalize
1361         field->data/field->def_type here, it is done lazily by 
1362         mono_class_get_field_default_value ().
1363
1364         * icall.c (ves_icall_get_enum_info): Call 
1365         mono_class_get_field_default_value () instead of directly accessing
1366         field->data and field->def_type.
1367
1368         * object.c (get_default_field_value): Ditto.
1369
1370         * class.c (mono_field_get_data): Ditto.
1371         
1372         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
1373         call for generic instances.
1374
1375         * loader.c (find_method_in_class): If klass != from_class, then inflate
1376         the method with the context of from_class, since the caller assumes this.
1377
1378 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
1379
1380         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
1381         for accessing method->slot.
1382
1383 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
1384
1385         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
1386
1387 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
1388
1389         * class.c (mono_method_get_vtable_index): Use
1390         mono_method_get_vtable_slot () for accessing method->slot.
1391
1392         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
1393         accessing klass->methods.
1394
1395         * class.c (mono_method_get_vtable_slot): New helper function.
1396         (mono_class_get_vtable_entry): Ditto.
1397         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
1398         accessing method->slot.
1399
1400         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
1401         method to get_inflated_method ().
1402
1403         * class.c (mono_class_get_inflated_method): New helper method to obtain
1404         a method of an inflated class without calling setup_methods ().
1405         (mono_class_get_cctor): Use get_inflated_method.
1406
1407         * generic-sharing.c (mono_class_get_method_generic): Ditto.
1408         
1409         * marshal.c image.c: Lazily create all the marshal caches.
1410
1411         * image.c (mono_image_init): Move initialization of runtime_invoke
1412         caches to marshal.c.
1413
1414         * marshal.c (get_cache): New helper function to lazily initialize a 
1415         wrapper cache.
1416         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
1417
1418         * debug-helpers.c (mono_method_full_name): Include generic arguments.
1419
1420 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
1421
1422         * loader.c: fixed check for interface type.
1423
1424 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
1425
1426         * appdomain.c: check for NULL setup before it's referenced.
1427
1428 p
1429 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
1430
1431         * class.c: remove the unused old vtable setup code.
1432
1433 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
1434
1435         * class.c: don't depend on interface order in
1436         setup_interface_offsets (bug #435777).
1437         * reflection.c: sort the InterfaceImpl table (patch from
1438         Jb Evain  <jbevain@novell.com>).
1439
1440 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
1441
1442         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
1443         the low level assemblies lock.
1444
1445 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
1446
1447         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
1448         object.c, reflection.c, socket-io.c, threads.c: introduced
1449         mono_framework_version () to return the major framewrok version,
1450         changed the code that was using more complex patterns to use it.
1451         Return the correct value for PlatformID for OSX.
1452
1453 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
1454
1455         * icall-def.h, process.h, process.c: added an icall to get info about
1456         processes using mono-proclib.
1457
1458 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
1459
1460         * mono-perfcounters.c: use the mono-proclib functions to
1461         access process information.
1462
1463 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
1464
1465         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
1466         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
1467         reflection.c: remove rawbuffer usage: mmap support is more sanely
1468         provided by utils/mono-mmap.
1469
1470 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
1471
1472         * gc.c: use posix semaphores when possible so that
1473         mono_gc_finalize_notify() is signal safe.
1474
1475 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
1476
1477         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
1478         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
1479         be #ifdef-ed out, the linker will remove the rest.
1480
1481         * marshal.c: Implement DISABLE_COM.
1482
1483         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
1484
1485 2008-10-11  Miguel de Icaza  <miguel@novell.com>
1486
1487         * locales.c (string_invariant_compare_char): Optimization: do not
1488         call g_unichar_type unless we actually need the information.
1489
1490 2008-10-10  Mark Probst  <mark.probst@gmail.com>
1491
1492         * object.c, class-internals.h: Also create remoting trampolines
1493         for generic methods.  Pass the domain to the remoting trampoline
1494         creation function, too.
1495
1496 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
1497
1498         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
1499
1500 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1501
1502         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
1503         Vector4ui.
1504
1505 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1506
1507         * assembly.c:
1508         * locales.c: remove the use of g_strdown. Fixes bug #322313.
1509
1510 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
1511
1512         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
1513         for the least possible amount of time (extending the fix in r113458).
1514
1515 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1516
1517         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
1518
1519 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
1520
1521         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
1522         as possible simd intrinsic types.
1523         Optimized the test to check for the common prefix first.
1524
1525 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
1526
1527         * class.c: back out part of a broken optimization committed on
1528         May 23th (bug #433908).
1529
1530 2008-10-09  Mark Probst  <mark.probst@gmail.com>
1531
1532         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
1533         Win32.  Should fix #432388 for most cases until we have the new
1534         profiler on Win32.
1535
1536 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
1537
1538         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
1539         instead of using inst->id so the hash is stable for AOT.
1540
1541 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1542
1543         * appdomain.c:
1544         * icall.c: create a .ini file for shadow-copied assemblies that
1545         contains the location of the original assembly. Use this to return the
1546         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
1547         Also fix the number of '/' for windows when returning the CodeBase.
1548         Fixes bug #430920.
1549
1550 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1551
1552         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
1553
1554         Code is contributed under MIT/X11 license.
1555
1556 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1557
1558         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
1559           if if the class vtable needs initialized.
1560
1561         Code is contributed under MIT/X11 license.
1562
1563 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1564
1565         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
1566           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
1567           STRING->BSTR, and CLASS->INTERFACE.
1568
1569         Code is contributed under MIT/X11 license.
1570
1571 2008-10-07  Marek Habersack  <mhabersack@novell.com>
1572
1573         * sysmath.h: changed the declaration of the
1574         ves_icall_System_Math_Round2 icall by adding an extra
1575         away_from_zero parameter.
1576
1577         * sysmath.c (ves_icall_System_Math_Round2): added support for
1578         away from zero rounding. The icall now takes an extra boolean
1579         parameter to signal that away from zero operation is requested.
1580
1581 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
1582
1583         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
1584         the delegate klass so it can work with full-aot.
1585         (mono_marshal_get_delegate_end_invoke): Ditto.
1586         (mono_marshal_get_delegate_invoke): Ditto.
1587
1588 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
1589
1590         * gc.c, attach.h, attach.c: remove a bad pattern:
1591         add_finalizer_callback () is not implemented correctly, it can't
1592         without adding more overhead to the finalizer loop and it's not
1593         even needed, since we know exactly what we need to call, so there is
1594         no need to do so through an expensive function pointer.
1595
1596 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
1597
1598         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
1599         for the no-gc case.
1600         * attach.c (mono_attach_init): Remove the #ifdef.
1601
1602 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
1603
1604         * attach.c (mono_attach_init): Don't use
1605         mono_gc_add_finalizer_thread_callback when compiling without GC.
1606         Fixes #432306.
1607         
1608         Code is contributed under MIT/X11 license.
1609
1610 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
1611
1612         * class.c (mono_class_create_from_typedef): Remove the 
1613         #ifndef DISABLE_SIMD stuff.
1614
1615 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
1616
1617         * class-internals.h (MonoClass): Added simd_type bit field.
1618
1619         * class.c (mono_class_create_from_typedef): Check if type is a simd
1620         intrinsic.
1621
1622 2008-10-03  Mark Probst  <mark.probst@gmail.com>
1623
1624         * object.c (mono_method_add_generic_virtual_invocation): Only add
1625         instantiations to the thunk whose count is at least as large as
1626         the threshold.
1627
1628 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1629
1630         * icall.c: changed the Type of the exception thrown when trying to
1631         invoke a constructor on an abstract class. Part of the fix for bug
1632         #324185.
1633
1634 2008-10-02  Mark Probst  <mark.probst@gmail.com>
1635
1636         * class.c, class-internals.h (mono_method_get_vtable_index): New
1637         function which returns the index into the vtable and properly
1638         handles inflated virtual generic methods.
1639
1640 2008-10-01  Mark Probst  <mark.probst@gmail.com>
1641
1642         * object.c, domain.c, object-internals.h, domain-internals.h:
1643         Generalize IMT thunk machinery to also handle thunks for virtual
1644         generic method invokes.  When a virtual generic method is invoked
1645         more than a number of times we insert it into the thunk so that it
1646         can be called without lookup in unmanaged code.
1647
1648         * generic-sharing.c, class-internals.h: Fetching a
1649         MonoGenericInst* for a method from an (M)RGCTX.
1650
1651 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
1652
1653         * marshal.c (emit_marshal_string): Applied a variant of a patch by
1654         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
1655         marshalling. Fixes #431304.
1656
1657 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
1658
1659         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
1660           handle when ref is specified without In or Out.
1661
1662         Code is contributed under MIT/X11 license.
1663
1664 2008-09-30  Mark Probst  <mark.probst@gmail.com>
1665
1666         * loader.c (mono_get_method_constrained): Don't expand method with
1667         the class's context, because it's already a method of that class.
1668
1669 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
1670
1671         * attach.c : should be correct build fix.
1672
1673 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
1674
1675         * attach.c: Fix the previous change.
1676
1677 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
1678
1679         * attach.c : quick w32 build fix.
1680
1681 2008-09-27  Miguel de Icaza  <miguel@novell.com>
1682
1683         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
1684         crashes MonoDevelop: #430455.
1685
1686 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
1687
1688         * domain-internals.h (struct _MonoDomain): Move most fields used only by
1689         the JIT do MonoJitDomainInfo in ../mini/mini.h.
1690
1691         * domain.c: Remove initialization/cleanup of the removed fields.
1692
1693 2008-09-27  Mark Probst  <mark.probst@gmail.com>
1694
1695         * class.c (mono_class_generic_sharing_enabled): Enable generic
1696         code sharing for PPC.
1697
1698 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
1699
1700         * attach.c : Fixing the Windows builds.
1701
1702         Code is contributed under MIT/X11 license.
1703
1704 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
1705
1706         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
1707         the default generic sharing mode to 'all'.
1708
1709 2008-09-25  Mark Probst  <mark.probst@gmail.com>
1710
1711         * generic-sharing.c, class-internals.h: New function for checking
1712         whether a method needs a static RGCTX invoke wrapper.  A few
1713         funtions moved from mini/generic-sharing.c.
1714
1715         * icall.c: New function used.
1716
1717 2008-09-25  Mark Probst  <mark.probst@gmail.com>
1718
1719         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
1720         Static RGCTX invoke wrapping applies to value type methods, too.
1721
1722         * class.c (mono_class_setup_vtable_general): In generic-shared
1723         value types, wrap methods with a static RGCTX invoke wrapper.
1724
1725 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
1726
1727         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
1728         osx build.
1729
1730 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
1731
1732         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
1733         register a callback which is called when the finalizer thread is woken
1734         up.
1735         (finalizer_thread): Call the callback if it exists.
1736
1737         * attach.h attach.c: New files, implementing the attach mechanism.
1738
1739         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
1740         
1741         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
1742         by the previous change.
1743
1744 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
1745
1746         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
1747         loader.c, marshal.c, metadata-internals.h, metadata.c,
1748         method-builder.c, object.c, reflection.c: introduced specific functions
1749         to allocate from the domain and image mempools and cleaned up most of
1750         the code to use them (still missing a few in reflection.c).
1751         Keep the loader bytes counter updated.
1752
1753 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
1754
1755         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
1756         loader-related counters.
1757
1758 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
1759
1760         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
1761         added more MS-compatible counters.
1762
1763 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
1764
1765         * class.c (mono_class_setup_fields): Call setup_fields before accessing
1766         class->blittable. Fixes #428217.
1767
1768 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
1769
1770         * reflection.c (mono_image_get_field_on_inst_token): Call 
1771         field_encode_signature () since that handles custom modifiers too.
1772         Fixes #424663.
1773
1774 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
1775
1776         * reflection.c (add_custom_modifiers): New helper function to merge custom
1777         modifiers stored in objects to a MonoType.
1778         (fieldref_encode_signature): Encode custom modifiers.
1779         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
1780         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
1781
1782 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
1783
1784         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
1785         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
1786         64-bit IL only images because imports are not resolved for IL only images.
1787         Special thanks to Bill Holmes for finding this bug and testing the patch.
1788         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
1789
1790         Contributed under MIT/X11 license.
1791
1792 2008-09-19  Miguel de Icaza  <miguel@novell.com>
1793
1794         * mono-config.c (dllmap_start): Add support for the bits keyword
1795         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
1796
1797 2008-09-19  Mark Probst  <mark.probst@gmail.com>
1798
1799         * reflection.c (inflate_mono_method): When the class the method is
1800         to be inflated for is itself not inflated, just return the method.
1801
1802 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
1803
1804         * mono-perfcounters.c: use more user friendly process instance names.
1805
1806 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
1807
1808         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
1809           handle "[in] ref" and "[in][out] ref" cases.
1810
1811         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
1812           to mono_mb_create_method.  This was causing problems calling native to
1813           managed passing Variants by value.
1814
1815         Code is contributed under MIT/X11 license.
1816
1817 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
1818
1819         * class.c (can_access_internals): Call mono_assembly_load_friends ()
1820         before accessing the friend_assembly_names field.
1821
1822         * assembly.c (mono_assembly_load_friends): Make this callable multiple
1823         times.
1824         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
1825         called lazily when it is needed.
1826
1827         * metadata-internals.h (struct _MonoAssembly): Add 
1828         'friend_assembly_names_inited' flag.
1829
1830 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
1831
1832         * mono-perfcounters-def.h: fix the types of a few counters.
1833         * mono-perfcounters.c: implemented the instance names getter
1834         and a few bugfixes.
1835
1836 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
1837
1838         * culture-info-table.h : regenerated.
1839
1840 2008-09-17  Robert Jordan  <robertj@gmx.net>
1841
1842         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
1843         context bound objects. Fixes #415577.
1844
1845         Code is contributed under MIT/X11 license.
1846
1847 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
1848
1849         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
1850         implementation (bug #423582).
1851
1852 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
1853
1854         * object.c (mono_object_get_virtual_method): Handle the case method->slot
1855         is not set. Fixes #426309.
1856
1857 2008-09-16  Jb Evain  <jbevain@novell.com>
1858
1859         * class.c (mono_class_from_name): fix the exported type look up
1860         when the type is defined in a referenced assembly.
1861
1862 2008-09-16  Jb Evain  <jbevain@novell.com>
1863
1864         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
1865         increment the next index counter on each iteration to make that work
1866         for more than one type forwarder. Unmanaged part to fix #422929.
1867
1868 2008-09-15  Mark Probst  <mark.probst@gmail.com>
1869
1870         * object-internals.h: enum ComInterfaceType in
1871         MonoInterfaceTypeAttribute is guint32, not guint16.
1872
1873 2008-09-12  Mark Probst  <mark.probst@gmail.com>
1874
1875         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
1876         writing code.
1877
1878 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1879
1880         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
1881         not gboolean.
1882
1883 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1884
1885         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
1886         Endianness fixes for MonoSymbolFileOffsetTable.
1887
1888 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1889
1890         * process.c (complete_path) : Removing quotes from the 
1891           input path.  The glib file routines do not handle file paths
1892           that have quotes around them.
1893
1894         Code is contributed under MIT/X11 license.
1895
1896 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1897
1898         * socket-io.h : Adding a comment to provide locations where 
1899           changes to MonoSocketAsyncResult need to be synced.
1900
1901         Code is contributed under MIT/X11 license.
1902
1903 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
1904
1905         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
1906         parameters as well. Fixes #425001.
1907
1908 2008-09-08  Miguel de Icaza  <miguel@novell.com>
1909
1910         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
1911         windows build.
1912
1913 2008-09-07  Miguel de Icaza  <miguel@novell.com>
1914
1915         * console-io.c: Add support for tracking the window size if it
1916         changes.
1917
1918         The setup is very simple: the TtySetup function will now return a
1919         pointer to a location in memory that tracks the current console
1920         size.  The managed code checks its current value every time its
1921         queried against the last value set, and updates accordingly.
1922
1923         With this setup we can work with multiple consoles, and we do not
1924         require to poke into managed code from a signal handler.
1925
1926         Additionally, the environment for COLUMNS and LINES is now handled
1927         in unmanaged code.
1928
1929         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
1930
1931 2008-09-07  Mark Probst  <mark.probst@gmail.com>
1932
1933         * marshal.c (mono_type_native_stack_size): Treat
1934         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
1935
1936 2008-09-04  Jb Evain  <jbevain@novell.com>
1937
1938         * class.c (mono_class_is_assignable_from): fix assignability of nullables
1939         to nullables.
1940
1941 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
1942
1943         * verify.c (verify_type_compatibility_full): Revert change
1944         to allow converting a native int to unmanaged pointer be verifiable
1945         under non-strict mode.
1946         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
1947
1948         * verify.c: Added some TODOs.
1949
1950 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
1951
1952         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
1953           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
1954           Changed to use GlobalAlloc for the memory returned on Windows platforms.
1955
1956         Code is contributed under MIT/X11 license.
1957
1958 2008-09-02  Jb Evain  <jbevain@novell.com>
1959
1960         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
1961
1962 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
1963
1964         reflection.c (typebuilder_setup_fields): Handle classes with
1965         explicit size.
1966
1967 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
1968
1969         class.c (mono_class_setup_events): Add memory barrier due to
1970         double checked locking.
1971         
1972         class.c (mono_class_setup_properties): Same.
1973
1974 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
1975
1976         * class.c (mono_class_is_assignable_from): Fix the build.
1977         
1978         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
1979         before accessing klass->interface_bitmap. Fixes #421744.
1980
1981 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
1982
1983         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
1984         the runtime into no-exec mode, useful when running the AOT compiler.
1985
1986         * appdomain.c gc.c object.c: Avoid executing managed code when running
1987         in no-exec mode.
1988         
1989         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
1990
1991         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
1992         special case when the mono_assembly_loaded () returns NULL because the 
1993         search hook is not installed.
1994
1995 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
1996
1997         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
1998         crashes in bstr marshalling on linux.
1999
2000 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
2001
2002         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
2003         with more than one parameter.
2004
2005 2008-08-24  Miguel de Icaza  <miguel@novell.com>
2006
2007         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
2008         start/stop flow control as well when turning off ICANON (allows
2009         C-s and C-q to be read by Console.ReadKey).
2010
2011 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
2012
2013         * class.c (mono_class_init): Move the initialization of nested classes
2014         into mono_class_get_nested_types (). Fixes #418433.
2015
2016         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
2017         flag.
2018
2019         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
2020         iterating tough the nested classes of a class.
2021
2022 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
2023
2024         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
2025         on arm.
2026
2027 2008-08-22  Miguel de Icaza  <miguel@novell.com>
2028
2029         * console-io.c (sigcont_handler): Support signal chaining for
2030         SIGCONT.
2031
2032         (console_set_signal_handlers): Use best practices with sigaction,
2033         clear the structure before using it. 
2034
2035 2008-08-22  Robert Jordan  <robertj@gmx.net>
2036
2037         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
2038         Fix the Windows build.
2039
2040 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
2041
2042         * class.c (mono_class_generic_sharing_enabled): Make the default
2043         sharing mode 'corlib'.
2044
2045 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
2046
2047         * console-io.c (console_set_signal_handlers): Fix a warning.
2048
2049         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
2050         method normally, the JIT will take care of avoiding recursion.
2051
2052 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
2053
2054         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
2055
2056         Code is contributed under MIT/X11 license.
2057
2058 2008-08-20  Miguel de Icaza  <miguel@novell.com>
2059
2060         * console-io.c (sigcont_handler): We need to restore the entire
2061         termios state, not only the original settings, as things like echo
2062         can be controlled after this (Booish exposes this issue with its
2063         own ReadLine implementation).
2064
2065         Additionally, we need to set the terminal back into keypad_xmit
2066         mode.
2067         
2068         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
2069         string as a paramter as well.   Otherwise we get different
2070         keyboard sequences.
2071
2072 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
2073
2074         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
2075         delegates with byref out parameter passing. Fixes #351520.
2076
2077         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
2078         a generic context.
2079         (mono_type_get_desc): Add the type arguments for GENERICINST.
2080         (mono_method_full_name): Stringify the class name using mono_type_full_name
2081         so it picks up generic arguments.
2082
2083 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
2084
2085         * console-io.c: Removed debug output.
2086
2087 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
2088
2089         reflection.c (mono_reflection_create_runtime_class): Alloc
2090         the nested classes linked list using the dynamic image mempool.
2091         Fixes leak in corlib compilation.
2092
2093 2008-08-19  Miguel de Icaza  <miguel@novell.com>
2094
2095         * console-io.c: Fix incredibly annoying behavior on the console
2096         after resuming execution after control-z.   This affected every
2097         console application.
2098
2099 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
2100
2101         * mempool-internals.h: Header for mono private mempool functions. The first
2102         two function are for allocating glib linked lists using pools.
2103
2104         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
2105
2106         * Makefile.am: Added mempool-internals.h.
2107
2108 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
2109
2110         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
2111         (mono_domain_free): Ditto.
2112
2113         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
2114         be used by the JIT to store its domain-specific information, instead of putting
2115         it directly into MonoDomain.
2116
2117         * domain.c (mono_install_create_domain_hook): New helper function to install
2118         a hook which initializes domain->runtime_info.
2119
2120         * domain.c (mono_install_free_domain_hook): Ditto.
2121         
2122 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
2123
2124         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
2125         asserting if the ares parameter is null.
2126
2127         * mono-perfcounters.c: Fix warnings.
2128
2129         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
2130         is not needed, don't check for interruptions either.
2131         (mono_marshal_get_delegate_end_invoke): Ditto.
2132
2133 2008-08-15  Marek Habersack  <mhabersack@novell.com>
2134
2135         * mono-perfcounters.c (predef_readonly_counter): added support for
2136         reading the ASP.NET Requests Queued counter from another process.
2137
2138 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
2139
2140         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
2141         MonoImage to simplify the AOT code.
2142
2143 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
2144
2145         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
2146         marshalling. Fixes #416078.
2147
2148 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
2149         
2150         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
2151         it is set, looking up the icall address is deferred to the JIT, since 
2152         in embedded scenarios, the icall might not be registered in the runtime
2153         doing the AOT compilation. Backported from the 2.0 branch.
2154
2155 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
2156
2157         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
2158         Fixes #415621.
2159
2160 2008-08-05  Marek Habersack  <mhabersack@novell.com>
2161
2162         * Makefile.am: added support for cross-compilation.
2163
2164 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
2165
2166         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
2167
2168 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
2169
2170         * mono-perfcounters.c: jitted methods and jitted bytes counters.
2171
2172 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
2173
2174         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
2175         mono-perfcounters.c: performance counters implementation.
2176
2177 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
2178
2179         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
2180         to gpointer, letting the AOT code decide what to store in it.
2181
2182 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
2183
2184         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
2185           mono_class_setup_methods if the methods are not initialized.
2186
2187         Code is contributed under MIT/X11 license.
2188
2189 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
2190
2191         * verify.c: Remove some debug code I commited by accident.
2192
2193         * verify.c (mono_method_is_valid_in_context): Change the return value
2194         to make possible to distinguish between invalid and unverifiable.
2195
2196         * verify.c (verifier_load_method): Don't return NULL for unverifiable
2197         methods.
2198
2199 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
2200
2201         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
2202         constraints. Fixes regression in gtest-253.
2203
2204 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
2205
2206         * verify.c (mono_verifier_verify_class): Don't allow generic types
2207         with explicit layout.
2208
2209         * verify.c (mono_method_verify): Check locals and argument types.
2210
2211 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
2212
2213         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
2214         wait if the thread is in StopRequested state.
2215
2216         * class.c (mono_class_from_name): Refactor the module searching code into
2217         a separate function so it can be reused in the AOT case too.
2218
2219 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2220
2221         * verify.c (mono_type_is_valid_in_context): Improve the error message.
2222         Check both the type and it's generic type definition for loader errors.
2223         
2224         * verify.c (mono_method_is_valid_in_context): Don't generate another
2225         error when a type errors occur, this leads to the wrong exception been
2226         thrown.
2227
2228 2008-07-28  Dick Porter  <dick@ximian.com>
2229
2230         * icall-def.h
2231         * process.c
2232         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
2233         New internal calls to duplicate and close a process handle.
2234
2235 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
2236
2237         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
2238
2239 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
2240
2241         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
2242
2243 2008-07-27  Robert Jordan  <robertj@gmx.net>
2244
2245         * class.c (mono_class_init): Don't compute class.has_finalize for
2246         valuetypes. Fixes #412477.
2247
2248 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
2249
2250         * verify.c: Implement constraint equivalence checking.
2251         This is required when a generic parameter is used as
2252         argument to a constrained one.
2253
2254         Fixes #410637.
2255
2256 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
2257
2258         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2259
2260         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
2261
2262         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
2263         synch with managed object layout.
2264
2265 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
2266
2267         * verify.c (do_branch_op): Handle valuetypes and generic
2268         arguments properly.
2269
2270         * verify.c (do_cmp_op): Same.
2271
2272         Fixes #410383.
2273
2274 2008-07-24  Mark Probst  <mark.probst@gmail.com>
2275
2276         * generic-sharing.c: Fix memory leaks.
2277
2278         * class.c, class-internals.h: Make
2279         mono_class_inflate_generic_type_with_mempool() non-static.
2280
2281 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
2282
2283         * pedump.c (dump_verify_info): Dump full class name.
2284
2285 2008-07-24  Mark Probst  <mark.probst@gmail.com>
2286
2287         * generic-sharing.c: Removed some old code that didn't do anything.
2288
2289 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
2290         * profiler.c: Added runtime_initialized_event,
2291         mono_profiler_install_runtime_initialized and
2292         mono_profiler_runtime_initialized. This new hook tells the profiler
2293         when the runtime is sufficiently initialized to be able to call
2294         mono_thread_attach on the root appdomain.
2295         * profiler.h, profiler-private.h: Likewise.
2296
2297 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
2298
2299         * verify.c (do_cast): Do boxing for generic arguments as well.
2300
2301         * class.c (is_nesting_type): Drop generic instantiations before
2302         checking for nesting.
2303
2304         * class.c (can_access_instantiation): Allow access to generic
2305         arguments.
2306
2307 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
2308
2309         * verify.c (verify_class_for_overlapping_reference_fields):
2310         On some cases, the field size might be zero, guard against that.
2311         Fix the explicit layout check to work as expected.
2312
2313 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
2314
2315         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
2316         mono_thread_resume () during shutdown, since the thread we want to abort
2317         might be suspended.
2318
2319 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
2320
2321         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
2322         warning.
2323
2324         * debug-mono-symfile.c: Fix a warning.
2325
2326         * mono-perfcounters.c (get_cpu_times): Fix a warning.
2327
2328         * object.c (mono_class_vtable): Check if exception_type is set, and return
2329         NULL as defined by the function comments.
2330
2331 2008-07-22  Mark Probst  <mark.probst@gmail.com>
2332
2333         * mempool.c: Use malloc for every single mempool allocation if the
2334         configure option is set.  This makes it easier to track mempool
2335         allocations with tools like Valgrind.
2336
2337 2008-07-22  Jb Evain  <jbevain@novell.com>
2338
2339         * reflection.c (create_dynamic_mono_image): emit the same
2340         metadata version that SL2 does when creating a SL2 image.
2341
2342 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
2343
2344         * icall-def.h:
2345         * icall.c: New icall System.Enum:get_hashcode. This function
2346         avoids the overhead of boxing the enum to the underlying type.
2347
2348 2008-07-21  Mark Probst  <mark.probst@gmail.com>
2349
2350         * reflection.c (mono_method_get_object): Don't let static RGCTX
2351         invoke wrappers get into MonoReflectionMethods.
2352
2353 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
2354
2355         * object-internals.h:
2356         * object.c: New mono_runtime_class_init_full function
2357         that makes throwing the exception optinal.
2358
2359         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
2360         for the case where the exception object is supplied.
2361
2362 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
2363
2364         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
2365         old ld versions.
2366
2367         Contributed under MIT/X11 license.
2368
2369 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2370
2371         * string-icalls.c (ves_icall_System_String_InternalSplit):
2372         Optimize array allocation by caching the MonoClass of the
2373         array type.
2374
2375         * icall.c (ves_icall_Type_GetMethodsByName): Same.
2376
2377         * reflection.c (mono_param_get_objects): Same.
2378
2379 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2380
2381         * icall-def.h:
2382         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
2383         It inflates the given type using the class context.
2384
2385 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2386
2387         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
2388         the vtable if it already exists.
2389
2390         * object-internals.h: Add mono_class_try_get_vtable as part of the
2391         internal API.
2392
2393         * reflection.c (mono_type_get_object): Use the MonoObject from the
2394         vtable when possible. Reduces locking contention on reflection heavy
2395         code.
2396
2397 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
2398
2399         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
2400         g_bit_nth_msf () since that macro is not implemented in eglib.
2401
2402 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
2403
2404         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
2405         on platforms which do not support it.
2406
2407 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
2408
2409         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
2410
2411 2008-07-11  Martin Baulig  <martin@ximian.com>
2412
2413         * mono-debug-debugger.h
2414         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
2415
2416         * mono-debug-debugger.c
2417         (_mono_debugger_interruption_request): New global volatile variable.
2418         (mono_debugger_check_interruption): New public function.
2419
2420         * threads.c
2421         (mono_thread_current_check_pending_interrupt): Call
2422         mono_debugger_check_interruption().
2423         (mono_thread_interruption_checkpoint_request): Likewise.
2424
2425 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2426
2427         * verify.c: Add more type checks for loaded types. Verify the result
2428         handle from ldtoken.
2429
2430 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2431
2432         * loader.c (field_from_memberref): Don't crash if the field
2433         wasn't found.
2434
2435 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2436
2437         * verify.c: Verify if type and method instantiations
2438         don't have invalid VAR or MVAR arguments.
2439
2440 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2441
2442         * verify.c: Fix double free of function pointer list.
2443
2444 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2445
2446         * object.c (mono_string_to_utf8): Comment the new code as it
2447         breaks under eglib.
2448
2449 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
2450
2451         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
2452
2453 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
2454
2455         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
2456           is not throw too many times.
2457
2458         Code is contributed under MIT/X11 license.
2459
2460 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
2461
2462         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
2463         debugging is turned off.
2464
2465 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
2466
2467         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
2468
2469 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2470
2471         * class-internals.h, class.c: Added new generic sharing option:
2472         Share only stuff in System.Collections.Generic, which is now the
2473         default.
2474
2475 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2476
2477         * generic-sharing.c, class-internals.h: New function for getting a
2478         generic method in a generic class given the corresponding method
2479         for a different instantiation of the class.  Partly refactored
2480         from mini-trampolines.c.
2481
2482         * class.c: Make sure generic methods have a class_inst if they are
2483         part of a generic class.
2484
2485         * metadata.c (mono_type_stack_size_internal): Handle type
2486         variables.
2487
2488 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2489
2490         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
2491         Signifies whether information on the this/vtable/mrgctx variable
2492         is available.
2493
2494 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2495
2496         * object.c, object-internals.h, icall.c: New function
2497         mono_delegate_ctor_with_method(), which does the same as
2498         mono_delegate_ctor(), but takes an explicit method argument
2499         instead of taking the method from the jit info.
2500
2501         * marshal.c: When creating a delegate with an inflated method take
2502         the "this" argument as the target class for the castclass.
2503
2504 2008-07-03  Mark Probst  <mark.probst@gmail.com>
2505
2506         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
2507         mono_jit_info_table_find() to perform very badly in some cases.
2508
2509 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
2510
2511         * icall.c (type_from_typename): Handle 'string'.
2512
2513         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
2514         wrappers into the wrapper_hash, since the key is not a MonoMethod.
2515
2516 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
2517
2518         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
2519
2520         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
2521         number of available managed allocator types.
2522
2523         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
2524         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
2525
2526 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
2527
2528         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
2529         which is a low level lock protecting just the 'jit_code_hash' hash table.
2530
2531         * domain.c: Initialize+cleanup jit_code_hash_lock.
2532         
2533 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
2534
2535         * coree.c (mono_load_coree): Set coree_module_handle global variable only
2536         after initialization.
2537
2538         * coree.h: Make MonoFixupExe internal.
2539
2540         Contributed under MIT/X11 license.
2541
2542 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
2543
2544         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
2545         because that is platform independent. Check NumberOfRvaAndSizes in PE32
2546         as well.
2547         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
2548         image being loaded is a CLI image and _CorValidateImage gets called.
2549
2550         * coree.h: Add MonoLoadImage.
2551
2552         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
2553         instead of LoadLibrary.
2554
2555         Contributed under MIT/X11 license.
2556
2557 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
2558
2559         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
2560         for any primitive type.
2561
2562 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
2563
2564         * object.c (mono_array_new_specific): Optimize this and the other allocation
2565         functions a bit.
2566         
2567         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
2568         domains too if mono_dont_free_domains is set.
2569
2570         * domain-internals.h (mono_dont_free_domains): New internal option controlling
2571         whenever to free appdomain data after it has been unloaded.
2572
2573         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
2574         
2575 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
2576
2577         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
2578         (mono_method_get_equivalent_method): Fix a warning.
2579
2580         * object.c (mono_message_init): Avoid looking up array types for each call.
2581
2582 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
2583
2584         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
2585         call.
2586
2587         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
2588         even more.
2589
2590         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
2591         each iteration.
2592
2593         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
2594         fields of an enum.
2595
2596 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2597
2598         * object.c (mono_value_box): Fix boxing of nullables.
2599
2600 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
2601
2602         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
2603         mono_module_handle that is defined by the linker; no initialization required.
2604         * coree.h: Remove mono_module_handle, add __ImageBase, update
2605         mono_image_open_from_module_handle.
2606         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
2607         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
2608         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
2609         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
2610         to 4 GB away from image base address. IA64 version is not tested but was very
2611         easy to implement and should work if we ever need it.
2612         * domain.c (mono_init_internal): Avoid system error message boxes.
2613         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
2614         with has_entry_point. Handle do_mono_image_load fauilre correctly.
2615         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
2616         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
2617         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
2618
2619         Contributed under MIT/X11 license.
2620
2621 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2622
2623         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
2624         as part of the private mono API.
2625         
2626         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
2627         Do proper argument checking for methods that belong to generic classes.
2628         Do proper type resolution for GMFH/2.
2629         Fixes #377324.
2630         
2631 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2632
2633         * verify.c (do_switch): Fix a memory corruption bug with
2634         the jump index is out of bound.
2635
2636 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2637
2638         * verify.c: Disable debug code.
2639
2640 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2641
2642         * reflection.c (mono_image_get_methodbuilder_token): Use
2643         mono_image_get_methodspec_token_for_generic_method_definition
2644         instead of mono_image_get_memberref_token. We cache more memberef
2645         entries now.
2646
2647 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2648
2649         * verify.c: Inflate exception clause types.
2650         Fixes #402606.
2651         
2652 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2653
2654         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
2655         name.
2656
2657         * reflection.c (mono_image_get_ctorbuilder_token): Same.
2658
2659         * reflection.c (mono_image_create_method_token): Same.
2660
2661 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2662
2663         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
2664         It does the same as mono_image_get_methodref_token but works on
2665         MethodBuilder.
2666
2667         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
2668         and always generate a methodspec. This follows the old behavior and fixes
2669         the regressions in System.Core. 
2670
2671 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
2672
2673         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
2674         don't event mono_class_get () succeeds. Fixes #402182.
2675
2676 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
2677
2678         * metadata-internals.h: Added MonoDynamicImage::methodspec
2679         hashtable to store methodspec tokens created for MethodBuilders.
2680
2681         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
2682         MethodBuilders as open instantiations if a methodspec was requested.
2683
2684         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
2685
2686         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
2687
2688         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
2689
2690         Fixes bug #349190.
2691
2692 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
2693
2694         * loader.c (method_from_methodspec): Avoid crashing if the
2695         method lookup fails.
2696
2697 2008-06-20  Dick Porter  <dick@ximian.com>
2698
2699         * socket-io.c (get_socket_assembly): Cope with Moonlight network
2700         classes being in a different assembly.  Fixes bug 399184.
2701
2702 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
2703
2704         * loader.c (mono_loader_init): Make this callable multiple times.
2705         (mono_dllmap_insert): Call mono_loader_init () so this works even before
2706         the runtime is initialized. Fixes #401755.
2707
2708 2008-06-19  Dick Porter  <dick@ximian.com>
2709
2710         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
2711         Fixes bug 349688.
2712
2713 2008-06-19  Dick Porter  <dick@ximian.com>
2714
2715         * socket-io.c:
2716         * icall-def.h: Implement Socket generic Send() and Receive()
2717         methods.  Fixes bug 395168.
2718
2719 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
2720
2721         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
2722
2723         Contributed under MIT/X11 license.
2724
2725 2008-06-18  Martin Baulig  <martin@ximian.com>
2726
2727         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
2728         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
2729         set to 80.0.  The debugger <-> runtime interface is now frozen as
2730         well.   
2731
2732         * mono-debug.c
2733         (mono_debug_debugger_version): Bump to 4.
2734
2735 2008-06-18  Martin Baulig  <martin@ximian.com>
2736
2737         * debug-mono-symfile.c
2738         (load_symfile): Don't check the minor version.
2739
2740         * debug-mono-symfile.h: Bump the version number to 50.0.
2741
2742 2008-06-18  Martin Baulig  <martin@ximian.com>
2743
2744         * debug-mono-symfile.c
2745         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
2746         minimum required version.
2747
2748 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
2749
2750         * reflection.c (mono_custom_attrs_from_property): Fix support for
2751         retriveving cattrs of dynamic inflated generic types.
2752
2753         * reflection.c (mono_custom_attrs_from_event): Same.
2754
2755         * reflection.c (mono_custom_attrs_from_field): Same;
2756
2757         * reflection.c (typebuilder_setup_events): Same cattrs of events.
2758
2759         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
2760         Moved to metadata.c.
2761
2762         * metadata.c: New functions to retrive the equivalent field, event
2763         of property from the generic type definition.
2764
2765         * metadata-internals.h: Added new functions from metadata.c.
2766
2767 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
2768
2769         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
2770         to cached in a mempool is used.
2771
2772         * metadata.c (free_generic_class): In some situations field generic_info type
2773         is not properly dup'ed and leads to double free'ing.
2774
2775         Fixes #400643.
2776
2777 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2778
2779         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
2780         this arguments (will be needed later for generic methods).
2781         Collect stats.
2782
2783 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2784
2785         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
2786         Create a static RGCTX invoke wrapper for methods which require it.
2787
2788 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2789
2790         * object.c, class-internals.h: New function for checking whether
2791         an individual field is special static.
2792
2793 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
2794
2795         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
2796         linear search since the table is sorted.
2797
2798         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
2799         Fixes #324180.
2800
2801 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
2802
2803         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
2804         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
2805
2806         * gc.c (mono_domain_finalize): Allow an infinite timeout.
2807
2808         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
2809         
2810         * threads.c (mono_thread_request_interruption): Get rid of locking, use
2811         InterlockedCompareExchange to query and modify 
2812         thread->interruption_requested.
2813
2814         * object-internals.h (struct _MonoThread): Change interruption_requested
2815         to a gint32 so it can be modified by atomic operations. Add 
2816         'critical_region_level' from the managed side, change small_id to a guint32,
2817         add new set of 'unused' fields.
2818
2819         * appdomain.c: Bump corlib version.
2820
2821 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
2822
2823         * class.c (mono_class_from_name): Search modules as well. Fixes
2824         #322332.
2825
2826 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2827
2828         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
2829         templates.  Templates are generalized with an additional type_argc
2830         argument.  RGCTX templates have type_argc==0, MRGCTX templates
2831         have type_argc>0.
2832
2833         * domain-internals.h, domain.c: New hash table for looking up
2834         MRGCTXs.
2835
2836         * metadata.c, metadata-internals.h: Rename hash and equal
2837         functions for MonoGenericInst's and make them public.
2838
2839         * class-internals.h: New data structures for the MRGCTX.  Macros
2840         for distinguishing slots in the RGCTX and the MRGCTX.
2841
2842 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2843
2844         * object.c (mono_method_get_imt_slot): Put the same methods of
2845         different instantiations of the same generic interface in the same
2846         IMT slots, to make generic sharing simpler.
2847
2848 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2849
2850         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
2851
2852         * metadata.c (mono_metadata_field_info_with_mempool): Added.
2853         This function works just like mono_metadata_field_info, but
2854         accept a mempool as argument to be used allocating memory.
2855
2856         * marshal.c (mono_marshal_load_type_info): Use new function
2857         to load marshal data into image mempool.
2858
2859 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2860
2861         * class.c (mono_class_inflate_generic_type_with_mempool):
2862         This function allows to inflate a generic type using
2863         a mempool.
2864
2865         * class.c (inflate_generic_type): Take a mempool as argument
2866         and use it to do type dup'ing.
2867
2868         * class.c (mono_class_setup_fields): Field type for generic
2869         generic classes are allocated from the image mempool.
2870
2871         * metadata.c (free_generic_class): Inflated field type is
2872         now allocated in the image mempool.
2873
2874 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2875
2876         * threads.c (thread_cleanup): Free MonoThread::name.
2877
2878 2008-06-12  Marek Habersack  <mhabersack@novell.com>
2879
2880         * appdomain.c (ensure_directory_exists): avoid unnecessary
2881         mkdir(2) calls when the shadow directory already exists.
2882         (mono_make_shadow_copy): copy also satellite assemblies from the
2883         private bin directories.
2884
2885 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2886
2887         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
2888         
2889         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
2890         a page boundary. Fixes #396219.
2891
2892 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2893
2894         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
2895         due to double-checked locking.
2896
2897 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2898
2899         * assembly.c (build_assembly_name): Release memory on failure.
2900
2901         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
2902
2903 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2904
2905         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
2906         memory on failure.
2907
2908 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2909
2910         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
2911         memory on failure.
2912
2913 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2914
2915         * loader.c (field_from_memberref): Check if field signature type is equal
2916         to the non-inflated type of the field. Fixes #398980.
2917
2918 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2919
2920         * assembly.c (mono_assembly_load_from_full): Call 
2921         mono_assembly_load_friends () outside the assemblies lock, since it can
2922         acquire the loader lock. Fixes #323696.
2923
2924         * reflection.c (resolve_object): Inflate the inst with the context for
2925         FieldOnTypeBuilderInst. Fixes #399010.
2926
2927 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2928
2929         * reflection.c (mono_image_get_field_on_inst_token): Don't
2930         inflate the field to encode it's signature. If it's a
2931         VAR or MVAR it should stay that way in the signature.
2932         Fixes #399047.
2933
2934 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2935
2936         * reflection.c (resolve_object): Release memory of inflated types.
2937
2938 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2939
2940         * loader.c (mono_method_get_signature_full): Remove assert about
2941         loading a methodspec to a generic method. We have such methods, such as
2942         System.Threading.Interlocked::CompareExchange<T>.
2943         This assert was removed since it crashes the verifier when it checks
2944         methods calling CompareExchange<T>.
2945
2946 2008-06-10  Marek Safar  <marek.safar@gmail.com>
2947
2948         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
2949         of Type array and not MonoType.
2950
2951 2008-06-10  Marek Habersack  <mhabersack@novell.com>
2952
2953         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
2954         <lupus@ximian.com>
2955
2956 2008-06-10  Martin Baulig  <martin@ximian.com>
2957
2958         * debug-mono-symfile.h
2959         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
2960         changes to the file format, but we were generating incorrect
2961         source file indices in the line number table due to a bug, which
2962         made backtraces report an incorrect source file.
2963
2964 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2965
2966         * mono-debug.c: Moved mono_debug_free_method_jit_info from
2967         mini/debug-mini.c to here.
2968
2969         * mono-debug.c (il_offset_from_address): Free memory from find_method.
2970
2971         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
2972         use it to release structs returned by mono_debug_find_method.
2973
2974 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
2975
2976         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
2977         since it needs to set method->slot for all interface methods.
2978
2979 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2980
2981         * class-internals.h: Forgot to add.
2982
2983 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2984
2985         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
2986
2987         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
2988         Lookup the custom attributes from property_hash.
2989
2990         * reflection.c (mono_save_custom_attrs): Save the custom attributes
2991         in property_hash. Allocate all data using the image mempool.
2992
2993         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
2994         for dynamic_custom_attrs to checks if the image is dynamic.
2995
2996 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2997
2998         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
2999         assemblies array.
3000         
3001         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
3002         runtime functions while holding the domain assemblies lock.
3003
3004 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3005
3006         * verify.c: Reapplied the last bit of the reverted changes.
3007
3008 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3009
3010         * verify.c: Reapplied more of the reverted changes.
3011
3012 2008-06-09  Martin Baulig  <martin@ximian.com>
3013
3014         * debug-mono-symfile.c (load_symfile): Check the major version
3015         first; if it's wrong, don't print the minor version in the error message.
3016
3017 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
3018
3019         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
3020         lock instead of the domain lock to avoid deadlocks, since the thread might
3021         already hold the loader lock.
3022
3023         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
3024         (mono_thread_attach): Ditto.
3025
3026         * monitor.c: Use a TLS variable for holding the current thread id instead
3027         of calling pthread_self ().
3028         (mono_monitor_init_tls): New internal function to initialize the TLS
3029         variable.
3030         (mono_monitor_try_enter_internal): Put the owner == id check after the
3031         owner == 0 check.
3032
3033         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
3034         missed optimizations when using gcc-4.3.
3035
3036 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
3037
3038         * reflection.c (mono_dynamic_image_free): Free the memory
3039         used by MonoGenericParam in MonoDynamicImage::gen_param.
3040
3041         * reflection.c (mono_reflection_setup_generic_class): Allocate
3042         container from mempool.
3043
3044         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
3045         container from mempool.
3046
3047 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
3048
3049         * threads.c (mono_set_pending_exception): New internal function to set the
3050         pending exception of the current thread.
3051         (mono_thread_get_and_clear_pending_exception): Check for 
3052         thread->pending_exception as well.
3053
3054         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
3055
3056         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
3057         it can trigger a collection.
3058
3059 2008-06-06  Martin Baulig  <martin@ximian.com>
3060
3061         Merged the `debugger-kahalo' branch.
3062
3063         * mono-debug.h
3064         (MONO_DEBUGGER_VERSION): Bumped to 72.
3065
3066         * debug-mono-symfile.h
3067         (MonoSymbolFileMethodIndexEntry): Removed.
3068         (MonoSymbolFileMethodEntry): New public typedef.
3069         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
3070         (MonoSymbolFileSourceEntry): Remove everything except `index' and
3071         `data_offset'.
3072         (MonoSymbolFileMethodEntry): Removed.
3073         (MonoSymbolFileLexicalBlockEntry): Removed.
3074         (MonoSymbolFileLineNumberEntry): Removed.
3075         (MonoDebugLexicalBlockEntry): Removed.
3076         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
3077         removed `num_il_offsets' and `il_offsets'.
3078         (MonoSymbolFile): Replace `version' with `major_version' and
3079         `minor_version'.
3080         (MONO_SYMBOL_FILE_VERSION): Replace with
3081         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
3082         `MONO_SYMBOL_FILE_MINOR_VERSION'.
3083
3084         * debug-mono-symfile.c
3085         (mono_debug_symfile_lookup_location): Add support for the new line
3086         number table format.
3087
3088 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
3089
3090         * metadata.c (free_generic_class): Release the inflated
3091         MonoClass of dynamic generic classes if it's not a generic
3092         type definition.
3093
3094 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
3095
3096         * verify.c: Reapplied more of the reverted changes.
3097
3098 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
3099
3100         * reflection.c (lookup_custom_attr): Clean the cached flag or
3101         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
3102         for SRE types.
3103
3104 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
3105
3106         * verify.c: Reapplied a small part of the reverted changes.
3107
3108 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
3109
3110         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3111
3112         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
3113         previously in managed code.
3114         (mono_monitor_exit): Ditto.
3115         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
3116
3117         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
3118         the managed definition.
3119
3120 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
3121
3122         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
3123
3124 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
3125
3126         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
3127         
3128         * monitor.c: Add some micro optimizations.
3129
3130         * icall.c (type_from_typename): Handle 'bool'.
3131
3132 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
3133
3134         * verify.c: Implement constructor verification per P III 1.8.1.4.
3135         Fixes #396716.
3136
3137 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
3138
3139         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
3140         holding the assemblies lock here too.
3141
3142 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3143
3144         * verify.c: Kill stack_top function.
3145
3146 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3147
3148         * verify.c: Kill stack_get function.
3149
3150 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3151
3152         * verify.c (mono_method_verify): Last change broke the build. Fixed.
3153
3154 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3155
3156         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
3157         more reliable.
3158
3159         * verify.c (mono_method_verify): Inflate params and locals to avoid
3160         mismatch when checking for compatibility.
3161
3162 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
3163
3164         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
3165         Length prefix should be size in bytes. Fix bug #339530.
3166         
3167         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
3168         Length prefix should be size in bytes. Fix bug #339530.
3169
3170         Code is contributed under MIT/X11 license.
3171
3172 2008-06-05  Bill Holmes <billholmes54@gmail.com>
3173
3174         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
3175
3176         Contributed under MIT/X11 license.
3177
3178 2008-06-05  Martin Baulig  <martin@ximian.com>
3179
3180         * mono-debug-debugger.c
3181         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
3182
3183 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
3184
3185         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
3186         while holding the assemblies lock to prevent deadlocks. Handle the case
3187         where the search hook returns NULL but the assembly was still loaded.
3188         Fixes #323696.
3189
3190         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
3191         modify domain state.
3192
3193 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
3194
3195         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
3196         * Makefile.am (pedump_LDADD): Post-process object files and
3197         add dtrace-generated object file, if necessary.
3198
3199         Code is contributed under MIT/X11 license.
3200
3201 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3202
3203         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
3204
3205 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3206
3207         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
3208
3209 2008-06-04  Mark Probst  <mark.probst@gmail.com>
3210
3211         * threads.c: Try to free everything from the delayed free table
3212         when shutting down threads, and set the variable to NULL after the
3213         table is freed so that calling
3214         mono_thread_hazardous_try_free_all() when shutting down the root
3215         domain doesn't crash.
3216
3217 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3218
3219         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
3220         the caller if resulting type was inflated.
3221
3222         * class.c (mono_class_create_from_typespec): Free the MonoType if it
3223         was inflated.
3224
3225         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
3226
3227
3228 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
3229
3230         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
3231         class library tests.
3232
3233         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
3234         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
3235         #396989.
3236
3237 2008-06-04  Mark Probst  <mark.probst@gmail.com>
3238
3239         * domain.c, domain-internals.h: The JIT infos are now freed by the
3240         JIT info table code.  They are freed immediately if there only a
3241         single JIT info table in circulation.  If there is more, the free
3242         is delayed via a queue.
3243
3244         * threads.c, threads-types.h: New hazard pointer function for
3245         freeing all freeable delayed items in one sitting.
3246
3247 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3248
3249         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
3250
3251         * reflection.c (typebuilder_setup_properties): Same.
3252
3253         * reflection.c (typebuilder_setup_events): Same.
3254
3255 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3256
3257         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
3258         and use it for allocating memory.
3259
3260         * reflection.c (mono_marshal_spec_from_builder): Same.
3261
3262         * reflection.c: Change code to use new signatures.
3263
3264         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
3265
3266 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
3267
3268         * decimal.c (rescale128): Put back one line which was accidently commented
3269         out.
3270         
3271         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
3272         to cause crashes.
3273
3274 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3275
3276         * reflection.c (mono_reflection_generic_class_initialize): Name must
3277         be always malloc'ed so we can free it later on. Do this for field, property
3278         and event.
3279
3280         * metadata.c (free_generic_class): Free field, property and event names.
3281
3282 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3283
3284         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
3285         instead of g_memdup.
3286
3287         * reflection.c (typebuilder_setup_fields): Same.
3288
3289 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
3290
3291         * decimal.c (rescale128): Optimize this function a bit more.
3292
3293 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3294
3295         * metadata.c (free_generic_class): Release some memory from
3296         SRE generic classes.
3297
3298 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3299
3300         * reflection.c (mono_image_get_generic_field_token): No reference
3301         to name is kept, free it.
3302
3303         * reflection.c (mono_reflection_generic_class_initialize): Free
3304         more memory of the inflated field.
3305
3306 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
3307
3308         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
3309         code.
3310
3311 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
3312
3313         * reflection.c (mono_dynamic_image_free): Release memory used by
3314         MonoDynamicImage::array_methods elements.
3315
3316         * reflection.c (assembly_add_win32_resources): Release memory after
3317         encoding.
3318
3319 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
3320
3321         * decimal.c (log2_32): Use an optimized version for this function too.
3322         
3323         * decimal.c (log2_64): Fix this on 32 bit machines.
3324
3325 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
3326
3327         * class.c (mono_dup_array_type): Implement allocation using a mempool.
3328
3329         * class.c (mono_metadata_signature_deep_dup): Same.
3330
3331         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
3332         a mempool.
3333
3334         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
3335
3336         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
3337
3338         * metadata-internals.h: Added mono_metadata_signature_dup_full.
3339
3340         * class-internals.h: Update signatures to take a MonoMemPool.
3341
3342 2008-06-02  Dick Porter  <dick@ximian.com>
3343
3344         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
3345         * icall-def.h: Add
3346         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
3347         FormatMessage API to get the error text.  Fixes bug 321827.
3348
3349 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
3350
3351         * decimal.c: Add some micro optimizations to make decimal operations faster.
3352
3353 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3354
3355         * reflection.c (method_encode_clauses): Take a mempool
3356         as parameter and use it to allocate the clause array.
3357
3358         * reflection.c (mono_image_get_field_on_inst_token): Free
3359         the inflated type after encoding it.
3360
3361         * reflection.c (mono_dynamic_image_free): Free each element
3362         of MonoDynamicImage::gen_params.
3363
3364         * reflection.c (reflection_methodbuilder_to_mono_method):
3365         Allocate the generic param array from the mempool.
3366         Allocate signature params from the mempool.
3367
3368         * reflection.c (mono_reflection_generic_class_initialize):
3369         Free inflated fields after been used.
3370
3371 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
3372
3373         * icall.c: Reapply the memory leak fixes as they no
3374         longer make mono crash.
3375
3376 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
3377
3378         * reflection.c (mono_type_get_object): Don't store the suplied
3379         MonoType with type_hash. A caller which pass a type that
3380         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
3381         might end with a pointer to freed memory.
3382         The solution is to use byval_arg or this_arg from the associated
3383         MonoClass of the supplied type.
3384
3385 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
3386
3387         * icall.c: Revert the rest of the last change as it breaks the build too.
3388
3389 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3390
3391         * icall.c: Revert a leak fix as it's breaking the build.
3392
3393 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3394
3395         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
3396
3397 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3398
3399         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
3400
3401 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3402
3403         * icall.c: Fix some memory leaks.
3404
3405 2008-05-29  Dick Porter  <dick@ximian.com>
3406
3407         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
3408         async socket operations from the pending list when a socket
3409         closes.  Leaving it until the threadpool services the event
3410         exposes a race condition when a socket descriptor is reused.
3411         Fixes bug 377589.
3412
3413 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3414
3415         * object.c: Fix negative index check for array alocation.
3416
3417 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3418
3419         * icall.c, marshal.c: Delegate wrappers should skip visibility.
3420         This check is performed by the verifier for IL created delegates
3421         and by Delegate::CreateDelegate for programatically created ones.
3422         Fixes #372406.
3423
3424 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3425
3426         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
3427         Fix code to use mono_array_size_t instead of int.
3428
3429         Based on patch by Luis F. Ortiz.
3430         Contributed under X11 license.
3431         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3432
3433 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3434
3435         * icall.c: Added ves_icall_System_Array_GetLongLength and
3436         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
3437         arrays.
3438
3439         * icall.h: Export both new functions.
3440
3441         Based on patch by Luis F. Ortiz.
3442         Contributed under X11 license.
3443         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3444
3445 2008-05-28  Martin Baulig  <martin@ximian.com>
3446
3447         The debugger now requires exactly r103463.
3448
3449         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
3450         This version is not supported by the debugger, wait for 72.
3451
3452 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3453
3454         * object.h: Changed array related functions to use
3455         mono_array_size_t instead of guint32. Forgot to commit this file.
3456
3457         Patch by Luis F. Ortiz.
3458         Contributed under X11 license.
3459         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3460
3461
3462 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3463
3464         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
3465         don't define it. Use the number literal instead.
3466
3467 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3468
3469         * icall.c: Changed array related functions to use
3470         mono_array_size_t instead of guint32.
3471
3472         * icall.c (ves_icall_System_Array_GetLength): Check for length
3473         overflow under MONO_BIG_ARRAYS.
3474
3475         Based on patch by Luis F. Ortiz.
3476         Contributed under X11 license.
3477         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3478
3479 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3480
3481         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
3482
3483         Based on patch by Luis F. Ortiz.
3484         Contributed under X11 license.
3485         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3486
3487 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3488
3489         * object.c, object.h: Changed array related functions to use
3490         mono_array_size_t instead of guint32.
3491
3492         Patch by Luis F. Ortiz.
3493         Contributed under X11 license.
3494         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3495
3496 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3497
3498         * object.h: Introduced mono_array_size_t typedef. This must be used
3499         in all places an array length is expected. This is 64bits wide if
3500         MONO_BIG_ARRAYS is enabled.
3501
3502         Patch by Luis F. Ortiz.
3503         Contributed under X11 license.
3504         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3505
3506 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
3507
3508         * security-manager.c class.c: Set the class exception info by calling
3509         mono_class_set_failure ().
3510
3511         * class.c (mono_class_get_exception_data): New accessor function.
3512         (mono_class_set_failure): Store exception_data in the property hash.
3513
3514         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
3515         the struct as a property.
3516
3517         * loader.c (mono_get_method_full): Store the lookup result for method
3518         tokens in method_cache, the others in methodref_cache to decrease the memory
3519         usage of hash tables.
3520
3521         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
3522         (mono_image_init): method_cache is lazy inited now.
3523
3524         * metadata-internals.h (struct _MonoImage): Change method_cache to
3525         a MonoValueHashTable, add a separate methodref_cache.
3526
3527 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
3528
3529         * number-formatter.h: Fix tables to avoid arithemtic overflow in
3530           Double.ToString as exposed by Bug #383531.
3531
3532 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
3533
3534         * number-formatter.h: Make some tables static.
3535
3536         * class.c (mono_method_set_generic_container): New accessor function.
3537         (mono_method_get_generic_container): Ditto.
3538
3539         * class-internals.h (struct _MonoMethod): Remove rarely used 
3540         'generic_container' field, store it in the property hash instead. Add 
3541         'is_generic' boolean field instead.
3542
3543         * image.c (mono_image_init): Initialize property_hash.
3544         (mono_image_close): Destroy property_hash.
3545
3546         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
3547         hold rarely used fields of runtime structures belonging to this image.
3548
3549         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
3550         to get/set method->generic_container.
3551
3552         * loader.c (mono_get_method_from_token): Avoid loading the method header for
3553         generic methods.
3554
3555 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
3556
3557         * class.c (mono_class_inflate_generic_method_full): Don't increase
3558         mono_stats.inflated_method_count for methods found in the cache.
3559
3560         * threads.c (mono_thread_request_interruption): Add a comment about 
3561         QueueUserAPC ().
3562
3563 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
3564
3565         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
3566         interface_offsets_packed table.
3567         
3568         * class.c (mono_class_init): Remove some dead code.
3569
3570         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
3571         mono_class_setup_vtable () when CAS is active to detect security problems.
3572
3573 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
3574
3575         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
3576
3577         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
3578         parameters as it's irrelevant for delegate checking.
3579
3580 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
3581
3582         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
3583
3584         * class.c (mono_class_init): Control the creation of a generic vtable using
3585         a global which is true by default, but set to false by the runtime startup code.
3586         
3587         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
3588         Disabled for now since it breaks the embedding API.
3589         Move the setup of class->methods for arrays to mono_class_setup_methods ().
3590         (mono_class_setup_methods): Add a memory barrier.
3591
3592         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
3593         when mono_class_init () doesn't compute the generic vtable.
3594         
3595 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
3596         * profiler.c: Added mono_profiler_install_statistical_call_chain,
3597         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
3598         to support call chains (backtrace) in the stat profiler.
3599         * profiler.c, profiler-private.h: Likewise.
3600
3601 2008-05-22  Mark Probst  <mark.probst@gmail.com>
3602
3603         * generic-sharing.c: Init generic class when a method of it is
3604         requested via a runtime generic context.
3605
3606 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
3607
3608         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
3609
3610         * reflection.c (mono_type_get_object): Add a FIXME.
3611
3612         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
3613
3614         * class.c (mono_class_get_method_by_index): New helper function, returning an
3615         entry in the class->methods array.
3616
3617 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
3618
3619         * class.c (mono_class_init): Only do the array optimization for szarrays. 
3620         Avoid creating a generic vtable for generic instances as well.
3621         (mono_class_get_method_from_name_flags): Don't search in the metadata for
3622         generic instances.
3623
3624 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
3625
3626         * loader.c (mono_get_method_constrained): Inflate the signature
3627         with class context. Fix #325283.
3628
3629 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
3630
3631         * object.c (mono_class_create_runtime_vtable): Add a comment.
3632
3633         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
3634         where needed.
3635         (setup_interface_offsets): Handle the case when this is called twice for arrays.
3636         (mono_class_setup_vtable_general): Add an assert.
3637         (mono_class_init): Avoid creating a generic vtable for arrays.
3638
3639         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
3640         here, let mono_class_init () do that.
3641
3642         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
3643         interfaces in mscorlib.
3644
3645         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
3646         interfaces. Add some comments.
3647         (mono_class_init): Call mono_class_setup_methods () here since it is no
3648         longer called by mono_class_setup_vtable ().
3649
3650         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
3651         not set in class->vtable.
3652         (mono_class_create_runtime_vtable): Reenable the disabled code.
3653
3654         * object.c (mono_class_create_runtime_vtable): Disable the last change for
3655         now as it causes some test failures.
3656
3657         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
3658         if using the vtable trampoline. Also remove some strange code which put the
3659         generic methods themselves into the vtable slots. Remove the AOT init_vtable
3660         stuff as it is no longer needed.
3661
3662 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3663
3664         * pedump.c: Give make --verify all option check code as well.
3665         Using --verify code won't check for metadata now.
3666
3667 2008-05-19  Martin Baulig  <martin@ximian.com>
3668
3669         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
3670
3671         * mono-debug.c
3672         (_mono_debug_using_mono_debugger): New global variable; it's set
3673         directly by the debugger, so mono_debug_using_mono_debugger() also
3674         works after attaching.
3675
3676 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3677
3678         * object.c (mono_class_create_runtime_vtable): Use memory barriers
3679         as we do double checked locking on MonoClass::runtime_info and
3680         MonoClassRuntimeInfo::domain_vtables.
3681
3682 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
3683
3684         * debug-helpers.c (print_field_value): Fix a warning.
3685
3686 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
3687
3688         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
3689         set in the AOT case.
3690
3691 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
3692
3693         * class.c (mono_class_setup_vtable_general): Use memory barriers
3694         as we do double checked locking on MonoClass::vtable.
3695
3696 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
3697
3698         * reflection.c (resolve_object): Inflate only if the generic context
3699         is not null. Fixes #389886.
3700
3701 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
3702
3703         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
3704         instead of g_free.
3705
3706         Code is contributed under MIT/X11 license.
3707
3708 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3709
3710         * class.c: Revert unrelated change.
3711
3712 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3713
3714         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
3715         a generic instantiation, use mono_class_from_mono_type instead of playing
3716         with MonoType directly.
3717
3718 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3719
3720         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
3721         checks must ignore generic instantiations, so mono_class_has_parent is not
3722         suitable. Fixes #390128.
3723
3724 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
3725
3726         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
3727         it to avoid registering tokens during metadata generation. Fixes #390023.
3728
3729 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
3730
3731         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
3732         consistent.
3733
3734         Contributed under MIT/X11 license.
3735
3736 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
3737
3738         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
3739         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
3740         to fixup the EXE image.
3741         (mono_cleanup): Use mono_close_exe_image.
3742         (mono_close_exe_image): New function.
3743         * image.c: Include "marshal.h".
3744         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
3745         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
3746         counting when the image is loaded outside of mono_image_open_full. Set status
3747         based on GetLastError.
3748         * coree.c: Include required headers. Add init_from_coree.
3749         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
3750         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
3751         (_CorExeMain): Set init_from_coree.
3752         (CorExitProcess): Only call ExitProcess for now.
3753         (CorBindToRuntimeEx): New stub implementation.
3754         (CorBindToRuntime): New function.
3755         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
3756         (MonoFixupExe): ILONLY executables require no fixups.
3757         (mono_set_act_ctx): New function to set activation context.
3758         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
3759         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
3760         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
3761         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
3762         as MONO_INTERNAL.
3763         * domain-internals.h: Add mono_close_exe_image.
3764
3765         Contributed under MIT/X11 license.
3766
3767 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3768
3769         * metadata.c (mono_metadata_compute_size): Correctly calculate field
3770         size for generic param and event tables. Fixes #388977.
3771
3772 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
3773
3774         * loader.c (mono_method_signature): Use memory barriers because of the double
3775         checked locking pattern.
3776
3777         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
3778         aborting or aborted as well. Fixes #376391.
3779         
3780         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
3781         existing runtime state in the Suspend handler during shutdown.
3782
3783 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
3784
3785         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
3786
3787         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
3788         which are starting up or shutting down.
3789
3790         * threads.c (mono_threads_set_shutting_down): Don't return a value since
3791         this function never returns if the runtime is already shutting down.
3792
3793         * icall.c (ves_icall_System_Environment_Exit): Update after 
3794         mono_threads_set_shutting_down () signature change.
3795         
3796 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
3797
3798         * class.c: Added can_access_instantiation to verify if the instantiation
3799         is visible. Fix access check for nested types as they returned TRUE
3800         before doing type and generic instantiation visibility checks.
3801
3802 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3803
3804         * reflection.c (mono_reflection_create_generic_class): The created type
3805         must have a different container from its TypeBuilder. Otherwise they
3806         will end sharing generic arguments, which is wrong.
3807
3808         Due to the sharing, making a generic instance of the created type using
3809         the TypeBuider generic arguments resulted in the generic type definition
3810         been returned, which is wrong as well.
3811
3812         As a bonus the code was leaking the type_params array. This memory should
3813         be allocated from the image mempool.
3814
3815         This fixes bug #354047.
3816
3817 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3818
3819         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
3820         to here         as they are now used in assembly.c new code.
3821         Added a skipverification flag to MonoAssembly.
3822         New internal function mono_assembly_has_skip_verification.
3823
3824         * assembly.c: New function mono_assembly_has_skip_verification. It checks
3825         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
3826         part of #387274.
3827
3828 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3829
3830         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
3831         needed. Fixes #387034.
3832
3833         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
3834
3835 2008-05-06  Miguel de Icaza  <miguel@novell.com>
3836
3837         * assembly.c (mono_assembly_load_reference): Prevent crash while
3838         disassembling Silverlight 2.0 executables while we still do not
3839         have GACed libraries.
3840
3841 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3842
3843         * reflection.c: Special case generic type definitions as well. Fixes #383444.
3844
3845 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
3846
3847         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
3848         of the dynamic case. Fixes #387404.
3849
3850 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3851
3852         *verify.c (mono_verifier_is_class_full_trust): If under
3853         verify_all and the verifier mode was not set, only
3854         gac and corlib types are fulltrust. This makes --verify-all
3855         usable to detect unverifiable code, which is the expected
3856         use case.
3857
3858 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3859
3860         * verify.h: Ops, commited the header with debug
3861         enabled.
3862
3863 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3864
3865         * verify.c (merge_stack): Use the new value on unverifiable
3866         stack merges.
3867
3868         * verify.c (verify_type_compatibility_full): Comparison
3869         of nullable types can't use mono_class_is_assignable_from.
3870
3871         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
3872         that makes all verification errors be reported.
3873
3874         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
3875         mono_method_verify.
3876
3877 2008-05-05  Robert Jordan  <robertj@gmx.net>
3878
3879         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
3880         support for value types. See #386415.
3881
3882         * object.c: comments.
3883
3884         Code is contributed under MIT/X11 license.
3885
3886 2008-05-05  Martin Baulig  <martin@ximian.com>
3887
3888         * debug-mono-symfile.h
3889         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
3890         for old pre-terrania symbol files.
3891
3892 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3893
3894         * mono-config.c: Add ppc64 architecture.
3895
3896         Code is contributed under MIT/X11 license.
3897
3898 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3899
3900         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
3901           PPC64 uses function descriptors as well.
3902
3903         Code is contributed under MIT/X11 license.
3904
3905 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
3906
3907         * object.c (compute_class_bitmap): Ignore literal static fields.
3908
3909         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
3910         var has an invalid format.
3911         (describe_ptr): Add some sanity checks for the vtable.
3912         (add_nursery_frag): Clear unused nursery fragments.
3913         (major_collection): Clear all remaining nursery fragments.
3914
3915 2008-05-03  Robert Jordan  <robertj@gmx.net>
3916
3917         * image.c, metadata-internals.h: add thunk_invoke_cache.
3918
3919         * marshal.c, marshal.h: implement
3920         mono_marshal_get_thunk_invoke_wrapper ().
3921
3922         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
3923
3924         Code is contributed under MIT/X11 license.
3925
3926 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3927
3928         * verify.c (do_leave): Empty the stack.
3929
3930 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3931
3932         * class.c (mono_class_is_assignable_from): Variance
3933         doesn't work between reference and value types. For example,
3934         given type C<T+>, C<int32> is not assignable to C<object>.
3935         Break the argument checking loop on first error. 
3936
3937 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
3938
3939         * icall.c : base64_to_byte_array() needs some more strict
3940           check for sequence of '=' characters. Patch by Santa
3941           Marta (http://deee.g.hatena.ne.jp/santamarta).
3942
3943           Contributed under MIT/X11 license.
3944           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
3945
3946 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
3947
3948         * domain.c: Disable LoadLibrary support to fix Win32 build.
3949
3950         Code is contributed under MIT/X11 license.
3951
3952 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
3953
3954         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
3955         to help with cache behaviour.
3956
3957 2008-05-01  Miguel de Icaza  <miguel@novell.com>
3958
3959         * appdomain.c (mono_domain_from_appdomain): Add new accessor
3960         method. 
3961
3962 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
3963
3964         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
3965
3966 2008-05-01  Dick Porter  <dick@ximian.com>
3967
3968         * process.c (process_get_fileversion): Only pass 16 bits of
3969         language ID to VerLanguageName.  Fixes bug 381204.
3970
3971 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3972
3973         * verify.c (mono_method_verify): Fix the comparison
3974         operator for code bounds check.
3975
3976 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3977
3978         * verify.c (mono_method_verify): Check the bounds of
3979         all access of the code array.
3980
3981 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
3982
3983         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
3984
3985 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
3986
3987         * image.c (mono_image_strong_name_position): Fix return value when the rva is
3988         not valid.
3989
3990 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
3991
3992         * loader.c (mono_get_method_from_token, mono_method_signature): Add
3993         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
3994         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
3995         fixup main EXE images when using mono.exe for mixed-mode assembly support.
3996         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
3997         mono_runtime_load.
3998         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
3999         runtime initialization from metadata.
4000         * assembly.c: Remove obsolete ceGetModuleFileNameA.
4001         (mono_set_rootdir): Use mono_get_module_file_name.
4002         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
4003         handles.
4004         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
4005         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
4006         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
4007         MonoCLIImageInfo. Add support for module handles.
4008         (load_cli_header): Update mono_cli_rva_image_map signature.
4009         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
4010         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
4011         (mono_image_rva_map): Add support for module handles.
4012         (mono_image_ensure_section_idx): Add support for module handles.
4013         (mono_image_close): Add support for module handles.
4014         (do_load_header): Add support for module handles.
4015         (mono_image_open_from_module_handle): New function for internal use.
4016         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
4017         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
4018         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
4019         handles.
4020         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
4021         * image.h: Add mono_image_fixup_vtable.
4022         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
4023         support.
4024         * coree.h: New file.
4025         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
4026         unsupported native code.
4027         (mono_marshal_set_callconv_from_modopt): New function splitted from
4028         mono_marshal_get_managed_wrapper.
4029         (mono_marshal_get_managed_wrapper): Use
4030         mono_marshal_set_callconv_from_modopt.
4031         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
4032         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
4033         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
4034         that results in a deadlock when the runtime is loaded in _CorDllMain.
4035         * Makefile.am: Add coree.c and coree.h.
4036
4037         Contributed under MIT/X11 license.
4038
4039 2008-04-28  Mark Probst  <mark.probst@gmail.com>
4040
4041         * generic-sharing.c: Search for type arguments in array element
4042         types as well.
4043
4044 2008-04-28  Mark Probst  <mark.probst@gmail.com>
4045
4046         * class-internals.h, generic-sharing.c: New, small runtime generic context.
4047
4048         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
4049
4050         * object.c: Don't setup the RGCTX when the vtable is created,
4051         because we're setting it up lazily now.
4052
4053 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
4054
4055         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
4056         64 bit support.
4057
4058 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4059
4060         * verify.c (verify_class_for_overlapping_reference_fields): 
4061         If class is under fulltrust allow reference types to overllap
4062         if they have the same RVA.
4063
4064 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4065
4066         * pedump.c: Added new flag valid-only, that makes the verifier
4067         behaves just like --security=validil. It won't fail type load
4068         due to unverifiable restrictions.
4069
4070 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4071
4072         * class-internals.h (struct MonoMethod): Added a verification_success
4073         field to cache verifier executions. Reduced MonoMethod:slot size by
4074         one bit.
4075
4076 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
4077
4078         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
4079         instead of a 'vt' argument to save an indirection and to allow these to be used
4080         for valuetypes.
4081         (scan_vtype): New helper function to scan an area using a gc descriptor.
4082         (mono_gc_wbarrier_value_copy): Implement this.
4083         (handle_remset): Add support for REMSET_VTYPE.
4084         (find_in_remset_loc): Ditto.
4085         (mono_gc_base_init): Allow some debugging options to be controlled through the
4086         use of the MONO_GC_DEBUG env variable.
4087         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
4088         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
4089
4090 2008-04-23  Martin Baulig  <martin@ximian.com>
4091
4092         * domain.c (mono_domain_create): Move the call to
4093         mono_debug_domain_create() down, after allocating the domain id.
4094
4095 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4096
4097         verify.c (verify_class_for_overlapping_reference_fields): Skip
4098         static fields while verifying for overlapping fields as they
4099         don't matter at all.
4100
4101 2008-04-23  Marek Habersack  <mhabersack@novell.com>
4102
4103         * domain-internals.h: added a declaration of
4104         mono_make_shadow_copy.
4105
4106         * assembly.c (mono_assembly_open_full): shadow copying of
4107         assemblies moved to here, so that all the assemblies within the
4108         application domain's private binary directories can be
4109         processed. Fixes bug #380546
4110
4111         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
4112         mono_make_shadow_copy and made non-static. The decision whether
4113         to shadow-copy an assembly is made based on its location - it's
4114         copied if it's in one of the private application domain binary
4115         directories and its different to the target file in the shadow
4116         directory. Fixes bug #380546
4117
4118 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
4119
4120         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
4121
4122         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
4123         types.
4124
4125         * reflection.c (mono_image_create_token): Handle 
4126         Method/ConstructorOnTypeBuilderInst.
4127         (resolve_object): Ditto.
4128         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
4129         so it can be called from resolve_object. Also handle the case when the inflated
4130         class already has its methods setup.
4131
4132 2008-04-21  Martin Baulig  <martin@ximian.com>
4133
4134         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
4135
4136 2008-04-20  Geoff Norton  <gnorton@novell.com>
4137
4138         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
4139         pointer dereference.
4140
4141 2008-04-15  Marek Habersack  <mhabersack@novell.com>
4142
4143         * appdomain.c (try_load_from): if IOMAP is in effect, call the
4144         portability API to look up the assembly file. Fixes behavior in
4145         situations when the application has a bin/ directory, but the
4146         assembly search patch refers to Bin/ (and thus the requested file
4147         name is Bin/SomeLibrary.dll). Fixes bug #379888
4148
4149 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4150
4151         verify.c (mono_type_is_generic_argument): Extracted this check
4152         from a dozen places to here.
4153
4154         verify.c: Fixed all issues related to boxing generic arguments
4155         and their constraints.
4156
4157 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4158
4159         verify.c (mono_class_interface_implements_interface): Fix win32 build.
4160
4161 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
4162
4163         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
4164         isn't finished yet. Fixes #363447.
4165
4166 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
4167
4168         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
4169         Fixes #346419.
4170
4171 2008-04-13  Jb Evain  <jbevain@novell.com>
4172
4173         * domain.c: update the 2.1 profile versions.
4174         Merged from the Moonlight 2 branch.
4175
4176 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
4177
4178         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
4179         mscorlibs for the non-refonly case as well.
4180
4181         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
4182         in mono_assembly_load_from_full (). Fixes #378924.
4183
4184 2008-04-11  Geoff Norton  <gnorton@novell.com>
4185
4186         * icall.c: The global extern environ doesn't exist on Mac.  We
4187         need to call NSGetEnviron instead.
4188
4189 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4190
4191         verify.c: Add generic method constraint verification.
4192
4193 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4194
4195         class.c (mono_class_inflate_generic_method_full): Add a long
4196         explanation to the is_mb_open hack. Remove the FIXME.
4197
4198 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4199
4200         * verify.c (mono_method_verify): Mark all unknown opcodes
4201         as invalid. Mark jmp as unverifiable.
4202
4203 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4204
4205         * verify.c: Add code to do type constraint verification on class instances.
4206
4207         * verify.c (mono_verifier_verify_class): Use the type constraint 
4208         verification code.
4209
4210 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4211
4212         * class.c (mono_class_get_field_default_value): Don't pass cindex
4213         as hint to mono_metadata_get_constant_index. The local is not initialized
4214         and should contain garbage most of the time. This could only work
4215         with a lot of luck.
4216
4217 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4218
4219         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
4220
4221 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4222
4223         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
4224
4225         * class.c (mono_class_from_generic_parameter): Save the token of the
4226         generic param in MonoClass::sizes.generic_param_token.
4227
4228         * reflection.c (mono_custom_attrs_from_class): If the class type is
4229         VAR or MVAR retrieve the attributes of the generic param.
4230
4231 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4232
4233         * class.c (mono_class_init): Do class verification if the verifier
4234         is enabled.
4235
4236 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4237
4238         * verify-internal.h: Added mono_verifier_verify_class.
4239
4240         * verify.c: Added mono_verifier_verify_class. It checks for
4241         classes with explicit layout that have overlapping reference fields.
4242
4243         * pedump.c: Init the verifier state prior to verification. Fixed
4244         command line arguments.
4245
4246 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4247
4248         * Makefile.am: Added verify-internals.h, hopefully fix the build.
4249
4250 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
4251
4252         * verify-internals.h: Fix a warning.
4253
4254 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4255
4256         * verify-internals.h: New header with the verifier configuration
4257         extracted from mini.c.
4258
4259         * verify.c: Implemented the new functions exported by verify-internals.h.
4260
4261 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4262
4263         * verify.c: Add proper verification of ckfinite.
4264
4265 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
4266
4267         * verify.c (do_conversion): Improved error message to something
4268         more meanfull.
4269
4270         * verify.c (check_is_valid_type_for_field_ops): Fix to work
4271         with primitive types.
4272
4273 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
4274
4275         * verify.c: Added tail prefix checking. Marked icall
4276         as unverifible.
4277
4278 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
4279
4280         * verify.c: Fix the detection of branches to the middle
4281         of an instruction.
4282
4283 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4284
4285         * verify.c: Implemented verification of volatile. and
4286         unaligned. prefix. Check if a type is valid after retrieving it.
4287
4288 2008-04-01  Dick Porter  <dick@ximian.com>
4289
4290         * process.c (process_get_fileversion): If there's no string block,
4291         set the file language to en_US.  Fixes the other new part of bug
4292         374600.
4293
4294 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
4295
4296         * class.c: New functions mono_method_can_access_field_full and
4297         mono_method_can_access_method_full. They perform type visibility
4298         and type site check.
4299
4300         * class-internal.h: Added exported functions.
4301
4302         * verify.c: Use new functions to implement proper visibility checks.
4303
4304 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
4305
4306         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
4307
4308 2008-03-28  Dick Porter  <dick@ximian.com>
4309
4310         * process.c (process_get_fileversion): Use the first language ID
4311         we see, rather than insisting on an invariant language.  Fixes bug
4312         374600.
4313
4314 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
4315
4316         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
4317         the streams to fix reading of invalid memory later.
4318
4319         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
4320         to ease debugging.
4321
4322 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
4323
4324         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
4325         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
4326
4327 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
4328         * threads.h: Added MonoThreadManageCallback type and
4329         mono_thread_set_manage_callback prototype
4330         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
4331         (used to store the mono_thread_manage callback).
4332         * threads.c: Added mono_thread_set_manage_callback, and handle
4333         "MonoThread->manage_callback" in build_wait_tids.
4334
4335 2008-03-26  Dick Porter  <dick@ximian.com>
4336
4337         * process.c (process_get_fileversion): Set FileVersionInfo strings
4338         to Empty when the resource doesn't have the particular info.
4339         Fixes bug 355717.
4340
4341 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
4342
4343         * verify.c (mono_method_verify): Proper prefix validation.
4344
4345 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
4346
4347         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
4348         itself in a separate argument instead of throwing them. Fixes #373448.
4349
4350         * appdomain.c: Bump corlib version.
4351
4352 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4353
4354         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
4355
4356 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
4357
4358         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
4359         version macros.
4360
4361 2008-03-20  Mark Probst  <mark.probst@gmail.com>
4362
4363         * generic-sharing.c, class-internals.h: Code for putting
4364         reflection types into the runtime generic context.
4365
4366 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4367
4368         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
4369         Fixes #340662. 
4370
4371
4372 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
4373
4374         * verify.c (VerifyContext): Added instruction prefix data to the struct.
4375
4376         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
4377
4378         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
4379
4380         * verify.c (do_cast): Let the result value keep the boxed status.
4381
4382         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
4383
4384 2008-03-17  Jb Evain  <jbevain@novell.com>
4385
4386         * reflection.c: when running on a 2.0 runtime, emit
4387         unconditionally the #~ header version as 2.0, and the
4388         CLI header version as 2.5, for symmetry's sake with csc.
4389
4390 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
4391
4392         * class.c: Remove the unused cache_interface_offsets stuff.
4393
4394         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
4395         profiler.c: Fix warnings.
4396
4397 2008-03-16  Mark Probst  <mark.probst@gmail.com>
4398
4399         * generic-sharing.c, class-internals.h: Support for putting
4400         methods into the runtime generic context.
4401
4402 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
4403
4404         * class.c (mono_class_setup_fields): Ignore calls made to this function for
4405         classes which are generic instances of not-yet finished typebuilders. Fixes
4406         #351172.
4407
4408         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
4409
4410 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
4411
4412         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
4413
4414         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
4415         field, replace it with a hash table in MonoDynamicImage.
4416
4417         * reflection.c (inflate_mono_method): Access the generic definition object from
4418         image->generic_def_objects instead of imethod->reflection_info.
4419
4420         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
4421
4422         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
4423         
4424         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
4425         function in reflection.c so it is easier to keep in sync with the dynamic image
4426         creation code.
4427
4428         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
4429         mono_image_close ().
4430
4431 2008-03-15  Mark Probst  <mark.probst@gmail.com>
4432
4433         * class.c (mono_class_generic_sharing_enabled): Disable generic
4434         sharing for all architectures except AMD64 and x86 to fix build.
4435
4436 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
4437
4438         * verify.c: Use the generic definition MonoGenericContext when available.
4439         Remove code for checking generics instance compatibility in favor of
4440         mono_class_is_assignable_from.
4441
4442 2008-03-14  Mark Probst  <mark.probst@gmail.com>
4443
4444         * marshal.c, marshal.h, metadata-internals.h, image.c,
4445         wrapper-types.h: New wrapper for invoking a shared static method
4446         without having to pass the runtime generic context argument.
4447
4448 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
4449
4450         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
4451
4452 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
4453
4454         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
4455         
4456         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
4457         create a token from a FieldOnTypeBuilderInst.
4458         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
4459         (resolve_object): Ditto.
4460
4461         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
4462         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
4463
4464 2008-03-14  Martin Baulig  <martin@ximian.com>
4465
4466         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
4467
4468         * debug-mono-symfile.h
4469         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
4470         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
4471
4472 2008-03-10  Martin Baulig  <martin@ximian.com>
4473
4474         * debug-mono-symfile.h
4475         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
4476         `lexical_block_table_offset'.
4477         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
4478         `lexical_blocks'.
4479         (MonoSymbolFile): Added `version'.
4480
4481         * mono-debug.h
4482         (MonoDebugLexicalBlockEntry): Removed.
4483         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
4484         `lexical_blocks'.
4485
4486         * mono-debug.c (mono_debug_add_method): Don't compute lexical
4487         blocks here; the debugger now does this internally.
4488
4489 2008-02-27  Martin Baulig  <martin@ximian.com>
4490
4491         * object.c (mono_runtime_exec_main): Call
4492         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
4493         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
4494
4495 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4496
4497         * verify.c (verify_type_compatibility_full): Allow native int to be converted
4498         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
4499
4500 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4501
4502         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
4503         ldftn with a virtual method.
4504
4505 2008-03-13  Geoff Norton  <gnorton@novell.com>
4506
4507         * decimal.c:  Only include memory.h if the platform has it.
4508
4509 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
4510
4511         * assembly.c, class.c, metadata-internals.h: make sure public key
4512         tokesns are compared in a case-insensitive way. Also, all
4513         the lookups in the GAC use a lowercase public key token
4514         (gaacutil already does the lowercasing on install). Fixes
4515         bug #369541.
4516
4517 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
4518
4519         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
4520         and return value.
4521
4522 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
4523
4524         * image.c: when someone loads a mscorlib from a file, return the
4525         currently loaded mscorlib (fixes bug #369253).
4526
4527 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
4528
4529         * class.c: handle types with no parents by forcing them to have
4530         System.Object as a parent and marking them as broken (this currently
4531         allows the first part of bug #369173 to work as well, likely because
4532         we don't check for typeload exceptions everywhere yet).
4533
4534 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
4535
4536         * class.c: more complete check that types belong to corlib
4537         (fixes second part of bug #369173).
4538
4539 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
4540
4541         * generic-sharing.c:  Including glib.h for the MSVC builds to define
4542           "inline" to "__inline" before including mono-membar.h.
4543           
4544         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
4545           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
4546           MSVC builds.
4547
4548         Contributed under MIT/X11 license.
4549
4550 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
4551
4552         * verify.c (do_invoke_method): Remove return type validation.
4553
4554         * verify.c (do_ret): Do return type validation at return site instead of
4555         call site.
4556
4557 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
4558
4559         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
4560
4561         * verify.c: Some todos cleaned and improved a few error messages.
4562
4563 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
4564
4565         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
4566
4567 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
4568
4569         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
4570         system types correctly.
4571
4572         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
4573         function.
4574
4575 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
4576
4577         * assembly.c (build_assembly_name): Fix a warning.
4578
4579 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
4580
4581         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
4582         the called function takes an object type argument. Fixes storing or
4583         valuetypes across remoting as well as reducing memory usage.
4584         * image.c, metadata-internals.h: remove now unused ldfld_remote and
4585         stfld_remote wrapper caches.
4586
4587 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
4588
4589         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
4590         is not found.
4591
4592         * reflection.c (mono_image_register_token): New helper function to save
4593         a token->object mapping.        
4594
4595         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
4596         managed code.
4597
4598         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
4599         one dimension arrays. Fixes #367670.
4600         (mono_reflection_get_type_internal): Ditto.
4601
4602 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
4603
4604         * marshal.c: mono_load_remote_field_new() always returns object.
4605         so use the proper signature (fixes bug #366445).
4606
4607 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
4608         
4609         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
4610         add an 'inline_failure' flag instead.
4611
4612 2008-03-04  Mark Probst  <mark.probst@gmail.com>
4613
4614         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
4615         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
4616         contains the location of "this", used for exception handling.
4617
4618 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
4619
4620         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
4621         their size on all platforms for perf reasons.
4622
4623 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4624
4625         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
4626         object-internal.h
4627
4628         * object-internal.h: Same.
4629
4630 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4631
4632         * reflection.h: Fix the build I just broke.
4633
4634 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4635
4636         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
4637         Test if a token is valid, this remove explicit usage of 
4638         MonoDynamicImage::tokens from the verifier code.
4639
4640         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
4641
4642         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
4643         instead of direct access to MonoDynamicImage::tokens.
4644
4645 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4646
4647         * verify.c (token_bounds_check): Fix the build I just broke.
4648
4649 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4650
4651         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
4652
4653         * verify.c (verifier_load_method): Fixed the errors message.
4654
4655         * verify.c (mono_method_verify): Fixed a debug message.
4656
4657 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
4658
4659         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
4660         mono-perfcounters.h, class-internals.h: support for predefined
4661         writable counters, query of categories and counters, bugfixes.
4662
4663 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
4664
4665         * verify.c (do_refanytype): Verify the refanytype opcode.
4666
4667         * verify.c (mono_method_verify): Use do_refanytype.
4668
4669 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
4670
4671         * verify.c (do_mkrefany): Verify the mkrefany opcode.
4672
4673         * verify.c (mono_method_verify): Use do_mkrefany.
4674
4675 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
4676
4677         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
4678         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
4679         implementation.
4680
4681 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
4682
4683         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
4684         the type load exception.
4685
4686 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4687
4688         * verify.c: Added a few FIXME for method signatures
4689
4690         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
4691         of mono_method_get_signature and get vararg call working. Removed unused
4692         checks for return value.
4693
4694         * verify.c (do_refanyval): Verify the refanyval opcode.
4695
4696         * verify.c (mono_method_verify): Implemented verification of arglist and
4697         use do_refanyval.
4698
4699 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
4700
4701         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
4702         vtypes to marshal.c.
4703
4704         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
4705         it works for AOT as well.
4706
4707 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
4708
4709         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
4710         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
4711         the system time is adjusted.
4712
4713 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
4714
4715         * icall.c, icall-def.h: use the new time functions (fixes the
4716         non-monotonic behaviour of TickCount).
4717
4718 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
4719
4720         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
4721         it breaks the build.
4722         
4723         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
4724         cattr is not finished yet.
4725
4726 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
4727
4728         * verify.c: Proper token validation for field, method and type.
4729
4730 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
4731
4732         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
4733
4734         * loader.c (method_from_memberref): Generate type load error instead of method missing
4735         if the type is not found.
4736
4737 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
4738
4739         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
4740         some of the conversions caused the generation of a marshal directive exception.
4741
4742 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
4743
4744         verify.c: Report which exception should be thrown by the JIT.
4745         Added a lot of FIXME notes.
4746
4747 2008-02-22  Mark Probst  <mark.probst@gmail.com>
4748
4749         * generic-sharing.c: Runtime generic context slots are not
4750         instantiated on init anymore.  Instead, provide function to do the
4751         instantiating on demand.
4752
4753         * class-internals.h: Added vtable to runtime generic context.
4754         Macros for encoding direct and indirect slot offsets in one
4755         guint32.
4756
4757 2008-02-21  Mark Probst  <mark.probst@gmail.com>
4758
4759         * object.c, generic-sharing.c: Moved some generic sharing code
4760         from object.c to generic-sharing.c.
4761
4762         * generic-sharing.c: Added support for extensible runtime generic
4763         context.
4764
4765         * metadata-internals.h: Two new hash tables in MonoImage for
4766         extensible runtime generic context support.
4767
4768         * domain.c: Unregister generic vtables upon domain unloading.
4769
4770         * image.c: Destroy new hash tables upon image unloading.
4771
4772         * metadata.c: Unregister generic subclasses upon image unloading.
4773
4774         * class-internals.h: New data structure for runtime generic
4775         context template.  New fields in the runtime generic context for
4776         extensible part.
4777
4778         * Makefile.am: Added generic-sharing.c.
4779
4780 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
4781
4782         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
4783         there is a pending loader exception, raise it.
4784
4785         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
4786         same.
4787
4788         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
4789         same.
4790
4791         Fixes #363450.
4792
4793 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
4794
4795         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
4796
4797         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
4798         
4799         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
4800         ref-only requests for compatibility with MS.
4801
4802 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4803
4804         * reflection.c (mono_custom_attrs_from_method): Don't silently
4805         return an empty list for generic method instances.
4806         (mono_custom_attrs_from_param): Likewise.
4807
4808 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
4809             Raja R Harinath  <harinath@hurrynot.org>
4810
4811         Fix #354757
4812         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
4813         * class.c (mono_class_inflate_generic_method_full): Initialize it
4814         when a fully-open method is instantiated.
4815         * metadata.c (inflated_method_equal, inflated_method_hash): Update
4816         to new field.
4817         * reflection.c (inflate_mono_method): Don't create a temporary context.
4818
4819 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4820
4821         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
4822         Compute correct value, to prepare for imethod->reflection_info going away.
4823
4824 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
4825
4826         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
4827
4828 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4829
4830         * verify.c: Implement skip visibility flag.
4831
4832 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4833
4834         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
4835         which contains an extra field to tell the kind of exception that should be thrown.
4836
4837         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
4838
4839 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
4840
4841         * loader.c (mono_method_get_param_names): Initialize 'klass' after
4842         'method' is updated.
4843
4844 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
4845
4846         * class.c (mono_class_layout_fields): Set class->min_align for classes using
4847         explicit layout as well. Fixes #360375.
4848
4849 2008-02-11  Geoff Norton  <gnorton@novell.com>
4850
4851         * loader.c: Guard and dereference against inflated generic methods
4852
4853 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
4854
4855         * class.c: Include Retargetable spec in assembly name.
4856         * assembly.c: Always include PublicKeyToken spec in assembly name
4857         (with value "null" if assembly is not signed), and include
4858         Retargetable spec.
4859         * icall-def.h: Added icall for Assembly.get_fullname.
4860         * icall.c: Added icall returning the fullname of an assembly.
4861
4862 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
4863
4864         * class.c (mono_class_setup_vtable_general): Add a missing call to
4865         mono_class_setup_methods () which is needed in the AOT case.
4866
4867 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
4868
4869         * verify.c (mono_type_get_stack_name): Added. Return the name for the
4870         stack type of the given MonoType.
4871
4872         * verify.c (verify_type_compatibility_full): Handle the void type.
4873
4874         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
4875         way stack merging works.
4876
4877         * verify.c (store_local): Improved verification message.
4878
4879         * verify.c (do_branch_op): If the merging is invalid, the method
4880         is unverifiable and not invalid. Improved error message.
4881
4882         * verify.c (merge_stacks): Properly merge a boxed valuetype and
4883         a reference type diferent than System.Object. Improved error
4884         message.
4885
4886 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
4887
4888         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
4889
4890         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
4891         type of an enum even if the argument is byref.
4892
4893         * verify.c: Replace all explicit uses of enumtype and enum_basetype
4894         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
4895
4896         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
4897
4898         *verify.c (verify_type_compatibility_full): Make enum types
4899         compatible with their base types.
4900
4901         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
4902         types are compatible for the special case of a boxed valuetype and
4903         System.Object.
4904
4905         * verify.c (verify_stack_type_compatibility): The function
4906         is_compatible_boxed_valuetype was extracted from here.
4907
4908         * verify.c (push_arg): Only set ctx->has_this_store if the method
4909         is not static.
4910
4911         * verify.c (do_ldelem): Fixed a typo in an error message and added
4912         strict check for mixing int32 and native int as the array type
4913         and ldelem type.
4914
4915         * verify.c (merge_stacks): Consider boxed valuetypes in the
4916         compatibility checks.
4917
4918 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
4919         * profiler.h: (MonoGCEvent): Added start-stop the world events.
4920
4921 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4922         *class.c: use_new_interface_vtable_code: renamed the env var to have
4923         a "MONO_" prefix, and fix the logic to enable it by default.
4924
4925 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4926         *class.c:
4927         mono_class_setup_vtable_general: rewrote the way in which interface
4928         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
4929         makes the code more maintainable.
4930         For now the old code is still there, and can be activated setting
4931         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
4932
4933 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
4934
4935         * verify.c: guarded some debug functions around and #ifdef.
4936
4937         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
4938
4939 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
4940
4941         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
4942         changes for now since they seem to break too many things.
4943
4944 2008-02-05  Mark Probst  <mark.probst@gmail.com>
4945
4946         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
4947         mono_marshal_find_nonzero_bit_offset): Added macro and function
4948         for finding the byte- and bit-offset of a bitfield within a
4949         struct.
4950
4951 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
4952
4953         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
4954         (mono_marshal_get_struct_to_ptr): Ditto.
4955
4956         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
4957         cctor_signature.
4958
4959 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
4960
4961         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
4962         between methods for non-corlib types.
4963
4964 2008-02-02  Geoff Norton  <gnorton@novell.com>
4965
4966         * loader.c (mono_method_get_param_names): Populate the parameter name for 
4967         generic parameters as well. (Fixes #342536)
4968
4969 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
4970
4971         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
4972
4973         * verify.c (do_invoke_method): Fix for calling with byref structs.
4974
4975         * verify.c (do_cast): push a boxed value type based on the type token and not
4976         the type of stack.
4977
4978 2008-01-31  William Holmes  <billholmes54@gmail.com>
4979
4980         * process.c (process_module_string_read): Check the size returned form 
4981           VerQueryValue to avoid out of memory exception. 
4982
4983 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
4984
4985         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4986         Handle properly modules which are not in the moduleref table. Fixes
4987         #356938.
4988
4989 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
4990
4991         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
4992         the dynamic case which is now in managed code.
4993         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
4994
4995         * marshal.c (mono_string_to_bstr): Fix a warning.
4996         (init_com_provider_ms): Ditto.
4997
4998         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
4999
5000         * exception.c (mono_get_exception_out_of_memory): New helper function.
5001
5002 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
5003
5004         * marshal.c: Add support for BSTR marshalling
5005         using other COM systems.
5006
5007         Code is contributed under MIT/X11 license.
5008
5009 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
5010
5011         * object.c (mono_runtime_invoke_array): reverted previous
5012         commit as it breaks the build.
5013
5014 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
5015
5016         * object.c (mono_runtime_invoke_array): Verify arguments for
5017         invalid types. Fixes #348522.
5018
5019 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
5020
5021         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
5022         non-final virtual calls using call. 
5023
5024         * verify.c (do_invoke): fixed some TODOs.
5025
5026         * verify.c (push_arg): set has_this_store for "ldarga 0".
5027
5028 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
5029
5030         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
5031         which belong to an inflated class. Fixes #356531.
5032
5033 2008-01-26  Robert Jordan  <robertj@gmx.net>
5034
5035         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
5036         which resort to FindFirstFile when a certain error condition
5037         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
5038         Code is contributed under MIT/X11 license.
5039
5040 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
5041
5042         * marshal.c (emit_marshal_string): Fix out string marshalling
5043         to use specified encoding. Fixes #323900.
5044
5045         Code is contributed under MIT/X11 license.
5046
5047 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
5048
5049         * class.c (mono_class_inflate_generic_method_full): Don't modify
5050         iresult->context after cache check.
5051
5052 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
5053
5054         * class.c (mono_class_inflate_generic_method_full): Change the
5055         struct assignments to memcpy for better visibility and add some comments.
5056
5057 2008-01-23  Dick Porter  <dick@ximian.com>
5058
5059         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
5060         procedure, and make it work on windows.
5061
5062 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
5063
5064         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
5065         a MonoReflectionTypeBuilder since it is always of that type.
5066
5067         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
5068
5069         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
5070
5071         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
5072         
5073         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
5074
5075         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
5076
5077         * reflection.c (mono_reflection_create_runtime_class): Remove already created
5078         instantiations from the type cache.
5079
5080 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5081
5082         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
5083
5084         * verify.c (do_unbox_value): push a controled mutability managed pointer.
5085
5086 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5087
5088         * verify.c (do_ldstr): added, verifies if the #US token is valid.
5089
5090         * verify.c (mono_method_verify): removed old TODO
5091
5092 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5093
5094         * verify.c (do_newobj): add visibility check.
5095
5096 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5097
5098         * verify.c (do_load_function_ptr): add visibility check.
5099
5100 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
5101         *class.c:
5102         mono_generic_class_get_class: hook profiler events.
5103         mono_field_get_offset: added to support heap-shot in the new profiler.
5104         *class.h: exported mono_field_get_offset.
5105         * reflection.c:
5106         mono_reflection_setup_internal_class: hook profiler events.
5107
5108 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
5109
5110         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
5111         argument here too and use it to avoid checking for pending exceptions if 
5112         possible.
5113
5114 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
5115
5116         * assembly.c (build_assembly_name): add arg for passing the assembly
5117         flags. Do not consider a PublicKey with value "null" valid.
5118         (mono_assembly_name_parse_full): added boolean argument that will be
5119         set if the assembly name contains a PublicKeyToken spec. Added support
5120         for the Retargetable spec for which only Yes or No are allowed as valid
5121         value. Consider assembly name invalid if Retargetable spec is set, but
5122         either version, culture or public key (token) are not specified.
5123         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
5124         with implementation in assembly.c.
5125         * icall.c (fill_reflection_assembly_name): also copy assembly flags
5126         from MonoAssemblyName.
5127         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
5128         introduced argument for mono_assembly_name_parse_full to know if the
5129         assembly name has a PublicKeyToken spec, and if it has instruct
5130         fill_reflection_assembly_name to use default value for keyToken (if
5131         PublicKeyToken is null).
5132
5133 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
5134
5135         * verify.c (mono_method_verify): fixed ovf ops with
5136         float values. They are unverifiable now.
5137
5138 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
5139
5140         * class.c (set_failure_from_loader_error): add BadImageException to the
5141         list of exceptions that can cause a type to fail to load.
5142
5143         * class.c (mono_class_get_exception_for_failure): same.
5144
5145 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
5146
5147         * verify.c (in_any_exception_block): added, check if offset
5148         is part of any exception handling clause.
5149
5150         * verify.c (get_stack_type): added VAR and MVAR types.
5151
5152         * verify.c (do_stobj): better error messages.
5153
5154         * verify.c (do_cpobj): added, check cpobj.
5155
5156         * verify.c (do_initobj): added, check initobj.
5157
5158         * verify.c (do_sizeof): added, check sizeof.
5159
5160         * verify.c (do_localloc): added, check localloc.
5161
5162         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
5163
5164 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
5165
5166         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
5167         save_lmf/restore_lmf opcodes.
5168
5169         * threads.c (mono_threads_install_notify_pending_exc): New function to
5170         install a callback notifying the JIT there is a pending exception on a thread.
5171         (mono_thread_request_interruption): Call the new callback.
5172         (mono_thread_get_and_clear_pending_exception): New function to return the
5173         exception pending on a thread.
5174
5175         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
5176         to turn off checking for pending exceptions.
5177         (mono_marshal_get_native_wrapper): Ditto.
5178
5179 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
5180
5181         * threads-types.h: Get rid of the unnecessary extern declarations.
5182
5183 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
5184
5185         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
5186         return field from parent class if not private.
5187         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
5188         returns fields from parent class if they are not private.
5189         (method_nonpublic): added function to determine if a given method
5190         should be considered non-public. Returns false for private methods
5191         on parent class, and internal methods from parent on the 1.0 profile.
5192         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
5193         use method_nonpublic function to determine whether method should be
5194         returned.
5195         (property_accessor_public): use newly introduced method_nonpublic
5196         function to determine whether accessor is non-public. 
5197         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
5198         event from parent class if not private. Only return static event if
5199         Static flag is set, and only return static event from parent class if
5200         FlattenHierarchy flag is set.
5201         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
5202         include non-private events from parent class.
5203
5204 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
5205
5206         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
5207         warning.
5208
5209 2008-01-16  Wade Berrier <wberrier@novell.com>
5210
5211         * security.c: Add assembly.h header to appease some warnings
5212
5213 2008-01-16  Dick Porter  <dick@ximian.com>
5214
5215         * process.c (process_module_string_read): Remove trailing null
5216         when saving string.
5217
5218 2008-01-16  Mark Probst  <mark.probst@gmail.com>
5219
5220         * class-internals.h: A new data structure describing the layout of
5221         a runtime generic context (MonoRuntimeGenericContextTemplate).
5222
5223         * metadata-internals.h: Added a hash table to MonoDomain that maps
5224         from open generic classes to their runtime generic context
5225         templates.
5226
5227         * object.c: Building of the runtime generic context, including
5228         proper handling of generic type arguments of superclasses.
5229         Building of the runtime generic context according to the template.
5230
5231 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
5232
5233         * class.c (mono_class_setup_fields): Set field.count for generic instances.
5234         Fixes #350856.
5235
5236         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
5237         mono_portability_find_file (). Fixes #325466.
5238         (mono_image_get_public_key): Fix a warning.
5239
5240 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
5241
5242         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
5243         Fixes #353550.
5244         (mono_class_from_name_case): Ditto.
5245
5246 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
5247
5248         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
5249           common storage for the tables used in the System/NumberFormatter class.
5250
5251 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
5252
5253         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
5254
5255 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
5256
5257         * verify.c (get_boxable_mono_type): check if the token is valid.
5258
5259         * verify.c (set_stack_value): changed to add an error if an
5260         invalid type is set on stack. Changed all callers due to signature change.
5261
5262         * verify.c (do_stobj): implement stobj validation.
5263
5264 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
5265
5266         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
5267         set container->is_method, it was set earlier.
5268
5269         * metadata.c (type_in_image): Handle MVARs which belong to not finished
5270         generic methods.
5271
5272         * reflection.c (mono_reflection_initialize_generic_parameter): Set
5273         is_method of the generic container to TRUE for methods.
5274
5275 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
5276
5277         * metadata.c (type_in_image): Handle type parameters properly.
5278
5279         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
5280         memory ownership of this structure.
5281
5282 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
5283
5284         * verify.c (get_boxable_mono_type): make typedref types been just
5285         unverifiable. check for void type.
5286
5287         * verify.c (do_unbox_any): added, verify opcode unbox.any.
5288
5289         * verify.c (do_load_function_ptr): accept method spec tokens.
5290
5291 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
5292
5293         * marshal.c (mono_class_native_size): Always set *align even if this is called
5294         recursively.
5295
5296 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
5297
5298         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
5299         out-of-date.
5300
5301 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
5302
5303         * verify.c: removed some old unused tables. A huge bunch of small fixes
5304         to things found while testing the verifier with mono basic.
5305
5306         * verify.c (dump_stack_value): dump null literal flag to.
5307
5308         * verify.c (verify_type_compatibility_full): fix comparison
5309         for types that have a generic super type.
5310
5311         * verify.c (verify_stack_type_compatibility): fix compatibility
5312         between null literals and reference types. fix compatibility between
5313         boxed valuetypes and object. fix corner case test for enums.
5314
5315         * verify.c (do_cmp_op): proper verification of cgt.un in case
5316         of reference types.
5317
5318         * verify.c (do_invoke_method): fix error message.
5319
5320         * verify.c (do_store_indirect
5321
5322         * verify.c (check_is_valid_type_for_field_ops): proper verification
5323         of managed pointers to valuetypes and boxed valuetypes. proper verification
5324         of null literals.
5325
5326         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
5327         allow token to be a reference type.
5328
5329         * verify.c (do_cast): proper handling of boxes valuetypes.
5330
5331         * verify.c (do_stelem): proper handling of storing a boxed valuetype
5332         in object[].
5333
5334         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
5335         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
5336         fixed the decoding of unbox_any
5337
5338 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
5339
5340         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
5341
5342 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
5343
5344         * verify.c (do_newobj): do delegate verification.
5345
5346         * verify.c (verify_delegate_compatibility): perform delegate
5347         verification.
5348
5349         * verify.c (verify_ldftn_delegate): perform tests related to
5350         ldftn delegates.
5351
5352         * verify.c (mono_delegate_signature_equal): perform the
5353         slightly diferent signature comparison required by delegates.
5354
5355         * metadata.c (mono_metadata_type_equal_full): added and exported
5356         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
5357         allows signature only comparison.
5358
5359         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
5360         as MONO_INTERNAL.
5361
5362 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
5363
5364         * verify.c: added a bunch of stack_slot_* functions to
5365         make access to stack slot type easier. This is required to
5366         allow optional flags, like null literal, boxed value and
5367         this pointer.
5368         All access paths to IlStackDesc::stype have been changed 
5369         to use these new funcions.
5370         Removed a bunch of unused functions and cleared all warnings.
5371         This patch introduces the usage of the this pointer and 
5372         boxed value flags.
5373
5374 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
5375
5376         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
5377
5378 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
5379
5380         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
5381         match managed version.
5382
5383         * appdomain.c: Bump corlib version.
5384         
5385         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
5386         argument.
5387
5388 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
5389
5390         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
5391         Set public key token to zero-length byte array if assembly is not
5392         strongnamed.
5393
5394 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
5395
5396         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
5397         writing a vtype array elem.
5398
5399 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
5400
5401         * assembly.c (build_assembly_name): return FALSE if length of token is
5402         not 16 (if not "null").
5403         (mono_assembly_name_parse_full): return FALSE if value of version,
5404         culture, token or key is 0.
5405         * icall.c (fill_reflection_assembly_name): add boolean arguments to
5406         specify whether public key and public key token must be set to default
5407         value (zero-length byte array) if not available. Set versioncompat to
5408         SameMachine. If public key is available or the default is set, then
5409         set PublicKey flag.
5410         (ves_icall_System_Reflection_Assembly_FillName): if no public key
5411         is available, use empty byte array as default value. On the 2.0
5412         profile, use default value for public key token if not set.
5413         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
5414         profile, use default value for public key if not set. On the 2.0
5415         profile, use default value for public key token if not set.
5416         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
5417         default values for public key and public key token.
5418
5419 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
5420
5421         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
5422         field to keep it in synch with the managed object.
5423
5424         * marshal.c (emit_marshal_object): Add support for byref marshalling of
5425         delegates. Fixes #351520.
5426
5427         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
5428         contains defined memory.
5429         
5430         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
5431
5432         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
5433         
5434         * sgen-gc.c (check_consistency): New helper function to do a consistency check
5435         of the GC data structures.
5436
5437         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
5438
5439         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
5440         
5441         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
5442         barrier.
5443         (mono_array_clone_in_domain): Ditto.
5444         (mono_array_clone_in_domain): Ditto.
5445
5446         * threads.c (start_wrapper): Register the thread start argument as a GC root.
5447         (cache_culture): Use a write barrier.
5448
5449         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
5450         (ves_icall_get_property_info): Ditto.
5451
5452         * object.h (MONO_STRUCT_SETREF): New macro.
5453
5454         * class-internals.h (MonoStats): Add some GC statistics.
5455
5456         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
5457
5458 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
5459
5460         * exception.c (mono_exception_from_name_two_strings):
5461         Break from loop after method is found.
5462
5463 2008-01-04  Dick Porter  <dick@ximian.com>
5464
5465         * process.c (process_module_string_read): Rename variable to
5466         reflect correct usage, after fixing bug 345972.
5467
5468 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
5469
5470         * verify.c (mono_type_create_fnptr_from_mono_method): 
5471         created a MonoType function pointer instance to be used during
5472         verification. The verifier releases this memory at end.
5473
5474         * verify.c (mono_method_is_constructor): extracted repeated
5475         checks for constructor into a single class.
5476
5477         * verify.c (do_push_field): use new extracted method
5478         for constructor check.
5479
5480         * verify.c (do_newobj): same.
5481
5482         * verify.c (do_ldftn): renamed to do_load_function_ptr
5483         and make it verify ldvirtftn too.
5484
5485         * verify.c (mono_method_verify: proper verification
5486         of ldvirtftn. release created MonoMethod instances.
5487
5488 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
5489
5490         * verify.c (token_bounds_check): added.
5491
5492         * verify.c (do_ldftn): added.
5493
5494         * verify.c (mono_method_verify): proper verificartion of ldftn.
5495
5496 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
5497
5498         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
5499         than the table row count. It's the resposibility of the caller to
5500         make the bounds check and raise the correct error.
5501
5502         * metadata.c (mono_metadata_decode_row_col): Same.
5503
5504         * loader.c (mono_get_method_from_token): perform bounds check
5505         on token for methoddef table.
5506
5507 2007-12-29  Miguel de Icaza  <miguel@novell.com>
5508
5509         * icall.c
5510         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
5511         assert into a negative result, the managed code already coped with
5512         that.
5513
5514         Some folks on Windows reported this error. 
5515
5516 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
5517
5518         * appdomain.c: Bump corlib version.
5519         * icall.c:
5520         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
5521         CultureInfo.CreateCulture to create CultureInfo for name.
5522         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
5523         create CultureInfo for name. Fixes bug #347174.
5524
5525 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
5526
5527         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
5528         flags.
5529
5530         * verify.c (is_valid_branch_instruction): allow branching to the
5531         first instruction of the protected block.
5532
5533         * verify.c (is_valid_cmp_branch_instruction): same.
5534
5535         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
5536         avoid double initialization.
5537
5538         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
5539         detect which cases the eval stack should just be copied.
5540
5541         * verify.c (mono_method_verify): check if the eval stack
5542         is empty when entering a protected block.
5543
5544 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
5545
5546         * verify.c: added is_clause_in_range, is_clause_inside_range,
5547         is_clause_nested and verify_clause_relationship. They perform
5548         the verifications stated in P1 12.4.2.7.
5549
5550         * verify.c (mono_method_verify): remove some unused variables,
5551         add the new exception clause checks, add instruction border
5552         checks for protected block start/end, improved some error 
5553         messages and fixed a bug in the way invalid instruction access
5554         is detected.
5555
5556 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
5557
5558         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
5559         from GC 7.0 if available.
5560
5561         * object.c: Remove an unused define.
5562         
5563         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
5564
5565         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
5566
5567         * null-gc.c (mono_gc_make_descr_for_array): Implement.
5568
5569         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
5570
5571         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
5572         to take the same arguments as the other make_descr functions.
5573
5574         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
5575
5576         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
5577         directly.
5578
5579         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
5580         mini.c.
5581
5582         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
5583         call to boehm-gc.c.
5584
5585         * boehm-gc.c (mono_gc_register_root): Fix a warning.
5586
5587         * null-gc.c (mono_gc_register_root): Fix a warning.
5588
5589         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
5590
5591         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
5592         (mono_gc_base_init): Call GC_init ().
5593
5594         * null-gc.c: Define mono_gc_register_root () as a no-op.
5595
5596         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
5597
5598 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
5599
5600         * verify.c: add prototype for merge_stacks at top
5601
5602         * verify.c (do_switch): added.
5603
5604         * verify.c (merge_stacks): on some cases the stack merging
5605         was not happening properly. Unequal stack sizes at merge
5606         points should be invalid.
5607
5608         * verify.c (mono_method_verify): added more debug info on stack state.
5609         verify switch properly.
5610
5611 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
5612
5613         * method-builder.h: New file, moved the mono_mb_ declarations here from 
5614         marshal.h.
5615
5616         * boehm-gc.c marshal.c: Include method-builder.h.
5617
5618         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
5619
5620         * marshal.c: Remove some code which is now in method-builder.c.
5621
5622 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
5623
5624         * method-builder.c: New file, extraction of the method builder functionality 
5625         from marshal.c.
5626
5627         * marshal.c: Move the mb functions into method-builder.c.
5628
5629         * marshal.h marshal.c: Export some mono_mb_... functions.
5630
5631         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
5632
5633         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
5634         the caller.
5635
5636         * class.c (mono_class_get_full): Check the token type in the dynamic case.
5637
5638         * loader.c (mono_field_from_token): Ditto.      
5639
5640         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
5641         type as well.
5642         
5643         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
5644         Fixes #342565.
5645
5646         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
5647         a helper function for setting it.
5648
5649         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
5650
5651         
5652         * assembly.c: Significally simplify code now that referenced assemblies are 
5653         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
5654
5655         * threads.h: Don't include  the internal threads-types.h header file. Fixes
5656         #349952.
5657
5658 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
5659
5660         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
5661         instructions that were target of branches or are at protected block boundaries.
5662
5663         * verify.c (in_same_block): handle filter clauses.
5664
5665         * verify.c (is_valid_branch_instruction): added. checks the target of
5666         instructions br or brtrue/false.
5667
5668         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
5669         binary branch instructions such as beq and bge.
5670
5671         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
5672         and made it pin the instruction as been part of the exception block.
5673
5674         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
5675         of in_same_block.
5676
5677         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
5678         of in_same_block.
5679
5680         * verify.c (do_ret): ret from a protected block is unverifiable and
5681         not invalid.
5682
5683         * verify.c (do_static_branch): verify br and br.s instructions.
5684
5685         * verify.c (merge_stacks): add extra param to support detection
5686         of branches in the middle of instructions.
5687         
5688         * verify.c (mono_method_verify): verify branches and exception blocks
5689         that target the middle of instructions. Proper verification of br and br.s.
5690
5691 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
5692
5693         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
5694         skip_visibility field.
5695         (reflection_methodbuilder_from_dynamic_method): Ditto.
5696
5697         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
5698         registrations. Fixes #348193.
5699
5700         * threads.h: Move the internal mono_thread_get_pending_exception () to
5701         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
5702
5703 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
5704
5705         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
5706         icall registration. Fixes #348193.
5707
5708         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
5709         for corlib classes into object. Fixes #349621.
5710
5711 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
5712
5713         * icall.c (property_accessor_nonpublic): new function to determine
5714         whether an accessor allows a property to be considered non-public.
5715         Returns false for private accessor(s) from parent class, and internal
5716         accessor(s) from parent on 2.0 profile (and higher).
5717         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
5718         to determine whether property should be included if NonPublic flag
5719         is set. Fixes bug #349078.
5720
5721 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
5722
5723         * verify.c (init_stack_with_value): added.
5724
5725         * verify.c (mono_method_verify): extracted common
5726         code for exception initialization into init_stack_with_value.
5727
5728         * verify.c (mono_method_verify): initialize the exception
5729         for handler clauses as well.
5730
5731         * verify.c (mono_method_verify): fix the exception clause
5732         ordering rules, it should use handler end offset and not
5733         start offset.
5734
5735 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
5736
5737         * rawbuffer.c: remove useless warning.
5738
5739 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
5740
5741         * threads.h, threads-types.h: move functions to the correct header
5742         (fixes bug#349952).
5743
5744 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5745
5746         * verify.c (mono_method_verify): proper verification
5747         of exception handling clauses ranges and fallthru in
5748         and out of protected blocks.
5749
5750 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5751
5752         * verify.c (mono_method_verify): fixed compilation issue.
5753
5754 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5755
5756         * verify.c (mono_method_verify): a printf slipped in, changed
5757         to use verifier debug macro.
5758
5759 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
5760
5761         * verify.c (is_correct_leave): check for filter clauses.
5762
5763         * verify.c (do_filter): added.
5764
5765         * verify.c (mono_method_verify): property verification of leave.
5766
5767
5768 2007-12-18  Mark Probst  <mark.probst@gmail.com>
5769
5770         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
5771         Win32 build, until we figure out how to do the proper thing on
5772         Win32.
5773
5774 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
5775
5776         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
5777         by the previous patch.
5778         
5779         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
5780         the assembly resolve handler for refonly assemblies.
5781
5782 2007-12-17  Mark Probst  <mark.probst@gmail.com>
5783
5784         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
5785         Make sure only one thread is allowed to commence shutdown, and
5786         don't allow new threads to be started once shutdown is in
5787         progress.
5788
5789 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
5790
5791         * verify.c (is_correct_endfilter): added.
5792
5793         * verify.c (is_unverifiable_endfilter): added.
5794
5795         * verify.c (do_endfilter): added.
5796
5797         * verify.c (mono_method_verify): property verification of endfilter
5798         and fixed a corner case or endfinally.
5799
5800 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
5801
5802         * verify.h: new flags to support fail fast of unverifiable code and
5803         do non-strict verification. Non-strict verification is required to
5804         have MS runtime compatibility. There are a huge amount of unverifiable
5805         code that it accepts as verifiable. The strict mode verifies the code
5806         as the specs says.
5807         Non-strict mode will be required in cases where code needs to be
5808         accepted as verifiable but fails under strict mode.
5809
5810         * pedump.c: added support to fail fast and non-strict verification.
5811
5812         * verify.c: added support for both fail fast and non-strict verification.
5813
5814 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
5815
5816         * verify.c (is_correct_endfinally): added.
5817
5818         * verify.c (mono_method_verify): property verification of endfinally.
5819
5820 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5821
5822         * verify.c (in_any_block): check for filter clauses.
5823
5824         * verify.c (is_correct_rethrow): added.
5825
5826         * verify.c (mono_method_verify): property verification of rethrow.
5827
5828         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
5829
5830 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5831
5832         * verify.c (do_throw): added.
5833
5834         * verify.c (mono_method_verify): property verification of throw
5835
5836 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
5837
5838         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
5839         assemblies. Fixes #346425.
5840
5841 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
5842
5843         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
5844         FieldBuilders.
5845
5846         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
5847
5848         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
5849         prevent asserts when this is called with a token which might not be valid.
5850
5851         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
5852         lookup_dynamic_token_class with valid_token == FALSE.
5853
5854         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
5855
5856         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
5857
5858         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
5859         
5860 2007-12-10  Mark Probst  <mark.probst@gmail.com>
5861
5862         * gc.c: Don't delay threadpool thread finalization unless Mono is
5863         shutting down.
5864
5865 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
5866
5867         * threads.c: turn an assert into a non-fatal warning.
5868
5869 2007-12-09  Robert Jordan  <robertj@gmx.net>
5870
5871         * icall.c (GetVirtualMethod): Add missing argument validation.
5872
5873 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5874
5875         * verify.c (do_cast): added.
5876
5877         * verify.c (mono_method_verify): property verification of castclass and isinst.
5878
5879
5880 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5881
5882         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
5883
5884         * verify.c (do_stelem): added.
5885
5886         * verify.c (mono_method_verify): property verification of stelem.X.
5887
5888 2007-12-07  Mark Probst  <mark.probst@gmail.com>
5889
5890         * class.c, class-internals.h: Introduce an environment variable
5891         (MONO_GENERIC_SHARING) through which the extent of generic code
5892         sharing can be controlled (share all classes, share only corlib
5893         classes, or share nothing).
5894
5895         * object.c: Only create runtime generic context for classes for
5896         which sharing is enabled.
5897
5898 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5899
5900         * verify.c (do_ldelem): refactor it to work with ldelem.any.
5901
5902         * verify.c (mono_method_verify): property verification of ldelem.any.
5903
5904 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5905
5906         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
5907         added ldelem.X opcodes.
5908
5909         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
5910
5911         * verify.c: proper verification of ldelem.X 
5912
5913 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
5914
5915         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
5916
5917 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5918
5919         * verify.c (mono_method_verify): null literal requires special handling,
5920         the value pushed on stack need to be flagged as so.
5921
5922         * verify.c (do_ldelema): Verify ldelema properly.
5923
5924 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5925
5926         * verify.c: Verify ldlen properly.
5927
5928 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
5929
5930         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
5931         to the target object's type. Fixes #346160.
5932
5933 2007-12-05  Dick Porter  <dick@ximian.com>
5934
5935         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
5936         Solaris needs the same workaround as BSD-derived systems.  Fixes
5937         bug 323524, patch by Burkhard Linke
5938         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
5939
5940 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
5941
5942         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
5943         handle to use when error dialog is shown; otherwise, update mask
5944         to show no error dialog when an error occurs.
5945
5946 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
5947
5948         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
5949
5950         * class.c (mono_class_get_field_default_value): New helper function to initialize
5951         field->def_type and field->data.
5952
5953 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
5954
5955         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
5956         the general one.
5957
5958         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
5959
5960         * marshal.c: Avoid depending on delegate->method_info being set.
5961
5962         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
5963         
5964         * object.c (mono_delegate_ctor): Set delegate->method.
5965
5966         * object-internals.h (struct _MonoDelegate): Add 'method' field.
5967
5968         * appdomain.c: Bump corlib version.
5969
5970 2007-11-27  Raja R Harinath  <harinath@gmail.com>
5971
5972         * metadata.c (mono_generic_inst_equal_full): Short-circuit
5973         equality check if we're comparing canonicalized MonoGenericInsts.
5974
5975 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
5976
5977         * class.c (generic_array_methods): Call mono_class_setup_methods () before
5978         accessing class->methods.
5979
5980 2007-11-22  Dick Porter  <dick@ximian.com>
5981
5982         * threads.c: Ensure that the synch_cs is set before trying to use
5983         it.
5984
5985 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
5986
5987         * profiler.c: r89126 broke the statistial profiler, unbreak.
5988
5989 2007-11-22  Martin Baulig  <martin@ximian.com>
5990
5991         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
5992
5993         * mono-debug.c
5994         (mono_debug_debugger_version): Bump to 3.
5995         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
5996         -> mono_debugger_class_initialized().
5997
5998         * mono-debug-debugger.c
5999         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
6000
6001         * class.c
6002         (mono_debugger_start_class_init_func): Removed.
6003         (mono_debugger_class_loaded_methods_func): Added.
6004         (mono_class_setup_methods): Call it here.
6005
6006 2007-11-22  Martin Baulig  <martin@ximian.com>
6007
6008         * mono-debug.c
6009         (mono_debug_add_delegate_trampoline): New public method.
6010         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
6011
6012         * mono-debug.h
6013         (MonoSymbolTable): Added `global_data_table'.
6014         (MonoDebuggerTypeKind): Removed.
6015
6016 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
6017
6018         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
6019         these methods.
6020
6021         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6022         
6023 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
6024
6025         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
6026
6027 2007-11-20  Martin Baulig  <martin@ximian.com>
6028
6029         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
6030
6031         * mono-debug-debugger.c
6032         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
6033         (mono_debugger_remove_breakpoint): Likewise.
6034         (mono_debugger_check_breakpoints): Likewise.
6035         (mono_debugger_register_class_init_callback): New public method.
6036         (mono_debugger_remove_class_init_callback): Likewise.
6037         (mono_debugger_add_type): Likewise.
6038
6039         * mono-debug-debugger.h
6040         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
6041
6042 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
6043
6044         * class.c: more interface implementations needed for the
6045         array enumerator (fixes bug #341112).
6046
6047 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
6048
6049         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
6050         fix ParamName of ArgumentNullExceptions.
6051
6052 2007-11-17  Miguel de Icaza  <miguel@novell.com>
6053
6054         * reflection.c (mono_reflection_encode_sighelper): Generate the
6055         modopts and modreqs.   I have a useless test that crashes monodis,
6056         but that shows the code working.
6057
6058 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
6059
6060         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
6061         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
6062
6063 2007-11-15  Dick Porter  <dick@ximian.com>
6064
6065         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
6066         When joining a thread, it's the thread that's calling Join that
6067         gets WaitSleepJoin state not the target.  Fixes the standalone
6068         test case in bug 334740, and hopefully the whole bug too.
6069
6070 2007-11-15  Dick Porter  <dick@ximian.com>
6071
6072         * process.c: Read file version info from the files pointed at by
6073         process modules, not the current process.  Fixes bug 315969.
6074
6075         Use windows typedef names in some places to fix warnings on the
6076         windows build.
6077
6078 2007-11-15  Mark Probst  <mark.probst@gmail.com>
6079
6080         * image.c, metadata-internals.h: Added a generic_class_cache hash
6081         to MonoImage for looking up generic classes when sharing generics.
6082
6083 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
6084
6085         * sgen-gc.c: warning cleanups.
6086
6087 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
6088
6089         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
6090         inherited properties.
6091
6092 2007-11-14  Mark Probst  <mark.probst@gmail.com>
6093
6094         * object.c, class-internals.h: Added more information to the
6095         runtime generic context.
6096
6097 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
6098
6099         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
6100         instead of just the target method. Generalize the abstract method handling to
6101         handle any non-static method.
6102
6103         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
6104         mono_marshal_get_delegate_invoke () signature change.
6105
6106 2007-11-13  Mark Probst  <mark.probst@gmail.com>
6107
6108         * class.c, class-internals.h: Made
6109         mono_type_get_basic_type_from_generic () public.  Fixed member
6110         access check for shared generics.
6111
6112         * loader.c: Don't insert field into field cache if it's part of a
6113         non-inflated generic class.
6114
6115         * domain.c, domain-internals.h: The generic sharing context is now
6116         part of the jit info data structure.  Added two accessor
6117         functions.
6118
6119 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
6120
6121         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
6122         the array Get/Set/Address methods, since the JIT inlines them.
6123
6124         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
6125
6126         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
6127         (mono_image_init): Initialize runtime_invoke_direct_cache.      
6128
6129         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
6130         mono_marshal_get_delegate_invoke signature change.
6131
6132         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
6133         an additional argument. Add support for invoking abstract methods.
6134
6135         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
6136
6137         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
6138
6139 2007-11-09  Mark Probst  <mark.probst@gmail.com>
6140
6141         * class.c: Do field layout for open generic classes as well.
6142
6143 2007-11-09  Mark Probst  <mark.probst@gmail.com>
6144
6145         * gc.c, gc-internal.h: Don't finalize threadpool threads with
6146         other objects, because the threadpool is still around.  Put them
6147         in a list instead and after finalizing all other objects in the
6148         root domain shut down the thread pool and then finalize the
6149         threads.  Fixes bug #337383.
6150
6151         * threads.c, thread-types.h: New mono_thread_create_internal()
6152         function for marking a thread with the threadpool flag before it
6153         started.  Set synch_cs to NULL after freeing it.
6154
6155         * threadpool.c: Mark threadpool threads before they start.
6156
6157 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
6158
6159         * reflection.h, reflection.c: don't export random functions
6160         and lazy load dbnull and missing objects.
6161
6162 2007-11-07  Jonathan Chambers <joncham@gmail.com>
6163
6164         * class.c: Initialize COM types if COM interfaces
6165         are present (not just COM classes).
6166         
6167         Code is contributed under MIT/X11 license.
6168
6169 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
6170         * reflection.c:
6171         create_dynamic_mono_image: hook module profiler events (dynamic case).
6172         mono_image_basic_init: hook assembly profiler events (dynamic case).
6173
6174 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
6175         * profiler.c:
6176         simple_appdomain_unload: completely terminate the profiler
6177         instead of only processing the statistical samples.
6178         simple_shutdown: make sure this is really called exactly once,
6179         even in multithreaded applications, and always listen to
6180         appdomain events.
6181         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
6182         here, the "[un]load" functions will do it.
6183         Fixes bugs #333791 and #325261.
6184
6185 2007-11-07  Geoff Norton  <gnorton@novell.com>
6186
6187         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
6188         rather than depend on __APPLE__.
6189
6190 2007-11-07  Mark Probst  <mark.probst@gmail.com>
6191
6192         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
6193
6194 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
6195
6196         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
6197         UTF16 MonoString. Fix the crash from bug #335488
6198
6199 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
6200
6201         * marshal.c: Correct (for non-Win32 OS) length != size in 
6202         mono_string_from_bstr. Fix #339530.
6203
6204 2007-11-06  Geoff Norton  <gnorton@novell.com>
6205
6206         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
6207         to succeed
6208
6209 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
6210
6211         * process.c: Added run-time GetProcessId API detection for Windows.
6212
6213 2007-11-04  Miguel de Icaza  <miguel@novell.com>
6214
6215         * reflection.c  (mono_param_get_objects): If a parameter has the
6216         attribute [System.Runtime.InteropServices.Optional] we should
6217         set the DefaultValue of the ParameterInfo to be
6218         System.Reflection.Missing instead of DBNull.
6219
6220         See bug #339013.
6221
6222         (mono_get_reflection_missing_object): New method,
6223         returns the System.Reflection.Missing.Value singleton instance.
6224
6225 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
6226
6227         * culture-info-table.h : regenerated.
6228
6229 2007-11-02  Jonathan Chambers <joncham@gmail.com>
6230
6231         * icall.c: Use GetEnvironmentStrings on windows
6232         so we are using the same environment block as 
6233         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
6234         #333740.
6235         
6236         Code is contributed under MIT/X11 license.
6237
6238 2007-10-31  Martin Baulig  <martin@ximian.com>
6239
6240         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
6241
6242         * mono-debug-debugger.h
6243         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
6244
6245 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
6246
6247         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
6248         classes.
6249
6250 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
6251
6252         * culture-info-table.h : regenerated.
6253
6254 2007-10-30  Robert Jordan  <robertj@gmx.net>
6255
6256         * icall-def.h, icall.c:
6257         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
6258
6259         Code is contributed under MIT/X11 license.
6260
6261 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
6262
6263         * class.c (mono_class_setup_vtable): Find the inflated methods in the
6264         inflated class instead of inflating them again.
6265         
6266         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
6267         dynamic case.
6268
6269         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
6270         Call setup_supertypes () after klass->parent is set.
6271         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
6272
6273         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
6274         for inflated instances of not yet created dynamic generic classes.
6275         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
6276         times from inflated_method.
6277         (methodbuilder_to_mono_method): Ditto.
6278
6279 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
6280
6281         * gc.c: code cleanup and removed old untested option of not creating the
6282         finalizer thread.
6283
6284 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
6285
6286         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
6287         creating a jump trampoline for dynamic methods.
6288
6289 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
6290
6291         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
6292         generic TypeBuilders when called from another method of the same type (bug #335131).
6293
6294
6295 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
6296
6297         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
6298         doesn't seem to work perfectly.
6299         
6300         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
6301         called multiple times.
6302         (methodbuilder_to_mono_method): Ditto.
6303         (resolve_object): Inflate FieldBuilder's.
6304
6305 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6306
6307         * string-icalls.c, string-icalls.h, appdomain.c: patch from
6308         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
6309         RemoveEmptyEntries in the string.Split implementation (bug #322375).
6310
6311 2007-10-26  Dick Porter  <dick@ximian.com>
6312
6313         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
6314         Thread initialisation changes
6315
6316 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
6317
6318         * verify.c: fix compatibility check between arrays and System.Array
6319
6320 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
6321
6322         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
6323         too. Fixes #336999.
6324
6325 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
6326
6327         * object.c (mono_value_box): Use typed allocation here.
6328
6329 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
6330
6331         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
6332         trampoline instead of compiling the method right away.
6333
6334         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
6335
6336 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
6337
6338         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
6339         related fields for dynamic classes. Fixes #334493.
6340
6341 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
6342
6343         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
6344         
6345         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
6346
6347         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
6348         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
6349
6350         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
6351
6352         * reflection.c (create_generic_typespec): Initialize klass->generic_container
6353         if needed.
6354         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
6355
6356 2007-10-18  Jonathan Chambers <joncham@gmail.com>
6357
6358         * marshal.c: Use correct key when removing item
6359         from ccw_hash.
6360         
6361         Code is contributed under MIT/X11 license.
6362
6363 2007-10-17  William Holmes  <billholmes54@gmail.com>
6364
6365         *marshal.c: Adding a case to marshal booleans to U1
6366
6367         Code is contributed under MIT/X11 license.
6368
6369 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
6370
6371         * class.c (mono_class_from_name): Search the modules compromising dynamic
6372         assemblies. Fixes #331601.
6373
6374 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
6375
6376         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
6377         exception if the type name contains an assembly component. Fixes #334203.
6378
6379         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
6380         modules inside dynamic assemblies. Fixes #334200.
6381         
6382         * reflection.c: Set image->public_key and image->public_key_length;
6383
6384         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
6385         fields.
6386
6387         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
6388         
6389 2007-10-16  Mark Probst  <mark.probst@gmail.com>
6390
6391         * metadata.c: Implemented correct comparing of generic classes.
6392         An inflated generic class can be equal to a non-inflated one if it
6393         is inflated with generic type variables as type arguments.  Fixes
6394         bug #333798.
6395
6396 2007-10-15  Dick Porter  <dick@ximian.com>
6397
6398         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
6399         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
6400         81646.
6401
6402         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
6403         instead of a monitor lock.  This means that monitor_try_enter and
6404         co can set the thread state safely.
6405         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
6406         thread_interrupt_requested, so interrupt actually works.
6407
6408         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
6409         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
6410         state accessor function
6411
6412 2007-10-15  Martin Baulig  <martin@ximian.com>
6413
6414         * mono-debug.h
6415         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
6416         the debugger with the current runtime.
6417
6418 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
6419
6420         * object.c, object-internals.h: added the ability to set a single
6421         trampoline for all the slots in a vtable.
6422
6423 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6424
6425         * marshal.c: deal with a possible race condition during multicast
6426         delegate invocation.
6427
6428 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6429
6430         * class.c: ensure value type methods don't have the synchronized
6431         flag set.
6432
6433 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
6434
6435         * string-icalls.c, string-icalls.h: reverted unapproved patch that
6436         breaks the build.
6437
6438 2007-10-11  Joel Reed  <joelwreed@comcast.com>
6439
6440         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
6441         to take an options parameter so that empty entries can be removed during
6442         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
6443
6444 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6445
6446         * marshal.c: make sure we don't store the signature from a dynamic
6447         method into the runtime invoke cache (bug #327189).
6448
6449 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6450
6451         * marshal.c: make sure the wrapper methods are properly initialized.
6452
6453 2007-10-11  Mark Probst  <mark.probst@gmail.com>
6454
6455         * metadata.c, metadata-internals.h: Generalized
6456         mono_type_stack_size() to mono_type_stack_size_internal() which
6457         takes an additional argument specifying whether it allows open
6458         types.
6459
6460 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6461
6462         * verify.c (do_invoke_method): handle typedbyref params
6463         correctly and check for unverifiable return values.
6464
6465         * verify.c (do_newobj): fix a warning.
6466
6467 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6468
6469         * verify.c: don't tread typedbyref as allways unverifable,
6470         so uses, like (ld/st)loc.0 are valid. verify for the cases
6471         that it matters, like boxing related operations.
6472
6473 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6474
6475         * verify.c: add verification of the newobj opcode. verification
6476         of delegate instantation still missing due ldftn and virldftn not
6477         pushing the function type on stack
6478
6479 2007-10-08  Mark Probst  <mark.probst@gmail.com>
6480
6481         * class-internals.h: Runtime generic context data structure
6482         definition.
6483
6484         * object.c: Initialization of runtime generic context at runtime
6485         vtable creation time.
6486
6487 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
6488         * class.c (mono_class_create_from_typedef,
6489         mono_class_from_generic_parameter, mono_ptr_class_get,
6490         mono_fnptr_class_get, mono_bounded_array_class_get)
6491         * domain.c (mono_domain_create, mono_domain_free)
6492         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
6493         * image.c (do_mono_image_load, mono_image_close):
6494         Hooked up load-unload profiler events.
6495
6496 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
6497
6498         * domain.c: track statistics about the actual amount of native code
6499         allocated.
6500
6501 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
6502
6503         * class.c: the valuetype enumerators don't have the additional
6504         supertypes interfaces.
6505
6506 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6507
6508         * class.c: need more interfaces setup for the IEnumerator<T>
6509         object created for arrays (tests/ienumerator-interfaces.2.cs).
6510
6511 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
6512
6513         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
6514
6515 2007-10-05  Alp Toker  <alp@atoker.com>
6516
6517         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
6518         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
6519         #315863.
6520
6521 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
6522
6523         * verify.c (verify_type_compatibility_full): verification of
6524         compatibility improved, validates correctly non-strict checks between
6525         native int and I4 types different than (unsigned)int32.
6526
6527         * verify.c (do_store_indirect): added, do all verification of
6528         ldind.X opcodes. 
6529
6530         * verify.c (get_load_indirect_mono_type): renamed to
6531         get_indirect_op_mono_type, as it now returns the MonoType for 
6532         ldind.X and stind.X opcodes.
6533
6534 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
6535
6536         * reflection.c: Fix the encoding of generic type definition for
6537         TypeBuilders.
6538
6539         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
6540         mono_image_typedef_or_ref but allows to specify if typespec lookups should
6541         be made. Typespec check is done prior to typeref cache lookup.
6542
6543         * reflection.c (mono_image_typedef_or_ref): now just delegate to
6544         mono_image_typedef_or_ref_full.
6545
6546         * reflection.c (encode_generic_class): encode the generic class
6547         directly instead of calling encode_type.
6548
6549         * reflection.c (encode_type): encode the generic type definition
6550         MonoClass as a generic instantiation.
6551
6552         * reflection.c (create_typespec): cache typespec tokens in
6553         the assembly->typespec cache. Don't create typespec for a generic
6554         instance MonoClass. Create typespec for the generic type defintion.
6555
6556         * reflection.c (create_generic_typespec): encode the generic
6557         class directly instead of calling encode_type.
6558
6559         * reflection.c (mono_image_create_token): encode the generic
6560         type definition not using a typespec for MonoType instances.
6561
6562
6563 2007-10-04  Raja R Harinath  <rharinath@novell.com>
6564
6565         Fix #328812
6566         * class.c (mono_image_init_name_cache): Don't return nested
6567         'protected internal' classes.
6568         (mono_class_from_name_case): Likewise.
6569
6570 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
6571
6572         * icall-def.h, icall.c : get_bundled_machine_config() is now the
6573           common function used by both DefaultConfig in System.dll and
6574           InternalConfigurationHost in System.Configuration.dll.
6575
6576 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6577
6578         * class.c: automatically add to vectors only a few essential explicit
6579         generic interfaces. The rest of the interfaces that arrays should
6580         provide are currently implicitly added (but still not lazily, see the
6581         design in the discussion of bug#325495 for the details of what is
6582         needed for that). Additionally, implicit interfaces are assigned the
6583         same vtable slot as the explicit interfaces (as they are compatible):
6584         this enables huge memory savings since we don't need to instantiate
6585         as many memthods and as large vtables anymore. Also, Since
6586         GetEnumerator<T> returns an instance of a type that is required to
6587         support a similarly large set of interfaces as arrays, we add
6588         implicit interfaces and interface offset sharing support to those
6589         types, too. This change adds all the required interfaces so that
6590         the anonarray.cs test case in the bug report works (we don't add
6591         all the interfaces to arrays of arrays 3-level deep and more because
6592         of the memory requirements explained in the bug and since they are much
6593         less common: the lazy-loading support will enabled them to work, too).
6594
6595 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
6596
6597         * verify.c (merge_stacks): major clean up, all type compatibility
6598         checks are done by verify_type_compatibility. This fix my earlier lack
6599         of understanding of the CLR type system and merge_stacks no longer looks
6600         scary.
6601
6602         * verify.c: fixed some bad spelling.
6603
6604 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
6605
6606         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
6607         a given stack slock.
6608         
6609         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
6610         verify_type_compatibility_full. This removed a near indentical function and fixed
6611         handling of Int32 and IntPtr across all opcodes.
6612
6613 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6614
6615         * class.c: only vectors have the additional generic interfaces.
6616
6617 2007-10-01  Jonathan Chambers <joncham@gmail.com>
6618
6619         * mono-config.c: Use g_strcasecmp instead of
6620         strcasecmp like everywhere else to fix
6621         compilation with MSVC.
6622         
6623         Code is contributed under MIT/X11 license.
6624
6625 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6626
6627         * object.c, object-internals.h: refactored the IMT code to enable
6628         building a single slot at a time and lazily creating the IMT trampolines
6629         and thunks.
6630
6631 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
6632
6633         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
6634
6635         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
6636         Fixes #328501.
6637         
6638 2007-09-29  Raja R Harinath  <harinath@gmail.com>
6639
6640         * loader.c (method_from_methodspec): Rearrange to avoid
6641         un-necessary exposition.  Don't assert out if the method's
6642         declaring type is a generic type definition.
6643
6644 2007-09-28  Martin Baulig  <martin@ximian.com>
6645
6646         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
6647
6648 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
6649
6650         * class-internals.h: optimize field layout of MonoClass to
6651         requires less cachelines at runtime and save a few bytes on 64 bit
6652         systems.
6653
6654 2007-09-28  Jb Evain  <jbevain@novell.com>
6655
6656         * reflection.c: when encoding type names in custom attributes,
6657         if the type is a closed generic type, its generic arguments
6658         have to be serialized as AssemblyQualifiedName, so that when
6659         they are deserialized, it's possible to re-create them properly.
6660         Fixes #329450.
6661
6662
6663 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
6664
6665         * object.c, class-internals.h: added delegate-creation counter.
6666
6667 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
6668
6669         * class.c: cleanup of the code that synthetizes interfaces for
6670         arrays in 2.0: saves quit a bit of corlib mempool memory.
6671         Code to fix bug #325495 ifdeffed out for now until the issues
6672         with memory usage and O(n^2) behaviour are fixed.
6673
6674 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6675
6676         * marshal.c: when possible, do not duplicate the name of the methods
6677         in the method builder and in the generated MonoMethod.
6678
6679 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
6680         * verify.c: added support for type checking ldind_* opcodes.
6681
6682 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
6683
6684         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
6685         which is used to distinguish the fully open instantiation of a TypeBuilder
6686         with the rest. This temporary hack is required to restore the property that
6687         the fully open instantiation is the same type of the generic type definition.
6688
6689         * class-internals.h (mono_generic_class_is_generic_type_definition):
6690         new function as part of the internal API.
6691
6692         * class.c (inflate_generic_type): return NULL when the generic inst is
6693         fully open. The fully open generic type is now the same as the generic type
6694         definition for non TypeBuilder types.
6695
6696         * class.c (mono_generic_class_get_class): removed assert since it is
6697         no longer valid, gklass->cached_class can point to the generic type definition.
6698
6699         * class.c (mono_generic_class_is_generic_type_definition): new.
6700
6701         * metadata.c (mono_generic_class_hash): added is_tb_open field
6702         to the hash calculation.
6703
6704         * metadata.c (free_generic_class): if the generic class is associated
6705         with the generic type definition, its field will come from the mempool and
6706         must not be freed.
6707
6708         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
6709         new, this function identifies the corner case of a TypeBuilder fully open
6710         instantiation.
6711
6712         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
6713         for lookup. Set gclass->cached_class to be the container class in case of
6714         the fully open instantiation of non TypeBuilder types.
6715
6716         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
6717         to compare generic classes.
6718
6719         * reflection.c (method_encode_methodspec): remove assert that
6720         no longer is valid.
6721
6722         * reflection.c (mono_reflection_generic_class_initialize): add
6723         an aditional assert to ensure the proper type is used.
6724
6725 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
6726
6727         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
6728         to enjoy it.
6729
6730 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
6731
6732         * verify.c (push_arg): Fixed support for ldarga
6733         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
6734         MonoType used as first arg in case of instance calls.
6735
6736 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
6737
6738         * verify.c: Support for verifying VAR and MVAR types, 
6739
6740 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
6741
6742         * icall.c (ves_icall_get_property_info): Set the reflected type of the
6743         accessors correctly.
6744
6745 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
6746
6747         * threads.c: support OSX and other systems in
6748         mono_thread_get_stack_bounds (bug #328026).
6749
6750 2007-09-25  Martin Baulig  <martin@ximian.com>
6751
6752         * mono-debug.h
6753         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
6754
6755 2007-09-24  Martin Baulig  <martin@ximian.com>
6756
6757         * mono-debug.h
6758         (MonoDebugClassEntry): Moved the definition of this struct into
6759         mono-debug.c to make it private.
6760
6761         * mono-debug.c
6762         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
6763         type table per symbol file, we don't need to store the symfile id
6764         any longer.
6765
6766 2007-09-24  Martin Baulig  <martin@ximian.com>
6767
6768         Create one type table per symbol file, since a `MonoClass *' gets
6769         invalid when its image is unloaded.
6770
6771         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
6772         (MonoDebugHandle): Added `type_table'.
6773
6774 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
6775
6776         * mempool.c, mempool.h: added mono_mempool_new_size () API
6777         to be able to specify a smaller initial size for the pool.
6778         Adjusted the code to slowly increase pool size before using
6779         the previous default size.
6780         * image.c: use a small initial size for image mempools.
6781
6782 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
6783
6784         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
6785         Fixes ##320990.
6786
6787         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
6788         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
6789
6790 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
6791
6792         * metadata.c (mono_type_create_from_typespec): Remove an invalid
6793         free. Fixes #327438.
6794
6795 2007-09-21  Raja R Harinath  <harinath@gmail.com>
6796
6797         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
6798         generic instantiations, etc.
6799         <MONO_TYPE_ARRAY>: Likewise.
6800
6801 2007-09-21  Martin Baulig  <martin@ximian.com>
6802
6803         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
6804         these structs were never defined.
6805         (MonoDebugHandle): Removed the `_priv' field, it was never used.
6806
6807 2007-09-21  Martin Baulig  <martin@ximian.com>
6808
6809         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
6810
6811 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
6812
6813         * image.c: removed the guid hash tables: we can get the same info
6814         without the additional memory usage hit (partially fixes also bug #327052).
6815
6816 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6817
6818         * profiler.h, profiler-private.h, profiler.c: add a new profiler
6819         event to handle unloading methods. After the event is called, the
6820         corresponding MonoMethod* must be considered invalid.
6821         * loader.c (mono_free_method): call the new mono_profiler_method_free
6822         event.
6823
6824 2007-09-20  Mark Probst  <mark.probst@gmail.com>
6825
6826         * domain-internals.h: New flag in MonoJitInfo which marks shared
6827         generic methods.  New hash table (shared_generics_hash) in
6828         MonoDomain to keep track of shared generic methods.  Prototypes
6829         for functions to register and lookup shared generic methods.
6830
6831         * domain.c: Support for registering and looking up shared generic
6832         methods via a hash table (shared_generics_hash) in MonoDomain.
6833
6834         * class-internals.h: New exception to signal failure of shared
6835         compilation of a generic method.  New counters for generics
6836         sharing in MonoStats.
6837
6838 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
6839
6840         * image.c, metadata-internals.h: don't keep a file descriptor open
6841         for loaded assemblies (bug#325988).
6842
6843 2007-09-19  Raja R Harinath  <rharinath@novell.com>
6844
6845         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
6846         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
6847         use the corresponding datatypes.
6848         (type_in_image): Update to changes.
6849         (CleanForImageUserData): Simplify.
6850         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
6851         Avoid quadratic behaviour in handling the "stolen" list by
6852         separating the filter predicate out, and by prepending the stolen
6853         items rather than appending them.
6854         (steal_ginst_in_image): Likewise.
6855         (mono_metadata_clean_for_image): Update to changes.
6856
6857 2007-09-19  Martin Baulig  <martin@ximian.com>
6858
6859         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
6860
6861 2007-09-19  Martin Baulig  <martin@ximian.com>
6862
6863         * mono-debug.c (mono_debug_cleanup): Don't call
6864         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
6865
6866 2007-09-19  Raja R Harinath  <harinath@gmail.com>
6867
6868         Fix crash on 'make run-test' in mcs/errors
6869         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
6870         Avoid more potential allocations in mono_class_from_mono_type.
6871         (ginst_in_image): Update to changes.
6872         (gclass_in_image): Rearrange slightly.
6873
6874 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6875
6876         * class.c (mono_class_init): Move the code that sets up class->methods to 
6877         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
6878
6879         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
6880         canonical instance of an inflated generic signature.
6881         (mono_type_create_from_typespec): Remove an invalid free.
6882
6883         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
6884
6885 2007-09-18  Marek Habersack  <mhabersack@novell.com>
6886
6887         * domain-internals.h: added a declaration of the
6888         mono_assembly_load_full_nosearch internal function.
6889
6890         * assembly.c (mono_assembly_load_with_partial_name): use
6891         mono_try_assembly_resolve return value properly.
6892         (mono_assembly_load_full_nosearch): copied the function body from
6893         mono_assembly_load_full, without the code to invoke assembly
6894         search hooks.
6895         (mono_assembly_load_full): calls the above new function and if the
6896         assembly is not resolved, invokes the search hooks.
6897
6898         * appdomain.c (mono_runtime_init): restore the global postload
6899         assembly search handlers.
6900
6901 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6902
6903         * class.c (mono_class_init): Make sure class->methods and class->properties
6904         are never NULL in the generics case.
6905
6906         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
6907
6908 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
6909
6910         * metadata.c (free_generic_class): Disable some code to fix the build.
6911
6912         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
6913
6914         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
6915         from the image mempool.
6916
6917         * metadata.c (free_generic_class): Free more data from the inflated class.
6918
6919         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
6920
6921         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
6922         mempool.
6923         (mono_type_create_from_typespec): Ditto.
6924
6925         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
6926         MonoImage to the caller.
6927         (mono_init_internal): Save the opened image in a global variable.
6928         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
6929
6930         * reflection.c (resolve_object): Fix a leak.
6931
6932         * metadata.c: Fix the freeing of data in the generics caches.
6933         
6934         * metadata.c (free_generic_inst): Comment this out to fix the build.
6935         (free_generic_class): Ditto.
6936
6937         * metadata.c: Free cached generic methods, instantinations and classes when
6938         they are removed from the caches.
6939         (mono_metadata_free_type): Free the type itself.
6940
6941         * class.c: Free the result of mono_class_inflate_generic_type () in a few
6942         places.
6943
6944 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6945
6946         * boehm-gc.c: restrict managed allocs to __thread supporting
6947         architectures.
6948
6949 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
6950
6951         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
6952         (mono_generic_class_get_class): Fix a leak.
6953
6954         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
6955         mono_metadata_free_type ().
6956         (mono_metadata_inflate_generic_inst): Fix a leak.
6957
6958 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6959
6960         * mono-debug.c (free_header_data): Fix a leak missed earlier.
6961
6962         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
6963         mempool.
6964
6965         * mono-debug.c (mono_debug_close_image): Fix call to 
6966         g_hash_table_remove ().
6967
6968 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6969
6970         * icall-def.h: redirect all the string ctor to the managed
6971         CreateString () methods.
6972         * string-icalls.c, string-icalls.h: removed dead code for string
6973         ctors and icalls.
6974
6975 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6976
6977         * mono-debug.c: Fix memory leaks.
6978
6979 2007-09-14  Jonathan Chambers <joncham@gmail.com>
6980
6981         * threads-types.h: Implement mono_hazard_pointer_set and 
6982         mono_hazard_pointer_clear macros using do/while(0) to fix
6983         compilation with MSVC.
6984         
6985         Code is contributed under MIT/X11 license.
6986
6987 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6988
6989         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
6990         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
6991
6992 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6993
6994         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
6995         icalls.
6996
6997 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6998
6999         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
7000         managed-code allocated as well.
7001
7002 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
7003
7004         * class.c (mono_class_is_assignable_from): Add support for generic variance.
7005
7006 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
7007
7008         * boehm-gc.c: fixed the build after the AOT changes.
7009
7010 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
7011
7012         * wrapper-types.h: Add an ALLOC wrapper type.
7013
7014         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
7015         reference managed allocator methods.
7016
7017 2007-09-12  Marek Safar  <marek.safar@gmail.com>
7018
7019         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
7020         of Type array and not MonoType, a fix suggested by Hari.
7021         
7022 2007-09-12  Jonathan Chambers <joncham@gmail.com>
7023
7024         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
7025         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
7026         
7027         Code is contributed under MIT/X11 license.
7028
7029 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
7030
7031         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
7032
7033 2007-09-12  Marek Habersack  <mhabersack@novell.com>
7034
7035         * image.c (do_mono_image_open): if assembly file fails to open and
7036         MONO_IOMAP is in effect, try to find the path in a
7037         case-insensitive way.
7038
7039         * appdomain.c (mono_runtime_init): do not install postload hooks -
7040         tests show that MS.NET doesn't use anything of that sort to
7041         trigger the AppDomain.AssemblyResolve event.
7042         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
7043         made non-static.
7044         (mono_runtime_init): init portability helpers here.
7045
7046         * assembly.c (mono_assembly_load_with_partial_name): if other   
7047         attempts fail, trigger the AppDomain.AssemblyResolve event handler
7048         to resolve the assembly.
7049
7050         * domain-internals.h: added mono_try_assembly_resolve and marked
7051         it as internal.
7052
7053 2007-09-11  Jb Evain  <jbevain@novell.com>
7054
7055         * object-internals.h (MonoReflectionDynamicMethod): add
7056         a `MonoReflectionType *owner` field. The owner is used
7057         * reflection.c:
7058         (mono_reflection_create_dynamic_method): use the owner of the dynamic
7059         method as the class declaring the dynamic method.
7060         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
7061         dynamic method to the declaring type of the methodbuilder.
7062
7063 2007-09-11  Mark Probst  <mark.probst@gmail.com>
7064
7065         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
7066         rules for calling methods via reflection.
7067
7068 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
7069
7070         * reflection.c (resolve_object): Add support for MonoGenericClass. 
7071         Inflate MonoType's.
7072
7073 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
7074
7075         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
7076         provide a managed method that does fast allocations without needing
7077         a managed->unmanaged transition. Boehm GC implementation currently
7078         enabled for ptrfree objects on sane architectures.
7079
7080 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
7081
7082         * marshal.c, marshal.h: exported a couple of useful functions and
7083         added mono_mb_get_label () to easily handle backward branches.
7084
7085 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
7086
7087         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
7088
7089 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
7090
7091         * loader.c (find_method): Fixed the regression introduced while
7092         fixing bug #81466.
7093
7094 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
7095
7096         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
7097         well.
7098         
7099         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
7100         icall.c reflection.c: Pass a MonoGenericContext argument to 
7101         mono_lookup_dynamic_token ().
7102
7103         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
7104         #82744.
7105         
7106 2007-09-09  Robert Jordan  <robertj@gmx.net>
7107
7108         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
7109         for generic methods.
7110
7111         * object.c (mono_object_get_virtual_method): Handle generic methods.
7112         Fixes bug #78882.
7113
7114         Code is contributed under MIT/X11 license.
7115
7116 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
7117
7118         * image.c: fix locking in mono_image_load_file_for_image ().
7119
7120 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
7121
7122         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
7123         used only as a cache: added an icall to fill it.
7124
7125 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
7126
7127         * reflection.h: exposed mono_reflection_free_type_info
7128         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
7129         since mono_reflection_bind_generic_parameters makes a copy of it.
7130         * reflection.c (free_type_info): subinfos should be freed.
7131         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
7132         made non static.
7133         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
7134         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
7135         this fixes #82695 and #81726.
7136    
7137
7138 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
7139
7140         * process.h, process.c:  added support for user profile/info in
7141           ProcessStartInfo. For now only Windows works.
7142
7143 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
7144
7145         * metadata.c: consider the generic arguments when comparing
7146         signatures (bug #82614).
7147
7148 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
7149
7150         * cil-coff.h, image.c: updated assembly loader to cope with the
7151         PE32+ 64 bit file format.
7152
7153 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
7154
7155         * assembly.c, class.c, domain.c, loader.c: remove useless
7156         inclusion of cil-coff.h.
7157
7158 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
7159
7160         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
7161         if interface is marked with CoClassAttribute. 
7162    
7163         Code is contributed under MIT/X11 license.
7164
7165 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7166
7167         * sgen-gc.c: ensure no object from the to space is copied again or finalized
7168         if it's seen twice in major collections.
7169
7170 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
7171
7172         * sgen-gc.c: big objects are not copied to the gray area, but they
7173         need to be considered for scanning, too, if they are brought alive
7174         by an object ready for finalizations or a survived one.
7175
7176 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
7177
7178         * sgen-gc.c: properly account the number of disappearing links when
7179         they are nullified.
7180
7181 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
7182
7183         * sgen-gc.c: share the code to scan the registered roots between the
7184         different types of collections.
7185
7186 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
7187
7188         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
7189
7190 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
7191
7192         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
7193         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
7194
7195 2007-08-28  Mark Probst  <mark.probst@gmail.com>
7196
7197         * security-manager.c (mono_security_manager_get_methods):
7198         LinkDemandSecurityException now has 2 arguments instead of 3.
7199
7200 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
7201
7202         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
7203         platforms which need it.
7204
7205 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
7206
7207         * sgen-gc.c: unregister thread data structures with a pthread_key_t
7208         dtor.
7209
7210 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
7211
7212         * threads.c: free the thread static data on thread exit.
7213
7214 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
7215
7216         * class.c: walk the hierarchy to find the generic definition for
7217         a class (fixes runtime part of bug #82498).
7218
7219 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
7220
7221         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
7222         ...
7223
7224         * image.c (mono_image_close): Here. Hopefully fixes #82510.
7225
7226 2007-08-24  Mark Probst  <mark.probst@gmail.com>
7227
7228         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
7229
7230 2007-08-24  Robert Jordan  <robertj@gmx.net>
7231
7232         * appdomain.c: don't perform the ':'->';' substitution on Win32.
7233
7234 2007-08-24  Jb Evain  <jbevain@novell.com>
7235
7236         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
7237         for byref types.
7238
7239 2007-08-24  Mark Probst  <mark.probst@gmail.com>
7240
7241         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
7242         #82286.
7243
7244 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
7245
7246         * assembly.c: Fix a warning.
7247         
7248 2007-08-23  Marek Habersack  <mhabersack@novell.com>
7249
7250         * appdomain.c: parse the <runtime> section looking for the probing
7251         element with the 'privatePath' attribute, which sets additional
7252         directories in which the runtime should look for assemblies.
7253
7254 2007-08-23  Robert Jordan  <robertj@gmx.net>
7255
7256         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
7257         Fixes #82499.
7258
7259 2007-08-23  Martin Baulig  <martin@ximian.com>
7260
7261         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
7262         _mono_debug_init_corlib() and remove it from the header file.
7263
7264 2007-08-23  Martin Baulig  <martin@ximian.com>
7265
7266         * mono-debug-debugger.c
7267         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
7268         don't notify the debugger about it.
7269
7270         * mono-debug-debugger.h
7271         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
7272
7273 2007-08-23  Robert Jordan  <robertj@gmx.net>
7274
7275         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
7276         Code is contributed under MIT/X11 license.
7277
7278 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
7279
7280         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
7281
7282 2007-08-22  Martin Baulig  <martin@ximian.com>
7283
7284         * mono-debug.c: Store debugging info on a per-domain basis and
7285         free it on domain unload.  Add support for unloading symbol files.
7286
7287         * mono-debug.h
7288         (MonoDebugList): New typedef.
7289         (MonoSymbolTable):
7290         - add `data_tables and `type_table'.
7291         - replace 'symbol_files' and `num_symbol_files' with a
7292           `MonoDebugList *'.
7293         (mono_debug_data_table): Removed.
7294         (mono_debug_list_add): New public function.
7295         (mono_debug_list_remove): New public function.
7296         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
7297         (mono_debug_init_2_memory): Renamed into
7298         mono_debug_open_image_from_memory().
7299         (mono_debug_close_image): New public function.
7300         (mono_debug_domain_create): Likewise.
7301         (mono_debug_domain_unload): Likewise.
7302         (MONO_DEBUGGER_VERSION): Bump to 60.
7303
7304         * mono-debug-debugger.h
7305         (MonoDebuggerEvent):
7306         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
7307         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
7308         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
7309         - rename `THREAD_CREATED' and `THREAD_EXITED' into
7310           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
7311         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
7312           meaning.
7313         (mono_debugger_add_symbol_file): Removed.
7314         (mono_debugger_add_type): Removed.
7315         (mono_debugger_lookup_type): Removed.
7316         (mono_debugger_lookup_assembly): Removed.
7317
7318         * domain.c
7319         (mono_domain_create): Call mono_debug_domain_create().
7320         (mono_init_internal): Call mono_debug_init_corlib().
7321
7322         * assembly.c
7323         (mono_assembly_close): Call mono_debug_close_image().
7324
7325 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
7326
7327         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
7328         mmap call.
7329
7330 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
7331
7332         * sgen-gc.c: ensure section->pin_queue_end is initialized
7333         correctly when non pinning objects in the section have been found.
7334
7335 2007-08-22  Marek Habersack  <mhabersack@novell.com>
7336
7337         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
7338         containing a list of directories separated by ':'. MSDN docs say
7339         the directories should be separated with ';'. Part of a bugfix for
7340         bug #81446
7341
7342 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
7343
7344         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
7345         it should MonoType and not MonoClass.
7346
7347 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
7348
7349         * culture-info-table.h : regenerated.
7350
7351 2007-08-20  William Holmes  <billholmes54@gmail.com>
7352
7353         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
7354          to call ReplaceFile Kernel32 on windows or in io-layer.
7355         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
7356         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
7357          as an internal call.
7358
7359         Code is contributed under MIT/X11 license.
7360
7361 2007-08-20  Jb Evain  <jbevain@novell.com>
7362
7363         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
7364         and MONO_EXCEPTION_FIELD_ACCESS.
7365
7366         * debug-helpers.[c|h]: new mono_field_full_name function.
7367
7368 2007-08-20  Mark Probst  <mark.probst@gmail.com>
7369
7370         * class.c: Removed class_security_level() and moved it to
7371         security-core-clr.c.
7372
7373         * security-core-clr.c, security-core-clr.h: class_security_level()
7374         is now public and renamed to mono_security_core_clr_class_level().
7375         It also looks for security attributes in the classes a class is
7376         nested in.
7377
7378 2007-08-20  Mark Probst  <mark.probst@gmail.com>
7379
7380         * security-core-clr.c, security-core-clr.h: CoreCLR security
7381         utility functions.
7382
7383         * Makefile.am: Added security-core-clr.[ch].
7384
7385         * security-manager.c, security-manager.h: Functions and enum for
7386         setting and getting the security mode.
7387
7388         * class.c: CoreCLR security checks.
7389
7390 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
7391
7392         * icall-def.h, process.c, process.h: implemented icall to get
7393         user/system processor times.
7394
7395 2007-08-17  Mark Probst  <mark.probst@gmail.com>
7396
7397         * domain.c, threads.c, class-internals.h, domain-internals.h: New
7398         reader-lock-free jit_info_table.
7399
7400 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
7401
7402         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
7403
7404         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
7405
7406         * object-internals.h (MonoException): Add missing _data member.
7407
7408 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
7409
7410         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
7411         checking that only methods with matching qname or fqname are picked
7412         from implemented interfaces.
7413
7414 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7415
7416         * verify.c (do_newarr):added, do type verification of
7417         newarr ops, push the right value on the eval stack.
7418         * verify.c (mono_method_verify): use do_newarr
7419
7420
7421 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7422
7423         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
7424         factored the common code into get_boxable_mono_type, which
7425         is now using mono_type_get_full, this fixed byref related tests.
7426
7427 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7428
7429         * class.c: added mono_type_get_full, this function has the same
7430         behavior of mono_class_get_full but the returned MonoType has
7431         all metadata of the associated token in case of a typespec token.
7432         * class.c: added mono_type_retrieve_from_typespec, used by 
7433         mono_type_get_full to retrieve the token type.
7434         * class.c (mono_class_create_from_typespec): changed to use
7435         mono_type_retrieve_from_typespec.
7436         * class.c (mono_ldtoken): changed to use mono_type_get_full
7437         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
7438         * class-internals.h: exported mono_type_get_full for internal use.
7439
7440 2007-08-16  Jb Evain  <jbevain@novell.com>
7441
7442         * domain.c (supported_runtimes): add entry for
7443         the 'moonlight' runtime version.
7444
7445 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7446
7447         * verify.c (mono_method_verify): small typo sliped in.  
7448
7449 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7450
7451         * verify.c (do_unbox_value): added, do type verification of
7452         unboxing ops
7453         * verify.c (mono_method_verify): use do_unbox_value
7454
7455
7456 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7457
7458         * verify.c (dump_stack_value): fixed typo, was printing string
7459         instead of object on stack.
7460         * verify.c (do_box_value): moved the byref check up as it leads
7461         to invalid code and should be done earlier.
7462         * verify.c: improved error messages for and ldobj
7463
7464 2007-08-15  William Holmes  <billholmes54@gmail.com>
7465
7466         * marshal.c (emit_marshal_custom): Omit the call to 
7467           marshal_native_to_managed when calling native to managed 
7468           and the argument is specified as an out argument.
7469
7470         Code is contributed under MIT/X11 license.
7471
7472 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7473
7474         * verify.c: fixed the type checks for generics, function pointers and vectors.
7475         Added type verification for ldobj and ldtoken. The verifier
7476         would segfault if header or signature of a method contained references
7477         to non-existant types.
7478
7479 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
7480
7481         * marshal.c (cominterop_get_ccw): Patch from
7482         Bill Holmes to no walk up interface hierarchy. 
7483         All parent methods should be present in the interface for COM.
7484    
7485         Code is contributed under MIT/X11 license.
7486
7487 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
7488
7489         * marshal.c (emit_marshal_com_interface): Patch from
7490         Bill Holmes to handle COM Interfaces as return values
7491         for native->managed calls.
7492    
7493         Code is contributed under MIT/X11 license.
7494
7495 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
7496
7497         * marshal.c (cominterop_get_idispatch_for_object): Implement
7498         for runtime callable wrappers.
7499    
7500         Code is contributed under MIT/X11 license.
7501
7502 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
7503
7504         * pedump.c (main): changed from mono_init to mono_init_from_assembly
7505         so 2.0 types are accessible
7506
7507
7508 2007-08-13  Miguel de Icaza  <miguel@novell.com>
7509
7510         * domain.c (mono_init_internal): Call mono_assembly_load_friends
7511         once we load mscorlib.   Due to the order in which we initialize,
7512         the mono_assembly_load_full routine that loads mscorlib did not
7513         load friends.   We now load it once we load the
7514         mono_defaults.internals_visible_class class. 
7515
7516         * assembly.c: Expose the mono_load_friend_assemblies method.
7517
7518 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
7519
7520         * verify.c: improved the handling of boxing, better
7521         type checking for unary ops and conversion. Fix bug
7522         regarding managed pointer compatibility checking
7523
7524 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
7525
7526         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
7527
7528         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
7529
7530 2007-08-09  Raja R Harinath  <rharinath@novell.com>
7531
7532         * reflection.c (dup_type): Remove.
7533         * class.c (dup_type): Remove.
7534         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
7535         instead of the dodgy 'dup_type'.
7536         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
7537         handle the case where 'dup_type' needed the second argument.
7538
7539 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
7540
7541         * domain.c: Fix a warning.
7542
7543 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
7544
7545         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
7546         checking that methods with the same fqname are not overridden
7547         with a method from an ancestor.
7548
7549 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
7550
7551         * threads.c (free_thread_static_data_helper): Avoid a crash if
7552         thread->static_data is not yet set.
7553
7554 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
7555
7556         * marshal.c: Use correct image when emitting
7557         native wrapper for COM calls.
7558    
7559         Code is contributed under MIT/X11 license.
7560
7561 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
7562
7563         * icall-def.h, security.c, security.h :
7564           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
7565
7566 2007-08-07  Martin Baulig  <martin@ximian.com>
7567
7568         * mono-debug-debugger.h
7569         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
7570
7571         * domain.c (mono_domain_free): Call
7572         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
7573
7574 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
7575
7576         * verify.c (check_underflow, check_overflow): error message now returns IL offset
7577         * verify.c (in_same_block): code should test if either offset is inside the clauses
7578         * verify.c (mono_method_verify): push the exception into the eval stack of exception
7579         and filter blocks
7580
7581 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
7582
7583         * image.c (mono_image_close): Fix a leak.
7584
7585         * object.c (mono_runtime_invoke_array): Avoid using alloca.
7586
7587         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
7588
7589 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
7590
7591         * domain.c, threads.c, threads-types.h: fix memory retention issue
7592         with thread static variables not being cleared on domain unload.
7593         Reuse thread static slots after domain unload.
7594
7595 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
7596
7597         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
7598         nullable type.
7599
7600         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
7601         now done in mono_runtime_invoke_array.
7602
7603         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
7604         receiver is a nullable type.
7605
7606         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
7607         generic parameter.
7608
7609 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
7610
7611         * marshal.c: Implement COM Objects as return type for 
7612         managed->unmanaged calls. Added Release calls for COM Object
7613         out/return values in managed->unmanaged calls.
7614
7615         Code is contributed under MIT/X11 license.
7616
7617 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
7618
7619         * threads.h, threads-type.h: move the hazard pointer declarations
7620         to the private header.
7621
7622 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
7623
7624         * file-io.c, appdomain.c: memory leak fixes.
7625
7626 2007-08-02  Dick Porter  <dick@ximian.com>
7627
7628         * socket-io.c
7629         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
7630         SO_REUSEADDR setting into io-layer/sockets.c.
7631
7632 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
7633
7634         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
7635         from Object when called on a generic parameter. Fixes #82211.
7636
7637 2007-08-01  Dick Porter  <dick@ximian.com>
7638
7639         * file-io.c (convert_share): Test FileShare values bit-by-bit.
7640         Fixes bug 79250 yet again.
7641
7642 2007-07-30  Martin Baulig  <martin@ximian.com>
7643
7644         Merged the `debugger-dublin' branch.
7645
7646         * mono-debug.h
7647         (MonoDebugDataTable): New typedef.
7648         (MonoDebugMethodAddressList): New typedef.
7649         (MonoDebugWrapperData): Removed.
7650         (MonoDebugSymbolTable): Removed `current_data_table',
7651         `current_data_table_size', `current_data_table_offset'.
7652         (MonoDebugDataItemType): Moved into mono-debug.c.
7653         (MonoDebugMethodJitInfo): Remove `address'.
7654         (mono_debug_data_table): New global variable.
7655         (mono_debug_lookup_method_addresses): New public function.
7656         (mono_debug_find_method): Take a `MonoMethod *', not a
7657         `MonoDebugMethodInfo *'.
7658
7659         * mono-debug.c: Drop support for the old symbol tables.
7660
7661 2007-06-28  Martin Baulig  <martin@ximian.com>
7662
7663         * mono-debug.c (mono_debug_debugger_version): New public variable.
7664
7665 2007-07-31  William Holmes  <billholmes54@gmail.com>
7666
7667         * metadata.c Changed mono_type_create_from_typespec to not insert
7668           the type into the hash map until after
7669           do_mono_metadata_parse_type has completed.
7670         Fixes Bug #82194
7671         Code is contributed under MIT/X11 license.
7672
7673 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
7674
7675         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
7676         generic parameter. Fixes #82211.
7677
7678 2007-07-27  Jb Evain  <jbevain@novell.com>
7679
7680         * pedump.c (dump_metadata, dump_metadata_header): dump
7681         versions contained in the metadata header.
7682
7683 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
7684
7685         * threads.c: register small_id_table with the GC.
7686
7687 2007-07-27  Mark Probst  <mark.probst@gmail.com>
7688
7689         * threads.c, threads.h, class-internals.h, object-internals.h:
7690         Hazard pointers, to be used by lock-free parallel algorithms.
7691
7692 2007-07-26  Dick Porter  <dick@ximian.com>
7693
7694         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
7695         routine on non-windows platforms, as I've not managed to think of
7696         a non-kludgy way of doing this.  Finishes off bug 78739.
7697
7698 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
7699
7700         * object.c: properly setup interface_bitmap in proxy vtables.
7701
7702 2007-07-25  Marek Habersack  <mhabersack@novell.com>
7703
7704         * appdomain.c (get_shadow_assembly_location): do not use TickCount
7705         to create unique shadow copy target directories, use the domain's
7706         serial number instead. Each domain gets a unique target directory
7707         that way.
7708
7709         * domain.c (mono_domain_create): added code to increment domain
7710         shadow copy serial number and cache the value in the current
7711         domain structure.
7712
7713         * domain-internals.h (struct _MonoDomain): added a new field -
7714         shadow_serial to hold the serial number used in generation of
7715         shadow-copy directories. This is to make sure that the directory
7716         name is unique for each and every domain created. We avoid a race
7717         condition with overriding assemblies already in use by other app
7718         domains.
7719
7720 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
7721
7722         * class.c (mono_bounded_array_class_get): fixed memory leak when 
7723         binding generic parameters.
7724
7725 2007-07-24  Raja R Harinath  <rharinath@novell.com>
7726
7727         * metadata.c (do_mono_metadata_parse_generic_class): Use
7728         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
7729         error.
7730
7731 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
7732
7733         * loader.c, class-internals.h, reflection.c: removed the per-method
7734         generics hashtable: we use the global one through the call of
7735         mono_class_inflate_generic_method ().
7736
7737 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
7738
7739         * class.c, metadata.c, class-internals.h: introduce yet another
7740         generics global cache for inflated methods (fixes 98% of the perf
7741         issue in bug #81806).
7742
7743 2007-07-23  Raja R Harinath  <rharinath@novell.com>
7744
7745         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
7746         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
7747         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
7748         return a MonoGenericInst containing (a copy) of those types.
7749         (mono_metadata_inflate_generic_inst): Update to changes.
7750         (mono_metadata_parse_generic_inst): Likewise.
7751         (mono_get_shared_generic_inst): Likewise.
7752         * reflection.c (mono_class_bind_generic_parameters): Likewise.
7753         (mono_reflection_bind_generic_method_parameters): Likewise.
7754         * metadata-internals.h: Likewise.
7755         * icall.c (free_generic_context): Kill.
7756         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
7757
7758         * reflection.c (reflection_methodbuilder_to_mono_method): Use
7759         mono_metadata_type_dup.
7760         * marshal.c (mono_mb_create_method): Likewise.
7761
7762         * metadata.c (mono_metadata_type_dup): Rename from
7763         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
7764         MonoImage.  Handle a few more cases, esp. when no mempool is given.
7765         * marshal.c, metadata-internals.h: Update to changes.
7766
7767 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
7768
7769         * class.c: fixed a small leak for array classes and removed warning.
7770
7771 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
7772
7773         * loader.c (mono_method_get_param_token): Make this work on generic methods.
7774         Return 0x8000000 for return parameters. Fixes #82161.
7775
7776 2007-07-21  Marek Habersack  <grendello@gmail.com>
7777
7778         * appdomain.c (get_shadow_assembly_location): append the current
7779         ticks value to the path. Avoids overwriting the same assemblies by
7780         several threads at the same time.
7781
7782 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
7783         and Raja R Harinath  <rharinath@novell.com>
7784
7785         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7786         Simplify slightly.
7787         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
7788         property for testing if a method is a generic method definition.
7789
7790 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
7791
7792         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
7793
7794 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7795
7796         * verify.c: used function from private branch, reverted to the one in class.h 
7797
7798 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7799
7800         * verify.c: a typo slipped in and the code wont compile
7801
7802 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7803
7804         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
7805         disabled box instruction as it is doing the wrong thing
7806         improved stack dump messages, now it is easier to debug type related issues
7807
7808
7809 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
7810
7811         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
7812
7813 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7814
7815         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
7816         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
7817         grouped with class and valuetype. This change will simply 
7818         the code as it should be handled just like unmanaged pointers.
7819
7820 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7821
7822         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
7823
7824 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7825
7826         * verify.c: several stack merge issues fixed, reference comparisons now
7827         check the type size. strict type check now works correctly.
7828         added more uses of IS_MANAGED_POINTER macro.
7829         fixed issues pointed by running the test suite against .net.
7830         
7831
7832 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7833
7834         * class.c, loader.c, class-internals.h: Removed the
7835         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
7836         defines.
7837
7838         * icall.c: Better error checking in some internal reflection
7839         methods.
7840
7841 2007-07-18  William Holmes  <billholmes54@gmail.com>
7842
7843         * filewatcher.c : removed unused variable 'filename' in 
7844           ves_icall_System_IO_FSW_SupportsFSW
7845
7846 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
7847
7848         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
7849         obsolete, removed.
7850
7851 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
7852
7853         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
7854         
7855         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
7856
7857 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
7858
7859         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
7860         Implement generics support.
7861         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7862
7863         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
7864         type_args and method_args arguments.
7865         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
7866         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7867         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
7868
7869 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
7870
7871         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
7872           It adds a rootimage parameter to mono_reflection_get_type_internal,
7873           adds new function mono_reflection_get_type_with_rootimage and use
7874           the rootimage to resolve the types instead of the current image
7875
7876 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7877
7878         * culture-info-table.h: Forgot to update after r78304.
7879
7880 2007-07-13  Raja R Harinath  <rharinath@novell.com>
7881
7882         * class.c (mono_class_is_open_constructed_type)
7883         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
7884
7885 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
7886
7887         * class.c (mono_bounded_array_class_get):  method fails if used with
7888         an incomplete TypeBuilder enum (no basetype field), fixed it by 
7889         avoiding calculating the size for such array as it cannot be instantiated.
7890         Fix bug #82015
7891
7892 2007-07-12  Raja R Harinath  <rharinath@novell.com>
7893
7894         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
7895         field.
7896         * metadata.c, reflection.c: Update to changes.
7897
7898 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
7899
7900         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
7901         mono_class_is_valid_enum, they are used to valide a enum when loading.
7902         * reflection.c: used new functions to throw TypeLoadException when and
7903         invalid enum is build with TypeBuilder. Fixes #82018
7904   
7905 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7906
7907         * object.c: forgot commit of mono_class_setup_methods () to access
7908         iface->methods.
7909         * object-internals.h: added a few more handy fields to
7910         MonoIMTCheckItem.
7911
7912 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
7913
7914         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
7915         iface->methods.
7916
7917 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
7918
7919         * class-internals.h, object-internals.h, object.c: IMT-based
7920         interface invocation core from Massimiliano Mantione
7921         (massi@ximian.com) with a reworked arch-specific interface,
7922         bsearch implementation and a few bugfixes and memory savings by me.
7923
7924 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
7925
7926         * class.c (mono_class_create_from_typedef): mono would segfault if 
7927         an enum did not have a __value field. It now throws a TypeLoadException
7928         for such cases. Fix bug #82022
7929
7930 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7931
7932         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
7933
7934 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7935
7936         * class.c (mono_class_init): If a class is already inited but has
7937         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
7938
7939 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7940
7941         * class.c: Properly handle the case of an unimplemented interface
7942         method.  Fixes: 81673.
7943
7944 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
7945
7946         * class-internals.h, object.c: cleanup patch from massi: use
7947         MonoVTable->interface_bitmap since the vtable interfaces offset array
7948         is going away.
7949
7950 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7951
7952         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
7953         GetMDStreamVersion icall instead.
7954
7955 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
7956
7957         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
7958         not use mono_dl_build_path() with a full library name: makes
7959         fallbacks to libgaim and libfam work.
7960
7961 2007-07-06  William Holmes  <billholmes54@gmail.com>
7962
7963         * assembly.c: Added a continue statement in probe_for_partial_name when
7964          parse_assembly_directory_name fails.  Fixes : 82002
7965
7966 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
7967
7968         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
7969         and added a verification  for TYPEDBYREF.
7970         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
7971         make native int interchangeable with int32 and some small cleanup and formating.
7972         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
7973         handle byref of byref.
7974         * verify.c (push_local): handle byref of byref.
7975         * verify.c (do_binop): invalid mix of values is unverifiable
7976         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
7977         added visibility checks
7978         * verify.c (field related method): added visibility checks
7979         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
7980
7981 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
7982
7983         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
7984         string.
7985
7986 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
7987
7988         * profiler.c (mono_profiler_load): Fix an off-by-one error.
7989
7990         * marshal.c (emit_marshal_string): When returning a string from managed code,
7991         allways make a copy even for unicode strings. Fixes #81990.
7992
7993 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
7994
7995         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
7996         of byref generic inst types (bug #81997).
7997
7998 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
7999
8000         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
8001         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
8002
8003 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
8004
8005         * marshal.c (emit_marshal_string): Add support for unicode strings in
8006         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
8007
8008 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
8009
8010         * verify.c: field load/store are now verified, missing only access checks now
8011
8012 2007-06-28  Martin Baulig  <martin@ximian.com>
8013
8014         * mono-debug.c (mono_debug_debugger_version): New public variable.
8015
8016 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
8017
8018         * locales.c: When constructing DateTimeFormat or NumberFormat for
8019         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
8020         MonoCultureInfo contructed from the current locale is always
8021         read-only and has UseUserOverride set to true. All MonoCultureInfo
8022         instances returned for GetCultures have both IsReadOnly and
8023         UseUserOverride set to true. Fixes part of bug #81930.
8024
8025 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
8026
8027        * icall-def.h: Update System.__ComObject icalls
8028        * marshal.c: Avoid managed transition (and object creation)
8029        when looking up COM interface in RCW.
8030        * marshal.h: Ditto.
8031        
8032        Code is contributed under MIT/X11 license.
8033
8034 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
8035
8036         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
8037         to avoid crashes during assembly unloading.
8038
8039 2007-06-22  Raja R Harinath  <rharinath@novell.com>
8040
8041         Fix MethodInfo.IsGenericMethodDefinition
8042         * reflection.c (mono_reflection_bind_generic_method_parameters):
8043         Rearrange code to ensure we always uses a generic method definition.
8044         * class.c (mono_class_inflate_generic_method_full): Set
8045         'generic_container' field only for generic method definitions.
8046         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
8047         Use presense of 'generic_container' field as indication of being a
8048         generic method definition.
8049
8050 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
8051
8052         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8053
8054         * object-internals.h: Reflect changes in the layout of the managed Delegate
8055         class.
8056         
8057         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
8058         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
8059         runtime memory used by the dynamic method. Fixes #77146.
8060
8061 2007-06-21  Dick Porter  <dick@ximian.com>
8062
8063         * file-io.h: 
8064         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
8065         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
8066         81767.
8067
8068 2007-06-21  Raja R Harinath  <rharinath@novell.com>
8069
8070         * reflection.c (method_encode_methodspec): Add a tripwire.
8071         * class.c (inflate_generic_type): The fully open generic type is
8072         not the same as the generic type definition.
8073
8074 2007-06-21  Martin Baulig  <martin@ximian.com>
8075
8076         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
8077
8078         * mono-debug-debugger.h
8079         (MonoDebuggerBreakpointInfo): Removed.
8080         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
8081         (mono_debugger_remove_breakpoint): Likewise.
8082         (mono_debugger_breakpoint_callback): Likewise.
8083         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
8084
8085 2007-06-21  Raja R Harinath  <rharinath@novell.com>
8086
8087         * metadata.c (mono_metadata_lookup_generic_class): The fully open
8088         generic type is not the same as the generic type definition.
8089         * class.c (mono_generic_class_get_class): Likewise.
8090
8091 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
8092
8093         * icall.c: The second argument to 
8094         System.Reflection.MethodBase.GetMethodFromHandleInternalType
8095         is a MonoType not a MonoClass.
8096
8097 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
8098
8099         * verify.c: support for function pointers in the verifier
8100
8101 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
8102
8103         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
8104
8105 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
8106
8107         * assembly.c: removed Mono.Data.SqliteClient from the list of
8108         forward-compatible assemblies as it breaks the ABI (bug #81899).
8109
8110 2007-06-19  Raja R Harinath  <rharinath@novell.com>
8111
8112         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
8113         lookup/update with the loader lock.
8114         * reflection.c (mono_class_bind_generic_parameters): No need to
8115         protect mono_metadata_lookup_* with the loader lock.
8116         * class.c (inflate_generic_type): Likewise.
8117         
8118         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
8119         on a generic instantiated type.
8120
8121 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
8122
8123         *verify.c: produce meanfull error messages on verification error
8124         *verify.c: fixed some cases of verification errors reported as validation errors
8125         *pedump.c: fixed the error name array, now it shows validation errors properly
8126         *verify.h: fixed the contant that should be used for verification errors
8127
8128 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
8129
8130         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
8131         for bug #77596, 81858 and 80743 (generics data structures on domain
8132         unload).
8133
8134 2007-06-15  Raja R Harinath  <rharinath@novell.com>
8135
8136         Avoid allocating 'MonoGenericContext' on the heap.
8137         * class-internals (_MonoMethodInflated::context): Make field
8138         inline, not a pointer.
8139         * loader.c (method_from_methodspec): Allocate 'new_context' on the
8140         stack.  Use the context embedded within the inflated method as the
8141         hash key, rather than 'new_context'.
8142         * class.c (inflate_generic_context): Simplify.  Return a struct
8143         rather than allocating on the heap.
8144         (mono_class_inflate_generic_method_full): Update to changes.  Now,
8145         doesn't salt away a copy of the context -- simplifying the
8146         lifetime rules of a 'MonoGenericContext *'.
8147         (mono_method_get_context): Return pointer to embedded context.
8148         (setup_generic_array_ifaces): Allocate temporary context on stack.
8149         * reflection.c (inflate_mono_method): Likewise.
8150         (mono_reflection_bind_generic_method_parameters): Likewise.
8151         Use the context embedded within the inflated method as the hash key.
8152
8153         Avoid a source of allocation of 'MonoGenericContext'.
8154         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
8155         and 'cached_context' fields into embedded 'MonoGenericContext' field.
8156         * class.c: Update to changes.
8157         (mono_generic_class_get_context): Simplify drastically.  Now just
8158         returns a pointer to the field.
8159         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
8160         argument as a const pointer.
8161         (mono_metadata_generic_context_equal): Likewise.
8162         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
8163         Update to changes.
8164
8165 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
8166
8167         * verify.c improved the handling of brtrue/brfalse, factored out common code
8168
8169 2007-06-14  Raja R Harinath  <rharinath@novell.com>
8170
8171         Kill MonoGenericMethod.
8172         * class-internals.h (MonoGenericContext::method_inst): Rename from
8173         'gmethod' and convert to a MonoGenericInst.
8174         (MonoGenericMethod): Remove.
8175         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
8176         * loader.c (method_from_methodspec): Update to changes.  Use a
8177         MonoGenericContext as the key to the hashtable.
8178         * metadata.c (mono_metadata_generic_context_equal): Rename from 
8179         'mono_metadata_generic_method_equal' and take MonoGenericContext.
8180         (mono_metadata_generic_context_hash): Likewise from
8181         'mono_metadata_generic_method_hash'.  Change hash function.
8182         (mono_metadata_load_generic_params): Update to changes.
8183         (mono_get_shared_generic_method): Remove.
8184         * metadata-internals.h (mono_get_shared_generic_method): Remove.
8185         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
8186         (inflate_generic_context): Likewise.
8187         (mono_class_inflate_generic_method_full): Likewise.
8188         (setup_generic_array_ifaces): Likewise.
8189         (mono_class_create_from_typespec): Likewise.
8190         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
8191         (method_encode_methodspec): Update callsite.
8192         (reflection_methodbuilder_to_mono_method): Update to changes.
8193         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
8194         MonoGenericContext as the key to the hashtable.
8195         (inflate_mono_method): Update to changes.
8196
8197         * class-internals.h (MonoGenericMethod::container): Remove.
8198         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
8199
8200 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
8201
8202         * profiler-private.h, profiler.c, profiler.h: added API to profile
8203         exception events.
8204
8205 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
8206
8207         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
8208
8209 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
8210
8211         * verify.c: method invocation is now validated, now we verify parameter types on stack.
8212         Fixed overflow and underflow not aborting the verification process.
8213
8214 2007-06-13  Mark Probst  <mark.probst@gmail.com>
8215
8216         * class-internals.h (MonoStats): Added stats entries for dynamic
8217         code allocations.
8218
8219 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
8220
8221         * loader.c (mono_free_method): Free header->locals and header->clauses.
8222
8223         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
8224         dynamic case.
8225
8226         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
8227
8228         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
8229
8230 2007-06-12  Raja R Harinath  <rharinath@novell.com>
8231
8232         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
8233         the tables.
8234
8235 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
8236
8237         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
8238
8239 2007-06-11  Raja R Harinath  <harinath@gmail.com>
8240
8241         MonoGenericMethod on a diet
8242         * class-internals.h (_MonoMethodInflated::reflection_info): Move
8243         here ...
8244         (_MonoGenericMethod::reflection_info): ... from here.
8245         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
8246         Update to changes.
8247         * reflection.c (inflate_mono_method): Likewise.
8248         (mono_reflection_bind_generic_method_parameters): Likewise.
8249
8250 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
8251
8252         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
8253         *verify.c: factored long ldarg forms to share code with short forms
8254
8255 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
8256
8257         *verify.c: fixed code formating factored some duplicate code
8258         into a new function
8259
8260         *verify.h: fixed binary incompatibility introduced earlier
8261
8262         *pedump.c: fixed formating
8263
8264 2007-06-11  Raja R Harinath  <harinath@gmail.com>
8265
8266         Fix assertion when disassembling Mono.C5.dll
8267         * loader.c (method_from_methodspec): Avoid inflating a method
8268         twice with the same context.  If the methodref is inflated, use
8269         the declaring method instead.
8270
8271         * class.c (mono_class_from_generic_parameter): Fix case similar to
8272         bug #81830 handled below, but for method containers.
8273
8274 2007-06-10  Raja R Harinath  <harinath@gmail.com>
8275
8276         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
8277         get_shared_generic_class.  Directly inflate the instance.
8278         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
8279         (inflate_generic_class): Delete.
8280         (get_shared_generic_class): Delete.  Move setting of
8281         'cached_class' and 'cached_context' ...
8282         * metadata.c (mono_metadata_lookup_generic_class): ... here.
8283
8284         * metadata.c (mono_metadata_lookup_generic_class): Change
8285         signature to take the components of a MonoGenericClass rather than
8286         an allocated MonoGenericClass.  Change semantics to be intern-like.
8287         * reflection.c (mono_class_bind_generic_parameters): Update to
8288         changes.  Make locking region tighter.
8289         * class.c (inflate_generic_class): Update to changes.
8290         (get_shared_generic_class): Likewise.
8291         * metadata-internals.h: Likewise.
8292
8293         * reflection.c (mono_class_bind_generic_parameters): Take and
8294         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
8295         (mono_reflection_bind_generic_parameters): Use
8296         'mono_class_bind_generic_parameters' rather than duplicate the code.
8297         * class.c (mono_bounded_array_class_get): Update to changes.
8298         * object-internals.h: Likewise.
8299
8300         * reflection.c (mono_class_bind_generic_parameters): Only support
8301         parameterizing generic type definitions.  Remove support for other
8302         open types.
8303
8304 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
8305
8306         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
8307
8308         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
8309         in the dynamic case.
8310
8311 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
8312
8313         * threads.c: When cleaning up thread, reset the Background bit.
8314         Fixes bug #81720.
8315
8316 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
8317
8318        * metadata.c: Move variable declarations to top of scope.
8319        * verify.c: Move variable declarations to top of scope.
8320
8321        Code is contributed under MIT/X11 license.
8322
8323 2007-06-08  Raja R Harinath  <rharinath@novell.com>
8324
8325         * reflection.c (mono_class_bind_generic_parameters): Replace
8326         open-coded loop with mono_metadata_inflate_generic_inst.
8327
8328         * class.c (get_shared_generic_class): Don't call
8329         mono_get_shared_generic_inst.  Use the container's own
8330         'class_inst'.
8331
8332         * metadata.c (mono_metadata_load_generic_params): Move
8333         initialization of 'context' field here from ...
8334         * class.c (mono_class_create_from_typedef): ... here, and ...
8335         * loader.c (mono_get_method_from_token): ... here.
8336
8337         * class.c (get_shared_generic_class): Rename from
8338         mono_get_shared_generic_class and make static.
8339         (mono_get_shared_generic_inst): Move to metadata.c.
8340         * loader.c (mono_get_shared_generic_method): Likewise.
8341         * class-internals.h, metadata-internals.h: Update to changes.
8342
8343         Fix #81830
8344         * class.c (mono_class_from_generic_parameter): Don't assume a
8345         generic container owner exists.  Generic containers from monodis
8346         don't have any.
8347
8348 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
8349
8350         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
8351         * verify.h: new typedefs to returns the non-verifiable status
8352         * verify.c: initial implementation of generics, stack merging and object compatibility check
8353
8354 2007-06-06  Mark Probst  <mark.probst@gmail.com>
8355
8356         * class.c, image.c, class-internals.h (MonoImage): class_cache is
8357         a MonoInternalHashTable again (fixed bug in internal hash table
8358         code).
8359
8360 2007-06-06  Mark Probst  <mark.probst@gmail.com>
8361
8362         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
8363         MonoInternalHashTable again (fixed bug in internal hash table
8364         code).
8365
8366 2007-06-06  Mark Probst  <mark.probst@gmail.com>
8367
8368         * class.c, image.c, class-internals.h, domain.c,
8369         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
8370         changes.  Have to figure out what makes them break the SWF
8371         regression.
8372
8373 2007-06-04  Mark Probst  <mark.probst@gmail.com>
8374
8375         * class.c, image.c, class-internals.h (MonoImage): class_cache is
8376         a MonoInternalHashTable now.
8377
8378 2007-06-04  Mark Probst  <mark.probst@gmail.com>
8379
8380         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
8381         MonoInternalHashTable now.
8382
8383 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
8384
8385         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
8386         invoke_impl code.
8387
8388         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
8389
8390         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
8391         dependent trampoline.
8392
8393         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8394
8395         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
8396
8397 2007-05-29  Robert Jordan  <robertj@gmx.net>
8398
8399         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
8400
8401 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
8402
8403         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
8404
8405 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
8406
8407        * marshal.c: Fix interface lookup loops for
8408        cominterop_get_com_slot_for_method and 
8409        cominterop_get_method_interface. Only need to lookup
8410        if type is a class, else use interface type method is on.
8411
8412        Code is contributed under MIT/X11 license.
8413
8414 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
8415
8416         * reflection.c: HasSecurity can be present even if no specially 
8417         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
8418         SecurityAttribute). Fix CAS regression tests on buildbot.
8419
8420 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
8421
8422        * appdomain.c: Add configure checks for header files.
8423        * image.c: Add configure checks for header files.
8424        * file-io.c: Add configure checks for header files.
8425        * debug-mono-symfile.c: Add configure checks for header files.
8426        * threadpool.c: Add configure checks for header files.
8427        * console-io.c: Add configure checks for header files.
8428        * profiler.c: Add configure checks for header files.
8429        * rawbuffer.c: Add configure checks for header files.
8430        * icall.c: Add configure checks for header files.
8431        * rand.c: Add configure checks for header files.
8432        * socket-io.c: Add configure checks for header files.
8433
8434        Code is contributed under MIT/X11 license.
8435
8436 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
8437
8438         * reflection.c (mono_custom_attrs_from_builders): Remove the 
8439         assertion as it breaks the build.
8440         
8441         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
8442
8443         * reflection.c (lookup_custom_attr): Make a copy here too.
8444
8445         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
8446         dynamic images.
8447
8448         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
8449         images.
8450
8451         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
8452         info.
8453
8454 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
8455
8456         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
8457         (load_cattr_value): Ditto.
8458
8459 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
8460
8461         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
8462
8463 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
8464
8465         * threads.c: In "start_wrapper", set apartment_state to MTA if
8466         apartment_state is Unknown and we're running on 2.0 profile or
8467         higher.
8468         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
8469         to main method, then set apartment_state to Unknown on 1.0 profile,
8470         and MTA on 2.0 profile.
8471
8472 2007-05-16  Jb Evain  <jb@nurv.fr>
8473
8474         * class-internals.h (MonoDefaults): Add an attribute_class and
8475           customattribute_data_class.
8476         * domain.c (mono_init_internal): Populate them.
8477         * reflection.c: Use them to remove duplicates. Make a vew
8478         MonoClass variables `static'.
8479
8480 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
8481
8482         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
8483         step in implementing IMT, so that all isinst checks now can go
8484         through the bitmap.
8485         This was needed because vtables for TransparentProxy need to look
8486         like the vtable of the "target" class, so they need to point to
8487         its interface bitmap directly.
8488
8489         * object.c: inside "mono_class_create_runtime_vtable" and
8490         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
8491
8492 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8493
8494         * object-internals.h
8495           culture-info.h : added territory field in MonoCulture and
8496           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
8497         * locales.c : fill territory field above too.
8498         * culture-info-table.h : regenerated.
8499
8500 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
8501
8502         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
8503         Fixes #81599.
8504
8505 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
8506
8507         * object.c: Always initialize apartment, even if 
8508         there is no custom attributes on entry point.
8509         
8510         Code is contributed under MIT/X11 license.
8511
8512 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
8513
8514         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
8515         * metadata.c: If no encoding is set, check for unicode
8516         on class.
8517         
8518         Code is contributed under MIT/X11 license.
8519
8520 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
8521
8522         * threads.c: Handle if mono_thread_current returns NULL 
8523         
8524         Code is contributed under MIT/X11 license.
8525
8526 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
8527
8528         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
8529         in start_wrapper. Added mono_thread_init_apartment_state and
8530         mono_thread_cleanup_apartment_state.
8531         * object.c: Initialize thread apartment state on main thread
8532         by checking for STAThreadAttribute on entry point.
8533         * object-internals.h: Add apartment_state field to MonoThread.
8534         * threads-types.h: Add unmanaged definition of 
8535         System.Threading.ApartmentState, MonoThreadApartmentState.
8536         
8537         Code is contributed under MIT/X11 license.
8538         
8539 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
8540
8541         * class.c: Fix windows build.
8542         * class-internals.h: Fix windows build.
8543         
8544         Code is contributed under MIT/X11 license.
8545
8546 2007-05-08  Robert Jordan  <robertj@gmx.net>
8547
8548         * process.c (CreateProcess_internal):
8549         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
8550         .CreateNoWindow was specified. Fixes #81496.
8551
8552 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
8553
8554         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
8555         step in implementing IMT, replaced it with two compact arrays
8556         (interfaces_packed and interface_offsets_packed) and a bitmap that
8557         is used for isinst checks (interface_bitmap).
8558
8559         * class.c: (compare_interface_ids): compare function to pass to
8560         bsearch when looking for an interface with a given id.
8561         (mono_class_interface_offset): reimplemented using bsearch on
8562         interfaces_packed, getting the offset from interface_offsets_packed.
8563         (print_implemented_interfaces): utility debugging function.
8564         (setup_interface_offsets): reworked to initialize interfaces_packed,
8565         interface_offsets_packed and interface_bitmap.
8566
8567         * object.c: replaced all accesses to "MonoClass.interface_offsets"
8568         with uses of interfaces_packed and interface_offsets_packed.
8569
8570 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
8571
8572         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
8573         mono_class_interface_offset prototype to wrap all accesses to
8574         "MonoClass.interface_offsets".
8575
8576         * class.c: Implemented mono_class_interface_offset, and wrapped all
8577         accesses to "MonoClass.interface_offsets".
8578
8579         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
8580         "MonoClass.interface_offsets".
8581
8582 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
8583
8584         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
8585         GetMethodFromHandle overloads (bug #78637).
8586
8587 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8588
8589         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
8590         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
8591
8592 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
8593
8594         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
8595         #81498.
8596
8597         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
8598         gracefully.
8599         (mono_custom_attrs_from_index): Ditto.
8600
8601         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
8602         Fixes #81501.
8603
8604 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
8605
8606         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
8607         is now allocated from a mempool.
8608
8609 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
8610
8611         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
8612         caller holds threads_lock, leading to deadlocks. Fixes #81476.
8613
8614 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
8615
8616         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
8617         mono_loader_clear_error () too late. Fixes #81463.
8618
8619 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
8620
8621         * culture-info-table.h : regenerated.
8622
8623 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
8624
8625         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
8626         is missing.
8627
8628 2007-04-25  Dick Porter  <dick@ximian.com>
8629
8630         * Makefile.am: Put the mingw enforced-optimisation back into the
8631         PLATFORM_WIN32 section.
8632
8633 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
8634
8635         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
8636         patch.
8637
8638         * image.c (mono_image_load_module): New API function to load a module reference.
8639
8640         * image.c (load_modules): Load modules lazily. Fixes #80812.
8641
8642         * class.c (mono_class_from_typeref): Use mono_image_load_module.
8643         
8644         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
8645
8646         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
8647         to mono_image_load_module_dynamic.
8648
8649 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
8650
8651         * marshal.c: Fix calling convention for CCW on non-windows
8652         platforms. STDCALL on windows, CDECL everywhere else to work 
8653         with XPCOM and MainWin COM.
8654         
8655         Code is contributed under MIT/X11 license.
8656
8657 2007-04-23  Martin Baulig  <martin@ximian.com>
8658
8659         Fix #80969.
8660
8661         * loader.c
8662         (method_from_memberref): Added `gboolean *used_context' argument.
8663         (mono_get_method_from_token): Likewise.
8664         (mono_get_method_full): Don't insert the method in the cache when
8665         `used_context' is true.
8666
8667 2007-04-23  Raja R Harinath  <rharinath@novell.com>
8668
8669         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
8670
8671         * reflection.c (mono_reflection_bind_generic_parameters): Don't
8672         create new MonoTypes for returned types.
8673         * class.c (mono_generic_class_get_class): Export mono-internal.
8674         * class-internals.h: Update to changes.
8675
8676 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
8677
8678         * threadpool.c, threadpool.h, icall-def.h: patch from
8679         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
8680
8681 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
8682
8683         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
8684         
8685         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
8686
8687         * threads.c (mono_thread_get_stack_bounds): New helper function.
8688
8689         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
8690         Correctly compute stack bounds when attaching. Fixes #81394.
8691
8692 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
8693
8694         * reflection.c: fix handling of doubles in custom attributes
8695         for the arm-fpa format (bug #81368).
8696
8697 2007-04-18  Raja R Harinath  <rharinath@novell.com>
8698
8699         * reflection.c (assembly_add_win32_resources): Mildly relax an
8700         bounds check to let the end pointer point just past the end of the
8701         allocated buffer.  (may fix #81384)
8702
8703 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
8704
8705         * culture-info-table.h : regenerated.
8706
8707 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
8708
8709         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
8710         the thread is aborted early.
8711
8712 2007-04-05  Dick Porter  <dick@ximian.com>
8713
8714         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
8715         FindFirstFile()/FindNextFile() to find entries.  This lets the
8716         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
8717         81038.
8718
8719         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
8720         the parameters of
8721         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
8722
8723 2007-04-04  Martin Baulig  <martin@ximian.com>
8724
8725         * debug-helpers.c
8726         (mono_method_desc_full_match): Add support for nested classes.
8727
8728 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
8729
8730         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
8731
8732 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
8733
8734         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
8735         waiting for too many threads.
8736
8737 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
8738
8739         * environment.c: Fix return value check on uname so we can get the 
8740         executing version on Solaris operating systems.
8741
8742 2007-03-28  Jb Evain  <jbevain@gmail.com>
8743
8744         * class.c (mono_type_get_name_recurse): Complete the
8745         fix for the creation of assembly qualified names for
8746         pointer types. Fixes #81208.
8747
8748 2007-03-27  Dick Porter  <dick@ximian.com>
8749
8750         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
8751         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
8752         changed.
8753
8754         * threads.c
8755         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
8756         the value of ReleaseMutex().
8757
8758 2007-03-27  Dick Porter  <dick@ximian.com>
8759
8760         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
8761         in little-endian order, not network endian, so must be converted
8762         to host endian here.  Fixes bug 80593.
8763
8764 2007-03-22  Jb Evain  <jbevain@gmail.com>
8765
8766         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
8767         qualified names for pointer types. Fixes #81208.
8768
8769 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
8770
8771         * marshal.c: Add support for PreserveSigAttribute. 
8772         
8773         Code is contributed under MIT/X11 license.
8774
8775 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
8776
8777         * process.c: Fix endianness issues. Fixes #81126.
8778
8779         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
8780         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
8781
8782         * image.c (mono_image_lookup_resource): Make this work on big-endian
8783         machines.Change API contract so the caller needs to free the return value.
8784         
8785         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
8786         API change.
8787         
8788 2007-03-14  Martin Baulig  <martin@ximian.com>
8789
8790         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
8791         mono_type_get_desc() as well.
8792
8793 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
8794
8795         * icall.c:  Fix environ access in VS.  
8796         
8797 2007-03-13  Alp Toker  <alp@atoker.com>
8798
8799         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
8800         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
8801         #63841.
8802
8803 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
8804
8805         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
8806         circular references among dynamic methods. Fixes #81091.
8807
8808         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
8809
8810 2007-03-09  Martin Baulig  <martin@ximian.com>
8811
8812         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
8813
8814 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
8815
8816         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
8817         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
8818         
8819         Code is contributed under MIT/X11 license.
8820         
8821 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
8822
8823         * loader.c: Reapply patch for bug #79424.
8824
8825 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8826
8827         * metadata.c (mono_type_to_unmanaged): Only convert object to
8828         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
8829
8830 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
8831
8832         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
8833         (and incorrectly set) is_reference field from MonoGenericInst.
8834
8835 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8836
8837         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
8838         a little earlier.
8839
8840         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
8841
8842         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
8843
8844 2007-03-05  Miguel de Icaza  <miguel@novell.com>
8845
8846         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
8847         FileOptions.1 value to mean "temporary", map that to
8848         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
8849
8850         Fixes 80688
8851
8852 2007-03-03  Marek Habersack  <mhabersack@novell.com>
8853
8854         * appdomain.c: implement MS .Net style shadow copying. Copies of
8855         the assemblies are made in a subdirectory of the dynamic base
8856         directory, the assembly names are preserved.
8857         Copy .mdb and .config files along with the assemblies being shadowed.
8858
8859 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8860
8861         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
8862         (emit_marshal_handleref): Ditto.
8863
8864         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
8865         on Visual C++. Fixes #80671.
8866
8867 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
8868
8869         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
8870         for clone operations.
8871
8872 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8873
8874         * marshal.c: Fix warnings.
8875
8876 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
8877
8878         * loader.c: allow case-insensitive matching of the dll name
8879         in dllmap handling when prefixed with "i:".
8880
8881 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
8882
8883         * threads.c: Fix #ifdef for dummy_apc function for VS.
8884
8885 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
8886
8887         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
8888
8889 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
8890         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
8891         giving precedence to the methods with a fully qualified name
8892         (InterfaceName.MethodName) when building the interface sections
8893         of the vtable.
8894
8895 2007-02-16  Dick Porter  <dick@ximian.com>
8896
8897         * threadpool.c (append_job): Fix fast-path array handling, so it's
8898         less likely the array will grow exponentially when the load is
8899         heavy.
8900
8901 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8902
8903         * metadata-internals.h, loader.c: fix dllmap lookup order
8904         for non-function maps, too, and prepare for fallback code.
8905
8906 2007-02-12  Robert Jordan  <robertj@gmx.net>
8907
8908         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
8909         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
8910         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
8911         GlobalFree. Fixes a part of bug #77075.
8912
8913 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
8914
8915         * loader.c: implemented typedef parent in field memberref.
8916
8917 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
8918
8919         * marshal.c: Fix warnings and remember to call Release on
8920         IUnknown of RCW.
8921         
8922         Code is contributed under MIT/X11 license.
8923
8924 2007-02-10  Miguel de Icaza  <miguel@novell.com>
8925
8926         * class-internals.h: Add MonoHandleRef definition, and
8927         handleref_class to mono_defaults. 
8928
8929         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
8930         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
8931
8932         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
8933         (do nothing on this stage)
8934         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
8935         (emit_marshal_handleref): New method, used for argument handling
8936         of HandleRefs. 
8937
8938 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
8939
8940         * class.c (mono_class_setup_parent): Lazily init com types.
8941         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
8942         init com types.
8943         * object.c (mono_remote_class_vtable): Lazily init com types.
8944         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
8945         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
8946         * domain-internals.h: Expose mono_init_com_types.
8947         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
8948         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
8949         Add support for COM Callable Wrapper marshalling.
8950         * marshal.h: Add icall definitions.
8951         * gc.c: Handle freeing of CCWs in finalizer code.
8952         
8953         Code is contributed under MIT/X11 license.
8954
8955 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
8956
8957         * reflection.c: changed all the signature encoding code to use
8958         a variable-sized buffer.
8959
8960 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8961
8962         * marshal.c: locking fixes: never take the loader lock
8963         or other runtime locks when holding the marshal lock
8964         (fixes bug#80664).
8965
8966 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
8967
8968         * marshal.c: make the delegate function pointer mapping
8969         work for the moving GC.
8970
8971 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
8972
8973         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
8974         for bug #80618.
8975
8976 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8977
8978         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
8979         gmodule.
8980
8981 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
8982
8983         * threadpool.c: made the code moving-GC safe.
8984
8985 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
8986
8987         * assembly.c, boehm-gc.c, class-internals.h, class.c,
8988         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
8989         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
8990         warning cleanup.
8991         * reflection.c: warning cleanup, some threading and moving GC fixes.
8992
8993 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
8994
8995         * class.c, loader.c: create the needed Set/Get/Address array methods
8996         as well as the .ctors in mono_class_init (), fixes bug #80567.
8997
8998 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
8999
9000         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
9001         we doesn't decrease its alignment. Should fix the sparc build.
9002
9003 2007-01-24  Dick Porter  <dick@ximian.com>
9004
9005         * socket-io.c
9006         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
9007         Create the returned object if we need to ignore an unsupported
9008         socket option.  Fixes a segfault reported by Atsushi.
9009
9010 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
9011
9012         * class.c, object.c: restrict GC-tracked fields to
9013         UIntPtr fields used inside corlib, so we provide better
9014         type info to the GC and also allow broken packing as in
9015         bug #80580.
9016
9017 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
9018
9019         * sgen-gc.c: removed duplicated function.
9020
9021 2007-01-19  Miguel de Icaza  <miguel@novell.com>
9022
9023         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
9024         value that means that the value is not supported, but that we
9025         should not return a failure, but instead report this as a
9026         successful operation.
9027
9028 2007-01-19  Raja R Harinath  <rharinath@novell.com>
9029
9030         Fix tests/bug79956.2.il
9031         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
9032         (mono_generic_class_get_class): If the generic definition in an
9033         enum, copy over other fields related to it.
9034
9035 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9036
9037         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
9038         genericinst enums (bug #79215).
9039
9040 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
9041         * class.c: Fix bug 80307.
9042
9043 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
9044
9045         * image.c: if the file table is not present, try to load
9046         all the modules, since we don't have info about them
9047         having or not metadata (bug #80517).
9048         * assembly.c: allow mono_assembly_load_references () to
9049         work for netmodules.
9050
9051 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
9052
9053         * image.c, metadata-internals.h, object.c: execute module
9054         cctors when running on the 2 runtime if present (bug #80487).
9055
9056 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
9057
9058         * icall.c: optimized InitializeArray() on bigendian.
9059
9060 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
9061
9062         * icall.c: fix for the broken ARM FPA double format.
9063
9064 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
9065
9066         * icall.c: handle endian issues for r4 and r8 types, too, in
9067         the InitializeArray() icall.
9068
9069 2007-01-15  Miguel de Icaza  <miguel@novell.com>
9070
9071         * loader.c (mono_loader_error_prepare_exception): Clear the error
9072         once we have extracted the information from it, do this before we
9073         call into the JIT's class loading mechanisms.
9074
9075         * object.c (mono_class_create_runtime_vtable): Do not clear the
9076         loader error before calling mono_class_get_exception_for_failure
9077         as the loader error is needed inside
9078         mono_class_get_exception_for_failure to throw the error (thinko).
9079
9080         Fixes #80521
9081         
9082 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
9083
9084         * reflection.c: align fields rva data so it's faster to load at
9085         runtime.
9086
9087 2007-01-12  Raja R Harinath  <rharinath@novell.com>
9088
9089         Prepare to simplify GenericMethod handling.
9090         * class-internals.h (mono_method_get_context): New accessor function.
9091         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
9092         rather than directly accessing '->context' field.
9093
9094         * class-internals.h (_MonoGenericParam.method): Move ...
9095         (_MonoGenericContainer): ... here.  Add into union with klass field.
9096         * class.c, icall.c, loader.c, metadata.c, reflection.c:
9097         Update to changes.
9098
9099 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
9100
9101         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
9102         the wrapper type enum and reduce relocations.
9103
9104 2007-01-12  Raja R Harinath  <rharinath@novell.com>
9105
9106         * reflection.c (inflate_mono_method): Reuse method instantiation
9107         from the generic method, if available.
9108
9109 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
9110
9111         * marshal.c (emit_marshal_variant): Fix conv_arg
9112         type in last commit, based on whether parameter is byref.
9113         
9114 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
9115
9116         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
9117         marshalling.
9118         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
9119         MONO_TYPE_OBJECT back for VARIANT support.
9120
9121 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
9122
9123         * marshal.c, marshal.h, icall-def.h: Implement 
9124         Marshal.ReAllocCoTaskMem.
9125
9126 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
9127
9128         * marshal.c: memory retention fixes: use the proper
9129         image cache for runtime_invoke method lookups.
9130
9131 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9132
9133         * mempool.c: added code to help debug mempool allocations.
9134
9135 2007-01-11  Dick Porter  <dick@ximian.com>
9136
9137         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
9138         support (experimenting with faking it with IP_MTU_DISCOVER for
9139         systems that don't have IP_DONTFRAGMENT.)
9140         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
9141         icall.
9142
9143         * icall-def.h: new System.Net.Sockets.Disconnect icall.
9144
9145         * socket-io.h: Add new fields to MonoSocketAsyncResult
9146         corresponding to the new ones in Socket.cs.
9147
9148 2007-01-11  Raja R Harinath  <rharinath@novell.com>
9149
9150         Fix IronPython regression mentioned in #80249
9151         * metadata.c (do_mono_metadata_parse_generic_class): Clear
9152         'cached_context' field, since it may have been initialized as a
9153         side-effect of metadata parsing.
9154
9155         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
9156         (_MonoGenericClass.cached_class): Move here and rename from lone
9157         remaining field of ...
9158         (_MonoInflatedGenericClass): ... this.  Remove.
9159         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
9160         to changes.
9161
9162         Fix mcs/tests/test-128.cs regression.
9163         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
9164         2007-01-10 change below.
9165         [MONO_TYPE_OBJECT]: Recurse into array case.
9166
9167 2007-01-11  Raja R Harinath  <harinath@gmail.com>
9168
9169         * class-internals.h (mono_get_inflated_generic_class): Remove.
9170         * class.c (mono_get_inflated_generic_class): Remove.
9171         (mono_generic_class_get_class): Rename from
9172         mono_class_create_generic.
9173         (mono_class_from_mono_type) [GENERICINST]: Use it.
9174         * reflection.c, metadata.c: Update to changes.  Use
9175         'mono_class_from_mono_type'.
9176
9177 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
9178
9179         * reflection.c: use passed type when encoding an array element
9180         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
9181
9182 2007-01-09  Robert Jordan  <robertj@gmx.net>
9183
9184         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
9185         result arguments (someDelegate.EndInvoke (unrelatedAres)).
9186         Fixes bug #80392.
9187
9188 2007-01-09  Raja R Harinath  <rharinath@novell.com>
9189
9190         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
9191
9192         * object.c (set_value): Avoid aliasing between type->data.klass
9193         and type->data.generic_class.
9194
9195         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
9196
9197 2007-01-08  Raja R Harinath  <rharinath@novell.com>
9198
9199         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
9200         between type->data.klass and type->data.generic_class.
9201
9202 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
9203
9204         * marshal.c: In MS.NET, StringBuilder objects are not copied by
9205         value in out parameters.
9206
9207 2007-01-08  Raja R Harinath  <rharinath@novell.com>
9208
9209         Simplify invariant for MonoGenericClass::klass field.
9210         * class.c (mono_class_create_generic): Verify 'klass' is null.
9211         * metadata.c (do_mono_metadata_parse_generic_class): Don't
9212         initialize 'klass' field.
9213
9214 2007-01-05  Raja R Harinath  <rharinath@novell.com>
9215
9216         Ongoing work to avoid redundant data and simplify invariants.
9217         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
9218         'generic_class', and change type to a GenericInst.
9219         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
9220         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
9221
9222 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
9223
9224         * class.c : skip io-layer under PLATFORM_WIN32.
9225
9226 2007-01-03  Tor Lillqvist  <tml@novell.com>
9227
9228         Fix #80305: In a bundled executable, look in the bundled exe
9229         assembly to determine the runtime version. Add the possibility to
9230         bundle also the machine.config file.
9231         
9232         * assembly.c (mono_assembly_open_from_bundle): Make
9233         non-static. Allow being called even if we have no bundled
9234         assemblies, and return NULL right away in that case.
9235
9236         * domain-internals.h: Declare mono_assembly_open_from_bundle()
9237         here.
9238
9239         * domain.c (app_config_parse): Take an assembly exe file name as
9240         parameter instead of a config file name. Check for a bundled
9241         config file for that assembly by calling
9242         mono_config_string_for_assembly_file() (see below) before looking
9243         for one in the file system.
9244         (get_runtimes_from_exe): Corrsponding change to call of
9245         app_config_parse().
9246         (get_runtimes_from_exe): Check for bundled assembly exe file first
9247         by calling mono_assembly_open_from_bundle(). If no bundled
9248         assembly exe file is found, call mono_image_open() as before to
9249         look it up in the file system.
9250
9251         * mono-config.c: Add variable bundled_machinec_onfig.
9252         (mono_config_string_for_assembly_file): New function.
9253         (mono_config_for_assembly): Move code snippet that looks for a
9254         bundled assembly .config file into the above new function. Call
9255         it.
9256         (mono_register_machine_config, mono_get_machine_config): New
9257         functions to set and retrieve
9258
9259         * assembly.h: Declare mono_register_machine_config().
9260
9261         * mono-config.h: Declare mono_get_machine_config() and
9262         mono_config_string_for_assembly_file().
9263
9264         * icall.c: No declaration of environ necessary on Win32. It is
9265         declared (as a macro expanding to a function call) in stdlib.h.
9266         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
9267         New internal mono function. Returns the value of
9268         mono_get_machine_config() as a Mono string.
9269
9270         * icall-def.h: Add get_bundled_machine_config().
9271
9272 2007-01-04  Raja R Harinath  <rharinath@novell.com>
9273
9274         Remove redundant field
9275         * class-internals.h (_MonoGenericContext.container): Remove field.
9276         * loader.c (mono_method_get_signature_full): Don't parse a
9277         "container" for a signature parse when the signature is inflated
9278         immediately.
9279         (method_from_methodspec): Likewise, for a generic_inst.
9280         * class.c, metadata.c, reflection.c: Update to changes.
9281
9282 2006-01-04  Raja R Harinath  <rharinath@novell.com>
9283
9284         * class-internals.h (_MonoGenericClass): Rename 'context' field to
9285         'cached_context', and change semantics -- it starts off NULL, and
9286         is initialized on demand.
9287         * class.c (mono_generic_class_get_context): New accessor to
9288         replace 'context' field accesses.
9289         (mono_class_get_context): New helper.
9290         (*): Update to changes.
9291         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
9292
9293 2007-01-03  Miguel de Icaza  <miguel@novell.com>
9294
9295         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
9296         before the memcpy.   Fixes Marshal2 regression.
9297
9298 2007-01-02  Jb Evain  <jbevain@gmail.com>
9299
9300         * blob.h: add a MONO_TYPE_ENUM definition
9301         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
9302         fix the encoding of arrays of enums in custom attributes.
9303
9304         Fixes #79666.
9305
9306 2007-01-01  Miguel de Icaza  <miguel@novell.com>
9307
9308         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
9309         string is null terminated, but only cut the string short if it
9310         overflows the buffer.   
9311         
9312         (mono_string_to_byvalstr): Also fix this routine.   The code here
9313         was not properly terminating a string (it was only terminated
9314         because of the previous catch-all memset). 
9315
9316         I left the memset, because I do not know if applications expect
9317         the runtime to clear this region. 
9318
9319         Fixes #79944.
9320
9321         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
9322         Clear the error before returning to unmanaged code to prevent the
9323         runtime from being confused later on (fixes  80420).
9324         (ves_icall_type_from_name): Always call mono_loader_clear_error
9325         after parsing a type that could have failed.
9326         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
9327
9328         * loader.c (mono_loader_clear_error): Fix indentation.
9329
9330 2006-12-28  Martin Baulig  <martin@ximian.com>
9331
9332         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
9333
9334 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
9335
9336         * reflection.c: patch from Rolf Bjarne Kvinge to fix
9337         getting a token for an EnumBuilder.
9338
9339 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
9340
9341         * reflection.c: be more careful in case resource generation
9342         fails to create the data array.
9343
9344 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
9345
9346         * sgen-gc.c: write barrier for clone and fix unregister handles.
9347
9348 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
9349
9350         * reflection.c: some fixes needed in the generics code for the moving GC.
9351
9352 2006-12-22  Robert Jordan  <robertj@gmx.net>
9353
9354         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
9355         account. Fixes bug #80299.
9356
9357 2006-12-21  Raja R Harinath  <rharinath@novell.com>
9358
9359         Fix WaitHandle usage in delegates.
9360         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
9361         * object.c (mono_wait_handle_new): Use the property set method to
9362         initialize the handle.
9363         (mono_wait_handle_get_handle): New.
9364         * threadpool.c (mono_async_invoke): Use it.
9365         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
9366         Likewise.
9367         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
9368
9369 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
9370
9371         * marshal.c (emit_marshal): Call emit_marshal_variant and
9372         emit_marshal_com_interface when applicable.
9373         (emit_marshal_variant, emit_marshal_com_interface): Add
9374         methods for this case and remove if's from emit_marshal_object.
9375         
9376 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
9377
9378         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
9379
9380 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
9381
9382         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
9383         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
9384         and GlobalFree on Windows. Remove FIXME.
9385
9386 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
9387
9388         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
9389         implementation for managed objects.
9390
9391 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
9392
9393         * object.c: implemented code to be used for checking
9394         that no reference field overlaps with non-references.
9395
9396 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9397
9398         * threadpool.c: fix queue code to be compatible with the
9399         moving GC.
9400
9401 2006-12-18  Miguel de Icaza  <miguel@novell.com>
9402
9403         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
9404         in structures by throwing ArgumentNullException.
9405
9406         (emit_marshal_safehandle): Also when they are null parameters.
9407
9408         (emit_marshal_safehandle): Add support for ref
9409         SafeHandles parameters
9410
9411 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
9412
9413         * profiler.c: updated to use the mono-dl API instead of
9414         gmodule.
9415
9416 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9417
9418         * profiler.c: updated to use the mono-dl dynamic loading
9419         API instead of gmodule.
9420
9421 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
9422
9423         * profiler.c: use readlink, older versions of glib don't have
9424         g_file_read_link ().
9425
9426 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9427
9428         * profiler.c: try to detect the path to mono if libc fails to provide
9429         a useful name (bug #80286).
9430
9431 2006-12-16  Raja R Harinath  <rharinath@novell.com>
9432
9433         Fix #80242
9434         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
9435         instance, use the generic type definition instead.
9436         (ves_icall_Type_GetNestedTypes): Likewise.
9437         * class.c (mono_class_create_generic): Always set the
9438         nested_classes of a generic instance to NULL, even if the generic
9439         type definition has nested types.
9440
9441 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
9442
9443         * marshal.c (mono_string_from_bstr): Revert previous Windows change
9444         and fix on Linux.
9445         
9446 2006-12-15  Miguel de Icaza  <miguel@novell.com>
9447
9448         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
9449         my arguments were in the wrong order.   I also fixed the Windows
9450         version which seems to have had the same issue.
9451
9452         (mono_free_bstr): On Unix, this is g_free.
9453         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
9454         conversions (for the tests in corlib to pass).
9455
9456 2006-12-14  Miguel de Icaza  <miguel@novell.com>
9457
9458         * marshal.c (emit_ptr_to_object_conv): For now, ignore
9459         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
9460         exception if a ref SafeHandle in a struct has changed).
9461         
9462         (emit_struct_conv): Do not perform layout checks for classes
9463         derived from SafeHandle, as those are specially handled. 
9464
9465         (emit_object_to_ptr_conv): Add support for
9466         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
9467
9468         (emit_marshal_safehandle): Implement conversion of return values
9469         of safehandles (MARSHAL_ACTION_CONV_RESULT).
9470         
9471         * threads.c: WaitHandle now is compiled with two different handles
9472         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
9473         for 2.0.
9474         
9475         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
9476         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
9477         these routines to cope with both kinds of fields.
9478
9479 2006-12-12  Miguel de Icaza  <miguel@novell.com>
9480
9481         * metadata.c (mono_type_to_unmanaged): Handle the case where
9482         type->data.klass is a SafeHandle, and in that case, return the
9483         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
9484         MONO_MARSHAL_CONV_SAFEHANDLE. 
9485
9486 2006-12-11  Miguel de Icaza  <miguel@novell.com>
9487
9488         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
9489         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
9490         calling emit_marshal_object.
9491
9492         (emit_marshal_safehandle): Implement marshalling of
9493         SafeHandle parameters (no ref support yet).
9494
9495         (MarshalAction): Document the defines as I implement
9496         them for SafeHandle.
9497
9498         (emit_marshal_object): indentation police.
9499
9500         * class-internals.h: Define MonoSafeHandle.
9501         Add safehandle_class to MonoDefaults type.
9502
9503         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
9504         list of classes to check for fields. 
9505
9506         * domain.c (mono_init_internal): Add SafeHandle to the list of
9507         mono_defaults loaded.
9508
9509 2006-12-15  Raja R Harinath  <rharinath@novell.com>
9510
9511         Fix #80253
9512         * reflection.c (mono_reflection_bind_generic_parameters): If the
9513         generic type definition is a type builder, ensure that it is fully
9514         initialized before instantiating it.  Kill some dead code.
9515
9516 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
9517
9518         * object.c: clear the loader_error () before loading
9519         more metadata stuff (bug #80258).
9520
9521 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
9522
9523         * icall.c, icall-defs.h: type modifiers icalls for
9524         parameters and properties.
9525
9526 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
9527
9528         * object.c, icall.c: fixed warnings.
9529
9530 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
9531
9532         * marshal.c: fixed a couple of leaks and coding style in a few places.
9533
9534 2006-12-08  Dick Porter  <dick@ximian.com>
9535
9536         * process.c: Cope with NULL ProcessStartInfo arguments on windows
9537         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
9538         80173.
9539
9540 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
9541
9542         * process.c: ProcessStartInfo may have only filename set and
9543         arguments can be NULL.
9544
9545 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9546
9547         * icall.c: fix leak found by Robert Jordan.
9548
9549 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
9550
9551         * marshal.c, marshal.h: generate managed method to access an element
9552         of a multi-dimensional array.
9553
9554 2006-11-30  Paolo Molaro (lupus@ximian.com)
9555
9556         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
9557
9558 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9559
9560         * icall.c: back out GetFields () fix until the serialization code is
9561         fixed to not depend on the incorrect behaviour.
9562
9563 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
9564
9565         * profiler.c: provide defaults if none are set.
9566
9567 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
9568
9569         * Makefile.am, attrdefs.h: new public header file with
9570         constants for attributes for use by embedders.
9571
9572 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
9573
9574         * icall.c: GetFields () fix for bug #80064.
9575
9576 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
9577
9578         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
9579         removed long unused icalls.
9580
9581 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
9582   
9583         * marshal.c: 
9584                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
9585                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
9586                 can be generated without a delegate class.
9587                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
9588         
9589         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
9590
9591 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9592
9593         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
9594         #80069.
9595
9596 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
9597
9598         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
9599         icall-def.h: added icalls needed by System.GC.
9600
9601 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
9602
9603         * loader.c: ensure the class in catch clauses is handled
9604         correctly for generics methods (fixes bug#79980).
9605
9606 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
9607
9608         * monitor.h, monitor.c: added mono_locks_dump () function
9609         to help debug deadlocks involving managed locks.
9610
9611 2006-11-13  Dick Porter  <dick@ximian.com>
9612
9613         * file-io.c (get_file_attributes): If the file is a symlink try
9614         and get the stat data for the target, but also add the
9615         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
9616         the specs for the windows symlink support, but will probably have
9617         to be reworked when I have test data from a vista machine.  Fixes
9618         bug 79887.
9619
9620 2006-11-13  Dick Porter  <dick@ximian.com>
9621
9622         * gc.c (mono_domain_finalize): 
9623         * marshal.c (mono_delegate_begin_invoke): 
9624         * threadpool.c (socket_io_init, mono_thread_pool_init)
9625         (mono_thread_pool_finish): 
9626         * monitor.c (mono_monitor_try_enter_internal): 
9627         * threads.c (mono_thread_resume, mono_thread_init)
9628         (mono_thread_suspend_all_other_threads)
9629         (mono_thread_execute_interruption): 
9630         * appdomain.c (mono_domain_unload): Check for NULL error returns
9631         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
9632         75733.
9633
9634 2006-11-11  Miguel de Icaza  <miguel@novell.com>
9635
9636         * process.c
9637         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
9638         Only close the handle if the value of the handle is not
9639         INVALID_HANDLE_VALUE.  This just makes the process a bit more
9640         robust.
9641
9642         Improvement for #75733, so that we do not run into this problem. 
9643
9644         
9645         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
9646         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
9647         internal variables.  Fixes #79462 
9648         
9649
9650 2006-11-09  Dick Porter  <dick@ximian.com>
9651
9652         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9653         Use poll() not select().  Fixes bug 79397.
9654
9655 2006-11-09  Raja R Harinath  <rharinath@novell.com>
9656
9657         Fix #79872
9658         * assembly.c (mono_assembly_load_from_full): Check that the given
9659         image has an assembly manifest.
9660
9661 2006-11-09  Ankit Jain  <jankit@novell.com>
9662
9663         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
9664         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
9665         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
9666
9667 2006-11-07  Dick Porter  <dick@ximian.com>
9668
9669         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
9670         Put the old resolver behaviour back for pre-2.0 profiles.
9671
9672 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
9673
9674         * threadpool.c: precise GC and locking fixes.
9675
9676 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
9677
9678         * class.c: don't load types that have an explicit unaligned
9679         managed reference. Provide better info in the TypeLoad exception.
9680         Part of the fix for bug #79744.
9681         * object.c: use the correct check for class type load issues.
9682
9683 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
9684
9685         * class.c: enforce alignment of fields with managed references
9686         even when Pack=1 is forced by the user (bug #77788).
9687
9688 2006-11-03  Dick Porter  <dick@ximian.com>
9689
9690         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
9691         If the address reverse lookup fails, return it as the hostname
9692         anyway.  Fixes bug 79721.
9693
9694 2006-11-03  Dick Porter  <dick@ximian.com>
9695
9696         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
9697         Fix build on Windows.
9698
9699 2006-11-02  Dick Porter  <dick@ximian.com>
9700
9701         * icall-def.h: 
9702         * object-internals.h: 
9703         * exception.c (mono_get_exception_thread_interrupted): 
9704         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
9705         Fixes bug 74525.
9706
9707         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
9708         Check for pending Thread.Interrupt.
9709
9710 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
9711         * loader.c: Fixed bug 79684.
9712
9713 2006-10-27  Dick Porter  <dick@ximian.com>
9714
9715         * file-io.c (get_file_attributes): Force symlinks to directories
9716         to be returned as a regular file.  Fixes bug 79733.
9717 2006-10-26  Dick Porter  <dick@ximian.com>
9718
9719         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
9720         CreateFile to open a directory then we need to set the
9721         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
9722
9723 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
9724
9725         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
9726         friends.
9727
9728 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9729
9730         * sgengc.c: small cleanup of timer code.
9731
9732 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
9733
9734         * sgen-gc.c: fix some warnings and start adding support for
9735         complete object removal on domain unload.
9736
9737 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
9738
9739         * assembly.c: build_assembly_name should not consider a version
9740         number without build or revision number invalid. Fixes bug #79715.
9741
9742 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
9743
9744         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
9745         call kernel32 function OutputDebugString directly.
9746         
9747         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
9748         
9749 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
9750
9751         * reflection.c: small cleanup, using a function to insert a MonoString
9752         in the string heap.
9753
9754 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
9755
9756         * reflection.c: moving GC fixes.
9757
9758 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
9759
9760         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
9761         all the objects with finalizers belonging to an unloading appdomain.
9762
9763 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
9764
9765         * sgen-gc.c: added ability to allocate even when the nursery is fully
9766         pinned and fixed a couple of bugs.
9767
9768 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
9769
9770         * threads.h: Revert the last change for now.
9771
9772         * threads.h (mono_thread_get_pending_exception): Rename this to
9773         mono_thread_get_undeniable_exception ().
9774
9775 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
9776
9777         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
9778         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
9779         when fname does not refer to valid assembly. This result in a more
9780         meaningful error message.
9781         * exception.c: added mono_get_exception_bad_image_format2 which 
9782         constructs a BadImageFormatException using the ctor taking a custom
9783         message and the file name. Passing in a NULL msg results in a default
9784         message.
9785         * exception.h: define mono_get_exception_bad_image_format2 function.
9786         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
9787         when file name pointed to an invalid IL image. Use 
9788         mono_get_exception_file_not_found2 to construct FileNotFoundException,
9789         as this results in a more meaningful error message.
9790
9791 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
9792
9793         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
9794         #79465.
9795
9796 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
9797
9798         * metadata.c (mono_type_size): Change the align parameter to guint32 for
9799         consistency with the other _size functions.
9800         (mono_type_stack_size): Ditto.
9801
9802         * class.c object.c icall.c: Fix warnings caused by the above change.
9803
9804         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
9805
9806         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
9807
9808         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
9809
9810 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
9811
9812         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
9813         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
9814         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
9815         threadpool.h, threads-types.h: mark more internal functions.
9816
9817 2006-10-11  Dick Porter  <dick@ximian.com>
9818
9819         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9820         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
9821         reproduce the bug even before applying the fix.)
9822
9823 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
9824
9825         * reflection.c: allow retrieving attributes for arguments in generic
9826         methods (bug #79241).
9827
9828 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
9829
9830         * debug-mono-symfile.c: properly check fopen () result (found by
9831         coverity).
9832
9833 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
9834
9835         * reflection.c: make error message clearer and fixed two
9836         issuelets found by Coverity.
9837
9838 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
9839
9840         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
9841
9842 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
9843
9844         * object-internals.h, gc-internal.h, profiler-private.h:
9845         mark internal functions.
9846
9847 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
9848
9849         * reflection.c: put data in the text section.
9850         * icall.c: recognize more types in type_from_typename ().
9851         * process.c, marshal.c: added some GC FIXMEs.
9852
9853 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9854
9855         * loader.c: check for NULL before initializing.
9856
9857 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
9858
9859         * gc.c (finalizer_thread): Use a non-alertable wait here.
9860
9861         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
9862         until the correct solution is found.
9863
9864 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9865
9866         * reflection.c (mono_module_get_object): Avoid an assert when operating on
9867         modules with no metadata. Fixes #79596.
9868
9869         * image.c (load_metadata_ptrs): Put back the error message when
9870         the #- heap is encountered since the support is not complete yet.
9871
9872 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9873
9874         * gc.c: do not allow the user to SuppressFinalize () a
9875         delegate because it would leak the trampoline if present.
9876
9877 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9878
9879         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
9880         PropertyPtr table.
9881
9882 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
9883
9884         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
9885
9886         * metadata.c (mono_metadata_get_param_attrs): Ditto.
9887
9888         * row-indexes.h: Add definitions for *Ptr tables.
9889
9890         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
9891
9892         * metadata.c (mono_metadata_translate_token_index): New helper function to
9893         translate table indexes used in uncompressed metadata.
9894         (mono_metadata_decode_table_row): Ditto.
9895         (mono_metadata_decode_table_row_col): Ditto.
9896
9897         * metadata.c: Add table schema for *Ptr tables.
9898
9899         * class.c loader.c: Use the new helper function to access the affected metadata
9900         tables.
9901         
9902         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
9903         #38532.
9904         
9905 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
9906
9907         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
9908         sequences which can be unbounded in size. Fixes #79583.
9909
9910 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
9911
9912         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
9913         static initialization.
9914
9915         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
9916
9917         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
9918
9919         * domain.c (mono_domain_free): Free up type_init_exception_hash.
9920
9921         * object.c (mono_runtime_class_init): Implement correct semantics when a static
9922         ctor fails, i.e. throw the same exception on subsequent accesses.
9923         
9924 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
9925
9926         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
9927         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
9928         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
9929         Handle marshalling of interfaces and VARIANTs contained in structs.
9930         
9931         Code is contributed under MIT/X11 license.
9932         
9933 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
9934
9935         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
9936         
9937         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
9938         mempool.
9939
9940 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9941
9942         * console-io.c: ignore previous SIGINT handler.
9943
9944 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
9945
9946         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
9947         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
9948         #79460, #79461, #79485.
9949
9950         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
9951
9952         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
9953         #79217.
9954
9955 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
9956
9957         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
9958         could be generated from it.
9959
9960 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
9961
9962         * rand.c: fix read loop to correctly handle EINTR.
9963
9964 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9965
9966         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
9967         internal calls are defined to keep methods closer to the declaring
9968         type and allow a significant reduction in runtime relocations and
9969         memory usage.
9970
9971 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
9972
9973         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
9974         exception message to have FileNotFoundException use the default
9975         assembly load error message. Fixes bug #79426.
9976         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
9977
9978 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9979
9980         * threadpool.c: (start_thread_or_queue) use the root domain when
9981         creating the thread instead of the async object one.
9982
9983 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
9984
9985         * class.c, object.c, class-internals.h, reflection.c:
9986         for arrays, store element_size inside MonoClass (speedup
9987         for array object creation).
9988
9989 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
9990
9991         * icall.c: fixed CodeBase to use the file name and not the module
9992         name (bug #79365).
9993
9994 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9995
9996         * mono-debug.c, mono-debug.h: export find_method as
9997         mono_debug_find_method ().
9998
9999 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
10000
10001         * debug-helpers.c, class-internals.h: added a few functions useful
10002         when debugging under gdb.
10003
10004 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10005
10006         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
10007         characters that need special handling.
10008
10009 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
10010
10011         * mono-config.c: make the os/cpu specification more flexible,
10012         allowing lists and negation.
10013
10014 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
10015
10016         * marshal.c: COM Interop fixes. Handle case where method->klass.
10017         is interface. Handle BSTR/MonoString when null. Use CDECL as 
10018         calling convention on non-windows platforms. This is for
10019         compatibility with XPCOM and MainWin COM.
10020         
10021         Code is contributed under MIT/X11 license.
10022         
10023
10024 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
10025
10026         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
10027         correctly. Fixes #79217.
10028
10029         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
10030
10031 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
10032
10033         * mono-config.c: allow both an os and cpu attribute for dllmap
10034         and dllentry elemnets to enable a single config file to be used
10035         for multiple architectures.
10036
10037 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
10038
10039         * loader.c: MonoLoaderError was cleared too soon on load failure.
10040         Fixes bug #79424.
10041
10042 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
10043
10044         * icall.c: use the defining class vtable when accessing a
10045         static field, not a pobblibly derived class.
10046
10047 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
10048
10049         * icall.c string-icalls.c: Remove references to unicode.h.
10050
10051         * unicode.h unicode.c Makefile.am: Remove these unused source files.
10052
10053         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
10054
10055         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
10056         indicating the image where custom marshaller types should be looked up.
10057         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
10058         custom marshallers, instead of corlib. Fixes #79425.
10059
10060 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
10061
10062         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
10063
10064 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
10065
10066         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
10067         Implement Environment.ProcessorCount.
10068         
10069         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
10070         Implement Environment.ProcessorCount.
10071         
10072         * icall.c: 
10073         Add Environment.ProcessorCount icall.
10074         
10075         Patch by Jason McFall.
10076
10077 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10078
10079         * assembly.c: don't append .exe/.dll when the filename already contains
10080         one of those extensions.
10081
10082 2006-09-12  Martin Baulig  <martin@ximian.com>
10083
10084         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
10085         to array interfaces.
10086
10087 2006-09-11  Martin Baulig  <martin@ximian.com>
10088
10089         * reflection.c (mono_image_build_metadata): Create the
10090         MethodImpl's after emitting all types and methods, so we don't
10091         need another fixup pass for them.
10092
10093 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
10094
10095         * class.c (mono_class_from_name_case): Fix regression introduced by the last
10096         change.
10097
10098 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
10099
10100         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
10101         unload.
10102
10103 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
10104
10105         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
10106         args is not set. Fixes #78926.
10107
10108 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
10109
10110         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
10111
10112         * image.c (load_class_names): Move this to class.c, and rename it to 
10113         'mono_image_init_name_cache'.
10114         (load_modules): Fix a warning.
10115
10116         * class.c icall.c image.c: Initialize image->name_cache lazily.
10117
10118         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
10119         on its name using information in the AOT file.
10120
10121         * class.c (mono_class_from_name): Use the new hook function.
10122
10123 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
10124
10125         * reflection.c (mono_param_get_objects): Handle enum default parameter values
10126         correctly.
10127
10128         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
10129         Fixes #79289.
10130         
10131 2006-09-06  Martin Baulig  <martin@ximian.com>
10132
10133         * icall.c (mono_lookup_internal_call): Small fix.
10134
10135 2006-09-05  Raja R Harinath  <rharinath@novell.com>
10136
10137         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
10138         double g_free.
10139
10140 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
10141
10142         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
10143         when --debug is specified.
10144
10145 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
10146
10147         * class.c (setup_generic_array_ifaces): Fix a warning.
10148
10149 2006-09-04  Miguel de Icaza  <miguel@novell.com>
10150
10151         * Temporarily remove the patch to assemly.c that checks the
10152         assembly versions as it breaks our gacutil.
10153
10154 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
10155
10156         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
10157
10158         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
10159         a net 1.0 runtime.
10160
10161         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
10162         created using the default ctor. Fixes #79152.
10163         (mono_string_builder_to_utf16): Ditto.
10164
10165 2006-09-01  Martin Baulig  <martin@ximian.com>
10166
10167         Fix handling of the generic array interfaces.
10168
10169         * class-internals.h
10170         (MonoDefaults): Removed `generic_array_class' and added
10171         `generic_ilist' class.
10172
10173         * class.c
10174         (mono_bounded_array_class_get): Add the new generic array interfaces.
10175         (setup_generic_array_ifaces): New static method; create vtable
10176         entries for each method in the generic array interfaces.
10177
10178         * metadata.c
10179         (select_container): Allow "parent-less" generic methods.
10180
10181         * marshal.c
10182         (mono_marshal_get_generic_array_helper): New public method.
10183
10184         * icall.c
10185         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
10186         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
10187         moved the interncall into System.Array.
10188
10189 2006-09-01  Raja R Harinath  <rharinath@novell.com>
10190
10191         A few more cases of avoiding work on types with ->byref set.
10192         Has the real fix for #79238
10193         * icall.c (is_generic_parameter): New helper.
10194         (ves_icall_Type_GetGenericParameterPosition): Use it.
10195         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
10196         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
10197         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
10198         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
10199         reference types.
10200         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
10201         reference types.
10202         (ves_icall_Type_get_IsGenericInstance): Likewise.
10203         (ves_icall_Type_get_IsGenericType): Likewise.
10204
10205 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
10206
10207         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
10208         class if possible.
10209
10210         * mempool.h (mono_mempool_get_allocated): New helper function.
10211
10212         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
10213         change.
10214
10215         * mempool.c: Fix warnings and the calculation of stats.
10216
10217         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
10218
10219         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
10220
10221         * loader.c (mono_get_method_from_token): Update method_count stat.
10222
10223         * class-internals.h (MonoStats): Add some stats.
10224
10225 2006-08-31 Robert Jordan  <robertj@gmx.net>
10226
10227         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
10228         with managed variants.
10229         All code is contributed under the MIT/X11 license.
10230         
10231 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
10232
10233         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
10234         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
10235
10236         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
10237
10238         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
10239         with cycles in classes.
10240
10241         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
10242
10243         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
10244         missing a [MarshalAs] directive. Fixes #79203.
10245
10246         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
10247         klass->marshal_info. Fixes #79217.
10248
10249 2006-08-30  Martin Baulig  <martin@ximian.com>
10250
10251         Committing a patch from Joachim Ante <joe@otee.dk>:
10252         Add support for binary data symbol stores.
10253
10254         * debug-mono-symfile.c
10255         (mono_debug_open_mono_symbol_file): Renamed into
10256         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
10257         arguments.
10258
10259         * mono-debug.c
10260         (mono_debug_open_image): Added `raw_contents' and `size' args.
10261         (mono_debug_init_2_memory): New public function.
10262
10263 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
10264
10265         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
10266
10267 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10268
10269         * appdomain.c: implement support for ShadowCopyFiles.
10270
10271 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
10272
10273         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
10274         when value is NULL (and should remove CID #51).
10275
10276 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10277
10278         * image.c: moved 2 functions to ../utils.
10279
10280 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
10281
10282         * gc.c: cope with the target object of a GC handle being NULL
10283         (bug #78877).
10284
10285 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
10286
10287         * class.c: recursively check parent's explicit implementations
10288         of interface methods (fixes bug #79125).
10289
10290 2006-08-19  Miguel de Icaza  <miguel@novell.com>
10291
10292         * filewatcher.c: Avoid warnings when building, do not redefine
10293         constants that are defined.
10294
10295         Remove warnings.
10296
10297 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10298
10299         * image.c: don't fail when the link points to an absolute path.
10300
10301 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
10302
10303         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
10304         Fix CID #3.
10305
10306 2006-08-17  Miguel de Icaza  <miguel@novell.com>
10307
10308         * image.c (full_path): A new method used to obtain the actual path
10309         of an assembly even in the presence of symbolic links.  
10310
10311         This is necessary for the case where we are running a binary that
10312         has been GACed, but we are using the "published" path name
10313         ($prefix/mono/1.0/blah.exe) which happens to point to the real
10314         file in the GAC.
10315
10316         This was the source of the failure for the `xsp' command with the
10317         recent AppDomain changes, as far as the runtime was concerned,
10318         there were two different assemblies: $prefix/mono/1.0/blah.exe and
10319         $prefix/mono/gac/blah/version/blah.exe.
10320
10321         (do_mono_image_open): use full path
10322
10323 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10324
10325         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
10326
10327 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
10328
10329         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
10330         domain_id is supplied. Fix CID #241 and corlib's unit tests.
10331
10332 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10333
10334         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
10335         small structures. Fixes #78990.
10336
10337 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10338
10339         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
10340
10341         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
10342
10343 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10344
10345         * appdomain.c:
10346         * marshal.c: don't load all the assemblies from a domain into newly
10347         created ones. The new domains might have different rules and load
10348         assemblies from different locations. Fixes bug #76757.
10349
10350         Patch by Lluis. Conflicts resolved by Brian Crowell.
10351
10352 2006-08-16  Alp Toker  <alp@atoker.com>
10353
10354         * socket-io.c: First half of the fix for #79084.
10355         Set sa_size to the length of the content, not that of the struct.
10356         Don't add NULL suffix to the content, this should be done in
10357         managed code if needed.
10358
10359 2006-08-14  Raja R Harinath  <rharinath@novell.com>
10360
10361         Fix part of #79012
10362         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
10363         mono_metadata_parse_type returns NULL.
10364
10365 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
10366
10367         * normalization-tables.h : new file for string normalization data.
10368         * locales.c, locales.h, icall.c :
10369           added load_normalization_resource() for string normalization,
10370           and icall as well.
10371         * Makefile.am : added normalization-tables.h to the sources.
10372
10373 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
10374
10375         * marshal.c: Add more helper functions to reduce code duplication and use them
10376         everywhere.
10377
10378 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
10379
10380         * marshal.c: Fix non-x86 stdcall warnings.
10381         
10382         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
10383         them everywhere.
10384
10385 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
10386
10387         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
10388         type check on multi-dimensional arrays. Fixes #79000.
10389
10390 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
10391
10392         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
10393         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
10394         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
10395         * class-internals.h: add is_com_object to class structure.
10396         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
10397         null checks to COM object marshalling. Fix .ctor call on RCW.
10398         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
10399         
10400         All code is contributed under the MIT/X11 license.
10401
10402 2006-08-09  Dick Porter  <dick@ximian.com>
10403
10404         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
10405         racing mono_monitor_allocator_lock() somewhere, so don't delete
10406         the critical section for now.  Found by running and exiting
10407         monodevelop.
10408
10409 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
10410
10411         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
10412         (ves_icall_System_ComObject_FindInterface): Ditto.
10413         (ves_icall_System_ComObject_CacheInterface): Ditto.
10414
10415         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
10416         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
10417
10418 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10419
10420         * threadpool.c: treat pipes from process asynchronous reads as sockets
10421         when reading from them, so we get select/poll or epoll to wait for
10422         data.
10423
10424 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
10425
10426         * loader.c: Fix a typo (CID #233) in the null check.
10427
10428 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
10429
10430         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
10431         Hopefully fixes #78949.
10432         
10433         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
10434         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
10435         bytes. Fixes #78972.
10436
10437 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10438
10439         * filewatcher.c: we need to set errno here.
10440
10441 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10442
10443         * filewatcher.c: let Win32Exception get the error value.
10444
10445 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10446
10447         * filewatcher.c: translate errno into win32 errors for Win32Exception
10448         to know what happened.
10449
10450 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
10451
10452         * threadpool.c: Fix more warnings.
10453
10454         * assembly.c (search_loaded): Fix warnings.
10455
10456         * threadpool.c (mono_thread_pool_finish): Fix warnings.
10457         (mono_async_invoke): Ditto.
10458
10459 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
10460
10461         * object.c (mono_remote_class_vtable): Need to create proxy vtable
10462         entries for __ComObject type in addition to ComImport types.
10463         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
10464         about hash table.
10465         
10466         All code is contributed under the MIT/X11 license.
10467
10468 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
10469
10470         * image.c: avoid tentative loading of modulerefs that contain
10471         no metadata (P/Invoke library names).
10472
10473 2006-07-28  Dick Porter  <dick@ximian.com>
10474
10475         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
10476         mono_loader_lock() somewhere, so don't delete the critical section
10477         for now.  Found by running and exiting monodevelop.
10478
10479 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10480
10481         * filewatcher.c: define the inotify syscalls when we're building on
10482         linux and have sys/syscall.h. The build system might not have support
10483         for inotify but the target system might have it.
10484
10485 2006-07-26  Miguel de Icaza  <miguel@novell.com>
10486
10487         * domain.c: Documentation updates.
10488
10489         * loader.c (mono_free_method): Do not release the method
10490         information if we are being profiled, as profilers will use this
10491         information at shut down to present some data to the user.
10492
10493         This is needed so that the profiler does not crash, as the
10494         profiler tends to keep MonoMethods around, and they might become
10495         invalid if we free these.
10496
10497         (mono_get_method_constrained): Return the original CIL stream
10498         method as well, so verification can be performed against it.
10499
10500 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10501
10502         * filewatcher.[ch]: support for inotify file system watcher.
10503         * icall.c: add new internal calls for the inotify file system watcher.
10504
10505 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10506
10507         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
10508         #78888.
10509
10510 2006-07-20  Dick Porter  <dick@ximian.com>
10511
10512         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
10513         warning.
10514
10515 2006-07-20  Dick Porter  <dick@ximian.com>
10516
10517         * threads.c (start_wrapper): Do the thread cleanup while we still
10518         hold a reference to its object.  Fixes bug 78123.
10519
10520 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
10521
10522         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
10523         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
10524           "managed-to-managed".
10525         * icall.c: Redirect string constructors that take sbyte* to
10526           ves_icall_System_String_ctor_RedirectToCreateString.
10527         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
10528           to CreateString () methods with matching signature.
10529         * reflection.c: Use original security informations for
10530           MONO_WRAPPER_MANAGED_TO_MANAGED.
10531         * security-manager.c: Use original security informations for
10532           MONO_WRAPPER_MANAGED_TO_MANAGED.
10533         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
10534           that is a placeholder and only its address should be used.
10535         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
10536           that is a placeholder and only its address should be used.
10537
10538 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
10539
10540         Begin implementing COM Interop.
10541         * appdomain.c: Increment corlib version.
10542         * class.c: Set ComImport classes' parent to __ComObject.
10543         * loader.c: Mark cominterop methods as such.
10544         * domain.c: Add __ComObject class to MonoDefaults structure.
10545         * image.c: Add 2 hashtables to the image for COM Interop related methods
10546         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
10547         using the mempool allocator
10548         
10549         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
10550         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
10551         declaration for mono_metadata_type_dup_mp.
10552         
10553         * debug-helpers.c: Added strings for two additional wrapper types
10554         * object.c: Create proxy objects for ComImport classes
10555         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
10556         and added __ComObject class to MonoDefaults structure.
10557         
10558         * object-internals.h: Finish MonoRealProxy definition, and add definition of
10559         MonoComInteropProxy and MonoComObject.
10560         
10561         * marshal.c: Added support for COM Interop
10562         (signature_cominterop): Converts managed signature to corresponding
10563         unmanaged COM signature.
10564         (cominterop_get_function_pointer): gets unmanaged function pointer via
10565         COM object vtable
10566         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
10567         (cominterop_get_method_interface): returns interface type that method is defined on
10568         (mono_mb_emit_cominterop_call): emits native call to function pointer
10569         gotten from vtable
10570         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
10571         that matches signature of unmanaged function.
10572         (cominterop_get_native_wrapper): wrapper around adjusted method call.
10573         (cominterop_get_invoke): forwards call from proxy to __ComObject
10574         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
10575         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
10576         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
10577         
10578         * marshal.h: Added Marshal icall declarations.
10579         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
10580         so we can access them in finalizer
10581         
10582 2006-07-14  Dick Porter  <dick@ximian.com>
10583
10584         * object.c (mono_type_initialization_cleanup): Fix a race
10585         condition by temporarily commenting out the critical section
10586         deletion.
10587
10588 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
10589
10590         * reflection.c (create_custom_attr): Fix some warnings.
10591         (create_custom_attr_data): Ditto.
10592         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
10593         types. Fixes #78855.
10594
10595 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
10596
10597         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
10598
10599         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
10600
10601 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
10602
10603         * reflection.c (resolve_object): Add support for DynamicMethod.
10604
10605         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
10606         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
10607
10608 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
10609
10610         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
10611         don't leak GPtrArray's pdata has we have no use (nor free) for it.
10612
10613 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
10614
10615         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
10616         Fixes #77888.
10617
10618 2006-06-30  Raja R Harinath  <rharinath@novell.com>
10619
10620         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
10621         slightly: remove a shadow local variable.
10622
10623 2006-06-29  Raja R Harinath  <rharinath@novell.com>
10624
10625         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
10626         definition that introduces the virtual function slot.
10627         Also fix Coverity #105.
10628
10629 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
10630
10631         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
10632         for dynamic assemblies. Fixes #78724.
10633
10634 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
10635
10636         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
10637         Fixes #78722.
10638
10639 2006-06-21  Martin Baulig  <martin@ximian.com>
10640
10641         * reflection.c
10642         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
10643         fixes #76484.
10644
10645 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
10646
10647         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
10648
10649 2006-06-20  Raja R Harinath  <rharinath@novell.com>
10650
10651         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
10652         nor TYPEREFs.
10653         * class.c (mono_class_create_from_typespec): Add 'context' argument.
10654         Inflate result if necessary.
10655         (mono_class_get_full): Remove old version.  Rename from
10656         'mono_class_get' and add 'context' argument.  Pass it to
10657         ..._create_from_typespec.
10658         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
10659         (mono_ldtoken): Revert change below.
10660
10661 2006-06-20  Martin Baulig  <martin@ximian.com>
10662
10663         * class.c (mono_ldtoken): Don't pass the generic context to
10664         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
10665
10666 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
10667
10668         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
10669         and later freeing it. Fixes #78638.
10670
10671 2006-06-15  Miguel de Icaza  <miguel@novell.com>
10672
10673         * icall.c (mono_class_get_throw): Revert over-zealous error
10674         throwing, the caller for mono_class_get_throw will cope with
10675         errors when classes are not properly initialized already.
10676
10677         The code still copes with loader exceptions though.
10678
10679         Fixes the regression in reftype1 and reftype3 from the CAS tests.
10680         
10681 2006-06-14  Miguel de Icaza  <miguel@novell.com>
10682
10683         Fixes the `make run1' version of RuntimeAbort (to be commited,
10684         source is in Bugzilla).
10685         
10686         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
10687         FALSE on class loading failure instead of returning true.
10688
10689         * class.c (mono_class_create_from_typedef): It is possible for
10690         mono_metadata_interfaces_from_typedef_full to fail if a class is
10691         not found, cope with this.
10692         
10693
10694 2006-06-14  Dick Porter  <dick@ximian.com>
10695
10696         * socket-io.c: 
10697         * process.c: Fix a bunch of signed/unsigned warnings from gcc
10698         4.1.1
10699
10700 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
10701
10702         * culture-info-table.h : oops, forgot to make it nsync with r61548.
10703
10704 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10705
10706         * icall.c: Another fix for building mono in Visual Studio.
10707
10708 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10709
10710         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
10711         
10712 2006-06-09  Martin Baulig  <martin@ximian.com>
10713
10714         * debug-mono-symfile.c: Put this back and really fix it this
10715         time. Sorry for all the trouble.
10716
10717 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
10718
10719         * icall.c (mono_class_get_throw): Fix a warning.
10720         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
10721         ReflectionTypeLoadException if needed. Fixes #78606.
10722
10723         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
10724         (mono_class_init): Ditto.
10725
10726         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
10727         ref_only exceptions.
10728         (mono_loader_clear_error): Make this work even if there is no error.
10729
10730 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
10731
10732         * object-internals.h marshal.c marshal.h icall.c: Implement method 
10733         Marshal.GetComSlotForMethodInfo using internal call.
10734
10735 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
10736
10737         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
10738         a function for signalling it.
10739
10740         * class.c (mono_class_from_typeref): Use the new kind of loader error when
10741         a referenced assembly is not found.
10742
10743         * loader.c (mono_loader_error_prepare_exception): Add support for 
10744         LOADER_ERROR_ASSEMBLY. Fix formatting.
10745
10746 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
10747
10748         * domain.c appdomain.c class-internals.h marshal.c: Add support 
10749         for VARIANT marshalling on windows and increment corlib version
10750         since Variant struct was added.
10751
10752 2006-06-03  Miguel de Icaza  <miguel@novell.com>
10753
10754         * debug-mono-symfile.c: Revert Martin's previous patch which broke
10755         stack trace line information:
10756
10757         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
10758         (Martin) when looking up B which is between A and C, return A not C.
10759
10760         Bug is #78573.
10761
10762         Thanks to Alexander Olk for tracking this down.
10763
10764 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
10765
10766         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
10767         
10768         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
10769         avoid clobbering its value.
10770         (mono_string_to_lpstr): Fix a warning on windows.
10771
10772 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
10773
10774         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
10775
10776         * reflection.c loader.c: Removed references to 'dummy' flag.
10777
10778         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
10779
10780         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
10781         it gets GC tracking.
10782
10783         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
10784         GC tracking.
10785         
10786         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
10787
10788         * marshal.c threadpool.c: Update callers of mono_async_result_new.
10789
10790         * appdomain.c: Bump corlib version.
10791
10792 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
10793
10794         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
10795         CEE_STIND_REF when working with object references.
10796
10797 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
10798
10799         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
10800         Fixes #78539.
10801
10802 2006-05-30  Miguel de Icaza  <miguel@novell.com>
10803
10804         * loader.c (method_from_memberref): Fix argument value for
10805         mono_loader_set_error_method_load (I was passing the MonoClass
10806         instead of the class name char *).
10807
10808 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
10809
10810         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
10811         CEE_STIND_REF when working with object references.
10812
10813 2006-05-30  Martin Baulig  <martin@ximian.com>
10814
10815         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
10816         mono_method_full_name() change and replace the ':' with a '.'
10817         here.
10818
10819 2006-05-30  Martin Baulig  <martin@ximian.com>
10820
10821         * debug-mono-symfile.c
10822         (mono_debug_symfile_lookup_location): Fix the algorithm:
10823         when looking up B which is between A and C, return A not C.
10824
10825 2006-05-29  Martin Baulig  <martin@ximian.com>
10826
10827         * mono-debug.h
10828         (MonoDebugMethodInfo): Make the typedef public.
10829         (MonoDebugSourceLocation): New public struct.
10830
10831         * mono-debug.c
10832         (mono_debug_source_location_from_address): Removed.
10833         (mono_debug_source_location_from_il_offset): Removed.
10834         (mono_debug_il_offset_from_address): Removed.
10835         (mono_debug_address_from_il_offset): Removed.
10836         (mono_debug_lookup_method): New public function.
10837         (mono_debug_lookup_source_location): New public function; replaces
10838         the old mono_debug_source_location_from_*() functions; see the
10839         inline documentation.
10840         (mono_debug_free_source_location): New public function.
10841         (mono_debug_print_stack_frame): New public function; see the
10842         inline documentation.
10843
10844         * debug-mono-symfile.c
10845         (mono_debug_find_source_location): Renamed into
10846         mono_debug_symfile_lookup_location(); only take a
10847         `MonoDebugMethodInfo *' and an `offset' argument; added inline
10848         documentation.
10849         (mono_debug_find_method): Renamed into
10850         mono_debug_symfile_lookup_method().
10851
10852 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
10853
10854         * assembly.c (mono_assembly_open_full): Dont overwrite the status
10855         returned by mono_image_open_full ().
10856
10857         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
10858         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
10859         #78517.
10860
10861         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
10862         #78518.
10863
10864 2006-05-27  Miguel de Icaza  <miguel@novell.com>
10865
10866         * class.c (mono_class_from_typeref): handle missing images
10867         earlier, deals with bug #78418.   Refactor code; 
10868
10869         Fix a warning introduced in my previous commit (some stale code
10870         from before I revisited my patch).
10871
10872         * class.c (mono_class_create_from_typedef): On failure, remove the
10873         class from the MonoImage->class_cache as the class is not
10874         initialized;   Fixes the leak pointed out by Paolo.
10875
10876 2006-05-25  Dick Porter  <dick@ximian.com>
10877
10878         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
10879         DeleteCriticalSections until I figure out which one may still be
10880         sometimes locked when mono_thread_cleanup is called.
10881
10882 2006-05-24  Dick Porter  <dick@ximian.com>
10883
10884         * threads.c (mono_thread_cleanup): Move the threading cleanup out
10885         of mono_thread_manage and back into its own function, so it can be
10886         called after the finalizer thread has finished.
10887
10888         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
10889
10890 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
10891
10892         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
10893         Fixes #78495.
10894
10895         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
10896         with non-blittable elements.
10897         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
10898
10899 2006-05-24  Martin Baulig  <martin@ximian.com>
10900
10901         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10902         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
10903
10904         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
10905         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
10906         `mono_debugger_event_handler' to NULL.
10907
10908 2006-05-24  Martin Baulig  <martin@ximian.com>
10909
10910         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
10911
10912 2006-05-24  Martin Baulig  <martin@ximian.com>
10913
10914         * mono-debug-debugger.h
10915         (mono_debugger_create_notification_function): Added
10916         `MonoCodeManager *' argument.
10917
10918 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
10919
10920         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
10921
10922 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
10923
10924         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
10925         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
10926         implementation.
10927
10928 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
10929
10930         * icall.c: precise GC support: objects can't be stored in unmanaged
10931         memory anymore, even if they are kept alive by other references: since
10932         they can move the GC needs to be able to always find them.
10933
10934 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10935
10936         * object.c: precise GC support for static fields. Support
10937         for moving GCs: write barriers and pinned allocation for interned
10938         strings.
10939
10940 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
10941
10942         * domain.c, domain-internals.h: precise GC support for the MonoDomain
10943         structure.
10944
10945 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10946
10947         * class.c, gc.c: sgen and precise GC updates.
10948
10949 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10950
10951         * marshal.h, marshal.c: added write barrier wrapper and precise type
10952         fixes.
10953
10954 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
10955
10956         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
10957         support.
10958
10959 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
10960
10961         * reflection.c: precise and sgen GC updates.
10962
10963 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
10964
10965         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
10966
10967 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
10968
10969         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
10970
10971 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
10972
10973         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
10974         MONO_TYPE_OBJECT. Fixes #78462.
10975
10976 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
10977
10978         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
10979         and blittable types.
10980
10981 2006-05-17  Miguel de Icaza  <miguel@novell.com>
10982
10983         * class.c (mono_class_get_exception_for_failure): Implement parts
10984         of a TODO: if the loader error is set (instead of the class
10985         error), we return a Loader exception that can be properly thrown
10986         elsewhere.
10987
10988         This was exposed by some Winforms 2.0 code that I tried to run
10989         (Atsushi pointed me to it).
10990
10991 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
10992
10993         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
10994         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
10995         
10996         * marshal.c (emit_marshal_vtype): Add limited support for 
10997         UnmanagedType.LPStruct. Fixes #78427.
10998
10999         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
11000         Applied a patch from kangaroo to fix #77523.
11001
11002 2006-05-17  Martin Baulig  <martin@ximian.com>
11003
11004         * threads.c
11005         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
11006         (debugger_thread_created): Removed.
11007         (debugger_thread_exited): Removed.
11008
11009 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
11010
11011         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11012
11013         * object-internals.h (MonoReflectionResource): Sync with managed version.
11014
11015 2006-05-12  Wade Berrier <wberrier@novell.com>
11016
11017         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
11018
11019 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
11020
11021         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
11022         functions try to allocate from the image mempool.
11023
11024 2006-05-12  Dick Porter  <dick@ximian.com>
11025
11026         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
11027
11028 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
11029
11030         * object.c: The FieldGetter and FieldSetter methods require the full
11031         name of the class, not only the name. Fixes bug #78277.
11032
11033 2006-05-11  Miguel de Icaza  <miguel@novell.com>
11034
11035         * loader.c (method_from_memberref): Do not pass the NULL klass to
11036         mono_loader_set_error_() methods.  Pass the non-NULL value
11037         (class). 
11038
11039 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
11040
11041         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
11042         (mono_assembly_close): Null out assembly->image->references after freeing it.
11043
11044         * image.c (mono_image_close): Free image->references.
11045         
11046         * reflection.c (mono_image_basic_init): Fix a small memory leak.
11047
11048 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
11049
11050         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
11051         before checking if it's NULL (g_assert).
11052
11053 2006-05-10  Martin Baulig  <martin@ximian.com>
11054
11055         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
11056         I thought I already killed that two months ago, but now it somehow reappeared.
11057
11058 2006-05-10  Martin Baulig  <martin@ximian.com>
11059
11060         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
11061
11062 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
11063
11064         * reflection.c: Allocate memory for dynamically created methods in the image
11065         mempools.
11066
11067 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
11068
11069         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
11070         don't use the ad pointer before checking if it's NULL (g_assert).
11071
11072 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
11073
11074         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
11075         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
11076
11077         * marshal.c: Allocate all signatures from mempools.
11078
11079         * marshal.c: Allocate some more signatures from mempools.
11080
11081 2006-05-09  Miguel de Icaza  <miguel@novell.com>
11082
11083         * object.c (mono_load_remote_field): The code used to provide a
11084         temporary variable for returning results if the user did not
11085         provide a result pointer.  But our temporary variable was allocted
11086         on the satck.
11087
11088         Fix calling code to always pass a result area.   Coverity ID 103.
11089
11090 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
11091
11092         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
11093         value, not the old. Fixes #78312.
11094         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
11095
11096         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
11097         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
11098         per-image cache.
11099
11100         * assembly.c (mono_assembly_close): Free image->references.
11101
11102         * assembly.c (mono_assembly_names_equal): Fix a warning.
11103         (mono_assemblies_cleanup): Cleanup more global data.
11104
11105         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
11106
11107         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
11108         ptr_cache and image->modules.
11109
11110         * image.c (mono_image_init): Allocate array_cache lazily.
11111         
11112 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11113
11114         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
11115         behavior was changed recently and has bad side effects.
11116
11117 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
11118
11119         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
11120         
11121         * assembly.c (mono_assembly_close): Remove a debug printf.
11122
11123         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
11124
11125         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
11126         to also allow for temporary references between mono_image_open ()/close ().
11127
11128         * domain.c (get_runtimes_from_exe): Add a FIXME.        
11129
11130 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
11131
11132         * marshal.c: Fix support for dynamic methods.
11133
11134         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
11135
11136         * marshal.c (mono_marshal_cleanup): New cleanup function.
11137
11138         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
11139         image mempools.
11140
11141         * class.c (mono_class_init): Fix leaking class->nested_classes.
11142
11143         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
11144
11145         * image.c (mono_image_init): Initialize the new cashes.
11146
11147         * image.c (mono_image_close): Destroy the new cashes.
11148
11149         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
11150
11151         * mempool.c (mono_mempool_strdup): New helper function.
11152
11153         * class-internals.h: Add prototype for mono_loader_unlock ().
11154
11155         * domain.c (mono_jit_info_table_find): Fix a warning.
11156         (mono_debugger_check_runtime_version): Ditto.
11157
11158         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
11159         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
11160         functions to these modules.
11161
11162         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
11163         metadata modules.
11164         
11165         * marshal.c (mono_free_bstr): Fix a warning.
11166
11167         * assembly.c (mono_assembly_open_full): Fix another small leak.
11168
11169         * object.c: Fix some unload leaks in the remoting code.
11170
11171         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
11172         function.
11173
11174         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
11175
11176         * reflection.c: Fix some unload leaks in dynamic assemblies.
11177
11178 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
11179
11180         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
11181         * marshal.h: Add BSTR support on Win32
11182         * icall.c: Add BSTR icalls
11183         * metadata.h: Add BSTR enums
11184
11185 2006-04-28  Miguel de Icaza  <miguel@novell.com>
11186
11187         Work to catch the crash from #76795 and turn it into an
11188         exception.   As I stubbed out pieces of the VisualBasic support,
11189         I found a number of places where the code was failing and I added
11190         checks to those places. 
11191         
11192         * metadata.c (do_mono_metadata_parse_generic_class): Make this
11193         function return a status code.  If we fail to parse the signature
11194         from mono_metadata_parse_generic_inst, return FALSE.
11195
11196         * loader.c (mono_get_method_from_token): If we fail to load the
11197         method (mono_class_get) return NULL.   
11198
11199         * (method_from_memberref): Return NULL if we are unable to parse
11200         the method signature
11201
11202         (mono_loader_error_prepare_exception): Since we now use the
11203         loader_error flag internally to stop processing, and obtaining
11204         exceptions that might be thrown will walk this code path the
11205         proper way of going from a MonoLoaderError into a
11206         MonoException was convoluted.   This new routine encapsulates the
11207         process of turning the error into an exception and *clearing* the
11208         error afterwards.
11209         
11210 2006-04-27  Miguel de Icaza  <miguel@novell.com>
11211
11212         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
11213         with missing assemblies), and to cope with:
11214
11215                 * Missing fieldref from a non-existing assembly.
11216                 * Missing methodref from a non-existing assembly.
11217
11218         The first batch of work to address *some* of the issues from 76661.
11219         
11220         * object.c (mono_class_create_runtime_vtable): If we fail to
11221         initialize the class raise the exception here. 
11222
11223         * metadata.c (mono_class_get_overrides_full): If any methods fail
11224         to load return the failure to the caller.
11225
11226         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
11227         flagging assemblies that failed to load.   
11228
11229         Do not crash if we are unable to load the assembly.
11230
11231         (mono_assembly_close): Do nothing with REFERENCE_MISSING
11232         assemblies. 
11233
11234         * loader.c (mono_loader_set_error_type_load): Change the
11235         convention to always pass unallocated strings, so we make our own
11236         copies (I know our own code had duplicated strings before, but
11237         this keeps the normal conventions).
11238         (method_from_memberref): Call mono_loader_set_error_method_load
11239         for all possible failures of loading the class. 
11240         Remove assert, turn into a loader error.
11241
11242         (mono_loader_error_to_exception): Move this routine from mini
11243         (mini_loader_error_to_exception) there was no need to have that in
11244         mini. 
11245
11246         * class.c (mono_class_from_typeref): If we were not able to load
11247         the assembly with mono_assembly_load_reference, call the
11248         mono_loader_set_error_type_load to register the problem.
11249
11250         (mono_class_setup_fields): If we fail to load the type from
11251         mono_metadata_parse_type_full, call mono_class_set_failure and
11252         break from the loop.
11253
11254         If class->exception_type is set, we do not layout the fields as
11255         that might crash the runtime, and instead return (from breaking
11256         from the previous loop).
11257
11258         (mono_class_setup_vtable): This now returns a boolean indicating
11259         whether the table was properly setup.   The decision is driven by
11260         mono_class_get_overrides_full which might run into non-existing
11261         methods. 
11262         
11263         (mono_class_init): Returns TRUE on success or FALSE if there was a
11264         problem in loading the type (incorrect assemblies, missing
11265         assemblies, methods, etc).
11266
11267         When we call mono_class_setup_fields we also check for a potential
11268         error inside this call (either a class exception or a general
11269         loader exception).
11270
11271         (mono_class_create_from_typedef): If the parent fails to load
11272         (calling mono_class_get_full) return NULL.
11273         
11274         ** Important **
11275
11276         calls to mono_metadata_parse_type_full should be checked
11277         everywhere and set the mono_class_set_failure
11278         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
11279
11280         The current patch checks the places where my manually constructed
11281         tests show the errors are showing up, but we should do it
11282         everywhere. 
11283
11284         ** Important2 **
11285
11286         mono_class_init return values should be tested everywhere, like
11287         the previous case this is something that we should audit
11288         everywhere and not only on the cases exposed by the tests I
11289         created. 
11290
11291 2006-04-26  Miguel de Icaza  <miguel@novell.com>
11292
11293         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
11294         boolean parameter and instead pass the information on `options'
11295         parameter (FileOptions).
11296
11297         * icall.c: Register the new signature for MonoIO.Open.
11298
11299         * debug-helpers.c (dis_one): Trying to understand how coverity
11300         works.  Fix Run 5, item 78.
11301
11302 2006-04-26  Dick Porter  <dick@ximian.com>
11303
11304         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
11305         dereference.
11306
11307 2006-04-25  Martin Baulig  <martin@ximian.com>
11308
11309         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
11310
11311         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
11312         debugger_thread_created().
11313         (debugger_gc_push_all_stacks): Don't handle the main thread in any
11314         special way.
11315         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
11316         (mono_debugger_finalize_threads): New function; undo the effects
11317         of mono_debugger_init_threads().
11318         (mono_debugger_create_all_threads): Removed.
11319
11320 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
11321
11322         * image.c (mono_image_close): Tidy up trace messages.
11323
11324         * assembly.c (mono_assembly_close): Ditto.
11325
11326         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
11327         no longer references an already freed assembly. Fixes #78168.
11328
11329 2006-04-21  Dick Porter  <dick@ximian.com>
11330
11331         * threads.c (mono_thread_detach): Fix reference counting when
11332         detaching threads.
11333
11334 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
11335
11336         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
11337         #78155.
11338
11339 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
11340
11341         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
11342         (mono_type_to_stind): Ditto.
11343
11344         * marshal.c: Use the new helper functions to simplify code.
11345
11346         * image.c (mono_image_close): Add some code for help debug assembly unloading
11347         problems.
11348
11349         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
11350         image mempool.
11351
11352         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
11353         assembly was already loaded in another appdomain. Fixes #78083.
11354
11355 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
11356
11357         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
11358         referenced assemblies.
11359         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
11360
11361         * domain.c (mono_domain_free): Add a trace message.
11362
11363         * appdomain.c (add_assemblies_to_domain): Ditto.        
11364
11365         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
11366         field.  
11367
11368 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
11369
11370         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
11371
11372 2006-04-12  Martin Baulig  <martin@ximian.com>
11373
11374         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
11375         `USE_INCLUDED_LIBGC'.   
11376
11377 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
11378
11379         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
11380         the patch contains ../ and a small directory name later. Hopefully fixes
11381         #78035.
11382
11383 2006-04-10  Martin Baulig  <martin@ximian.com>
11384
11385         Clean up the debugger's thread-handling code.
11386
11387         The debugger's thread-handling code has been moved from
11388         ../mini/debug-debugger.c to threads.c.  We now iterate directly
11389         over the `threads' hash, keep track of exiting threads and also
11390         use proper locking.
11391
11392         We can now debug XSP and XSP based applications with the debugger.
11393
11394         * object-internals.h (MonoThread): Added `gpointer end_stack'.
11395
11396         * threads.h
11397         (MonoThreadCallbacks): Removed; this was only used by the debugger.
11398         (mono_install_thread_callbacks): Likewise.      
11399
11400         * threads.c (mono_thread_callbacks): Removed.
11401         (debugger_thread_created, debugger_thread_exited): New static functions.
11402         (start_wrapper): Call debugger_thread_created().
11403         (thread_cleanup): Call debugger_thread_exited().
11404         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
11405         (mono_debugger_init_threads): New public function.
11406         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
11407         iterate directly over the `threads' hash and also use proper locking.
11408
11409         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
11410
11411         * mono-debug-debugger.h
11412         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
11413
11414 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11415
11416         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
11417         argument type=array. Fixes #78057.
11418
11419 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
11420
11421         * culture-info-table.h : regenerated. Fixed bug #69652.
11422
11423 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
11424
11425         * loader.c metadata.c: Reapply a variant r59116.
11426         
11427         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
11428
11429         * class.c (mono_class_setup_interface_offsets): New internal function.
11430
11431         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
11432         interfaces too. Fixes #77398.
11433
11434         * reflection.c (encode_cattr_value): Add support for 
11435         parameter type=object, argument type=array.
11436         (load_cattr_value): Ditto. Fixes #77916.
11437
11438         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
11439         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
11440
11441         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
11442         a byval char array and CharSet is Ansi.
11443
11444         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
11445
11446 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
11447
11448         * metadata.c: Add some locking comments.
11449         
11450         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
11451         mempool.
11452         (mono_metadata_free_method_signature): Don't free the signature itself.
11453
11454         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
11455
11456         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
11457         reference the same MonoImage.
11458         (mono_assembly_load_from_full): Add an assert.
11459
11460 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
11461
11462         * image.c (mono_image_close): Don't put the image we are about to free into the
11463         loaded_images_guid_hash.
11464
11465         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
11466         to reduce code duplication.
11467
11468         * marshal.c: Register the native functions called by this module as icalls, to
11469         somewhat centralize the creation of MonoMethodSignature's.
11470
11471         * loader.c (mono_method_signature): Add a cache for method signatures.
11472
11473         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
11474         the parameter attributes of a method.
11475         (mono_metadata_parse_method_signature_full): Refactored the computation of
11476         parameter attributes into a separate function. Also avoid one allocation in
11477         most cases.
11478
11479         * assembly.c (mono_assembly_close): Ditto.
11480
11481         * image.c (mono_image_close): Log trace messages with INFO level.
11482
11483         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
11484
11485         * image.c reflection.c: Correct reference counting of image modules.
11486         
11487         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
11488         of this function from the image mempool.
11489         
11490         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
11491         to allow more cached types to be used.
11492
11493         * mono-debug.c (mono_debug_add_method): Appled patch from
11494         David S. Miller  <davem@sunset.davemloft.net>: Access 
11495         minfo->lexical_blocks[] entry elements using read32().
11496
11497 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
11498
11499         * loader.c (mono_free_method): No longer free the method header for non-dynamic
11500         methods as it is allocated from the mempool.
11501
11502         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
11503         image mempool.
11504
11505         * metadata-internals.h: Add comments describing the reference counting scheme
11506         used for MonoImage and MonoAssembly.
11507
11508         * image.c assembly.c reflection.c: Rework reference counting of images and 
11509         assemblies so they are freed when the runtime is shut down. Free some 
11510         additional memory structures when an image is unloaded.
11511         
11512 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
11513
11514         * class.c loader.c reflection.c: Allocate more data structures in
11515         the image mempool.
11516
11517 2006-03-31  Miguel de Icaza  <miguel@novell.com>
11518
11519         * icall.c
11520         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
11521         build on pre glib 2.4 systems.
11522
11523 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
11524
11525         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
11526
11527         * icall.c: Fix some warnings.
11528
11529 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
11530
11531         * culture-info-table.h : regenerated.
11532
11533 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
11534
11535         * threads.c, object-internals.h, verify.c: changed the culture caching
11536         code to use a normal MonoArray for storage so the GC can keep track of
11537         them easily. Fixed bits of the cache logic, too and simplified the
11538         code.
11539
11540 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
11541
11542         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
11543         thread for non-Boehm GCs.
11544
11545 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
11546
11547         * domain.c, object.c, domain-internals.h: reduce the amount of memory
11548         needed to keep track of the data for static fields.
11549
11550 2006-03-29  Raja R Harinath  <rharinath@novell.com>
11551
11552         Fix #75172
11553         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
11554         for interface classes.  Use 'num_methods' instead.
11555         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
11556         before using '->vtable_size' field.
11557
11558 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
11559
11560         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
11561         doesn't contain managed pointers, so use a normal hashtable.
11562
11563 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
11564
11565         * reflection.c, class-internals.h, domain.c: fixed handling of types
11566         used as values for objects in custom attributes (bug #77915):
11567
11568 2006-03-24  Martin Baulig  <martin@ximian.com>
11569
11570         * class.c (mono_class_setup_fields): Added support for generic
11571         instances; fixes #77580.
11572
11573 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11574
11575         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
11576
11577 2006-03-24  Dick Porter  <dick@ximian.com>
11578
11579         * file-io.c (get_file_attributes): More stat macro breakage.
11580         Fixes bug 77759.
11581
11582 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
11583
11584         * profiler.c: added the file=filename option in the default profiler
11585         to output the profile data to filename.
11586
11587 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11588
11589         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
11590         bug #77877.
11591
11592 2006-03-22  Martin Baulig  <martin@ximian.com>
11593
11594         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
11595         allocated `MonoClassField *' in `fb->handle'.
11596
11597 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11598
11599         * class.c, image.c, metadata-internals.h: implemented new mechanism to
11600         allocate interface ID to save memory and allow better ID reuse on
11601         appdomain unload. setup_generic_vtable () removal from Martin.
11602
11603 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11604
11605         * object.h, appdomain.c, domain.c, exception.c, icall.c,
11606         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
11607         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
11608         write barriers for reference stores with managed objects accessed with
11609         C structures in the runtime and in embedding programs.
11610
11611 2006-03-20  Raja R Harinath  <rharinath@novell.com>
11612
11613         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
11614         'interface_id' and 'max_interface_id' fields of MonoClasses
11615         representing open generic types.
11616
11617 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
11618
11619         * object.h, object.c, icall.c: added functions to deal with
11620         storing valuetypes that contain references in managed objects.
11621         * reflection.c, string-icalls.c, threads.c, marshal.c: small
11622         fixes and comments around uses of mono_array_addr ().
11623
11624 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
11625
11626         * object.h, icall.c, monitor.c: object.GetHashCode ()
11627         implementation that supports the moving garbage collector.
11628
11629 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
11630
11631         * icall.c, threads-types.h, threads.c: implemented finalizer for
11632         LocalDataStoreSlot.
11633
11634 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
11635
11636         * metadata.c (mono_type_size): Add a fixme.
11637         (mono_type_stack_size): Ditto.
11638
11639         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
11640         'type_forwarders' field.
11641
11642         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
11643         attribute from net 2.0.
11644
11645         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
11646         from class.c.
11647
11648         * class.c (mono_class_setup_fields): Fix a warning.
11649         
11650         * class.c (mono_class_from_name): Add support for assemblyref entries
11651         in the EXPORTEDTYPE table.
11652
11653         * reflection.c: Add support for handling type forwarders under net 2.0.
11654
11655         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
11656         
11657 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
11658
11659         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
11660         overwriting entries in ModuleBuild->types, also clean up the code
11661         a little. Fixes #77774.
11662
11663 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11664
11665         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
11666         load friend assembly info when present.
11667
11668 2006-03-14  Raja R Harinath  <rharinath@novell.com>
11669
11670         Fix crasher on gtest-158.cs.
11671         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
11672         the return value if the MonoClass we want is yet in an
11673         inconsistent state.
11674         * class.c (mono_class_create_from_typedef): Add an comment
11675         explaining an order dependency between mono_class_setup_parent and
11676         mono_class_setup_mono_type.
11677
11678 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
11679
11680         * class.c: documentation updates and events bug fix.
11681
11682 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
11683
11684         * class.c: some cleanup, locking fixes.
11685
11686 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11687
11688         * class.c: fix the generics code to setup nested
11689         type info to the instantiated type (bug #77770).
11690
11691 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11692
11693         * marshal.c: fixed a few type correctness issues.
11694
11695 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11696
11697         * loader.c: the Set/Get/Addrtess array methods should be public.
11698
11699 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11700
11701         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
11702         
11703         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
11704         info->wrapper.
11705
11706 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
11707
11708         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
11709
11710         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
11711
11712         * mempool.c (mono_mempool_alloc): Speed this up a bit.
11713         (mono_mempool_alloc0): Ditto.
11714
11715 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11716
11717         * socket-io.c:
11718         (create_object_from_sockaddr): it was allocating 4 extra bytes
11719         for the AF_UNIX data. Fixes bug #77747.
11720
11721 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
11722
11723         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
11724
11725 2006-03-09  Dick Porter  <dick@ximian.com>
11726
11727         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
11728         Fixes bug 76966 again.
11729
11730 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
11731
11732         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
11733         names from r57532
11734         * appdomain.c: Bumped corlib version to 48 (due to r57532)
11735
11736 2006-03-07  Martin Baulig  <martin@ximian.com>
11737
11738         * object.c
11739         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
11740
11741 2006-03-07  Martin Baulig  <martin@ximian.com>
11742
11743         * class.c
11744         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
11745         regression introduced in r56970; see gtest-252.cs.
11746
11747         * loader.c (mono_get_method_constrained): Correctly handle generic
11748         methods; see gtest-253.cs.
11749
11750 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
11751
11752         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
11753
11754 2006-03-04  Martin Baulig  <martin@ximian.com>
11755
11756         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
11757         compute the parent type at runtime, just like we're already doing
11758         it for interfaces.
11759
11760         * reflection.c
11761         (mono_reflection_bind_generic_parameters): Don't compute the
11762         parent type anymore.
11763
11764         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
11765
11766 2006-03-04  Martin Baulig  <martin@ximian.com>
11767
11768         * mono-debug-debugger.h
11769         (mono_debugger_create_notification_function): Allocate memory at
11770         runtime and return a pointer to it.
11771
11772 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
11773
11774         * assembly.c: Fix windows build.
11775         
11776         * assembly.c: Fix build.
11777
11778         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
11779
11780         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
11781         
11782 2006-03-03  Dick Porter  <dick@ximian.com>
11783
11784         * process.c
11785         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
11786         Check parameters before dereferencing them.  Fixes Aaron's part of
11787         bug 77393.
11788
11789 2006-03-03  Raja R Harinath  <rharinath@novell.com>
11790
11791         Fix performance regression.
11792         * loader.c (find_method_in_class): Add 'from_class' argument.
11793         Rename 'klass' argument to 'in_class'.  The signature is compared
11794         against the method in 'in_class', and the corresponding method is
11795         returned from 'from_class'.
11796         (find_method): Walk both 'in_class' and 'from_class' in parallel.
11797         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
11798         type definition and generic instantiation in parallel.
11799         (mono_get_method_constrained): Update to changes.
11800
11801 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11802
11803         * threads.c: make sure the domain is correct, too when doing
11804         mono_thread_attach ().
11805
11806 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
11807
11808         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
11809         windows. Fixes #77683.
11810
11811 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11812
11813         * object.h, *: introduced specific way to set elements of an array
11814         of references to be used as write barrier. Still need to audit the
11815         uses of mono_array_addr.
11816
11817 2006-03-01  Miguel de Icaza  <miguel@novell.com>
11818
11819         * object-internals.h: New field to cache the assmebly name, patch
11820         from Tambet Ingo (tambet@ximian.com)
11821
11822 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11823
11824         * decimal.h, class-internals.h, metadata-internals.h,
11825         file-io.h: mark a few function declarations as internal, to
11826         reduce the number of PLT entries.
11827
11828 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11829
11830         * file-io.c: fix typo in warning message.
11831
11832 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
11833
11834         * loader.c: on unix, lookup the "*A" version of a function
11835         if charset is auto as a second option before failing.
11836
11837 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11838
11839         * class.h (mono_class_inflate_generic_method): Revert to two
11840         argument version.
11841         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
11842         (mono_class_inflate_generic_method_full): Add.
11843         * class.c (mono_class_inflate_generic_method_full): Rename from
11844         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
11845         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
11846         * loader.c, reflection.c: Update to changes.
11847
11848 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11849
11850         * icall.c: const fixes and small improvements.
11851
11852 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11853
11854         * threadpool.c: for asynchronous connect(), enable the same workaround
11855         for BSD 6 as for the Mac. Fixes bug #77637.
11856
11857 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11858
11859         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
11860         formatted classes. Fixes #77524.
11861
11862 2006-02-24  Raja R Harinath  <rharinath@novell.com>
11863
11864         * class.c (inflate_generic_type): Add a couple more
11865         micro-optimizations.
11866         (inflate_generic_context): Don't use the 'gmethod' from
11867         'inflate_with'.
11868         (mono_class_inflate_generic_method): If the method has generic
11869         parameters, but the passed-in context doesn't have a 'gmethod',
11870         create one.  Use the possibly simplified generic instantiation
11871         from the declaring class instead of the one passed in.
11872
11873 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11874
11875         Make generic method signature and method header handling lazy.
11876         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
11877         (inflate_generic_header): Likewise.
11878         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
11879         parameter to avoid inflating types.
11880         (mono_get_inflated_method): Empty out.
11881         * class.h (mono_class_inflate_generic_method): Update to changes.
11882         * loader.c (mono_get_method_from_token): Don't parse signature for
11883         generic methods, nor methods of generic classes.
11884         (mono_method_signature): Rename from 'mono_method_signature'.
11885         Inflate signature on demand.
11886         (mono_method_get_header): Inflate method header on demand.
11887         * reflection.c: Update to changes.
11888
11889 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11890
11891         * metadata.c (mono_metadata_inflate_generic_inst): If the
11892         instantiation is closed, don't bother expanding it in the new
11893         context.
11894         * class.c (inflate_generic_class): If the generic instantiation
11895         doesn't change after inflation, return the argument itself.
11896         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
11897         Add bounds checks.
11898         (inflate_generic_context): If neither the generic class nor the
11899         generic method instantiations change, return the original context.
11900         * reflection.c (mono_method_get_object): Do
11901         'mono_get_inflated_method' before accessing the ->klass field.
11902         (inflate_mono_method): Don't create a MonoGenericMethod unless
11903         necessary.
11904         (inflate_method): Don't pass a constructed type as the declaring
11905         type of a methodbuilder.
11906
11907 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
11908
11909         * object.c: fix memory overwrite.
11910
11911 2006-02-22  Dick Porter  <dick@ximian.com>
11912
11913         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
11914         it doesn't work any more.
11915         (mono_threads_request_thread_dump): Fix unused variable warnings.
11916
11917 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11918
11919         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
11920         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
11921         the public header file.
11922
11923 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
11924
11925         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
11926
11927 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11928
11929         * class-internals.h, object.c: reduce the size of MonoVTable
11930         and store the interface_offsets array at negative offsets.
11931
11932 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
11933
11934         * metadata.c: tweak table descriptors data structures to reduce
11935         size and runtime relocations.
11936
11937 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11938
11939         * marshal.c: fix some types and opcodes to be type-safe
11940         in marshaling wrappers.
11941
11942 2006-02-21  Ankit Jain  <jankit@novell.com>
11943
11944         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
11945
11946 2006-02-21  Raja R Harinath  <rharinath@novell.com>
11947
11948         * metadata.c (get_constraints): Relax debugging checks for monodis.
11949
11950 2006-02-21  Ankit Jain  <jankit@novell.com>
11951
11952         * metadata.c (mono_metadata_load_generic_params): Move the code
11953         checking for ambiguous generic params from here to mono/dis/get.c
11954         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
11955
11956 2006-02-21  Raja R Harinath  <harinath@gmail.com>
11957
11958         Fix assertion triggered when compiling nemerle.
11959         * class.c (mono_get_shared_generic_inst): Rename from
11960         get_shared_inst and make non-static.
11961         * loader.c (mono_get_shared_generic_method): New.  Used to create
11962         the MonoGenericContext-equivalent of a MonoGenericContainer.
11963         (mono_get_method_from_token): Initialize the 'context' field of
11964         the created MonoGenericContainer.
11965         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
11966         * metadata.c (get_constraints): Add sanity check.
11967         * class-internals.h: Add new internal methods.
11968
11969         * reflection.c (verify_safe_for_managed_space): New sanity check.
11970         Currently checks that owner-less generic parameters aren't allowed
11971         in managed space.
11972         (mono_type_get_object): Use it.
11973         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
11974         that are now in mono_type_get_object.
11975         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
11976
11977 2006-02-19  Raja R Harinath  <harinath@gmail.com>
11978
11979         * metadata.c (mono_type_create_from_typespec): Rename from
11980         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
11981         argument and caching of types in the generic container.
11982         (unwrap_arrays, find_generic_param): Remove.
11983         * metadata-internals.h: Update.
11984         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
11985
11986 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
11987
11988         * class.c (mono_class_get_exception_for_failure): Fix a warning.
11989
11990         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
11991         return values. Fixes #77581.
11992
11993         * class.c (mono_fnptr_class_get): Switch name and name_space.
11994
11995         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
11996         classes and add support for [In, Out] attributes.
11997         (mono_marshal_free_asany): Ditto. Fixes #77524.
11998
11999 2006-02-18  Raja R Harinath  <harinath@gmail.com>
12000
12001         * class.c (mono_class_from_generic_parameter): Make more robust to
12002         incomplete MonoGenericContainers from monodis.
12003
12004 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
12005
12006         * class-internals.h: added some more exception types.
12007         * class.c, metadata.c: added a few checks to handle missing
12008         types.
12009
12010 2006-02-17  Raja R Harinath  <rharinath@novell.com>
12011
12012         Use owner-less generic-params some more.
12013         * class.c (my_mono_class_from_generic_parameter): Remove.
12014         (mono_class_from_generic_parameter): Handle null image,
12015         param->name and param->owner.
12016         (mono_class_from_mono_type): Update.
12017         (mono_class_create_from_typespec): Remove 'container' parameter.
12018         If that parameter is non-null, the result is always inflated by
12019         'mono_class_get_full' anyway.
12020         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
12021         parameter.
12022         (mono_class_get_full): Update.
12023
12024         * class.c (inflate_generic_type) [GENERICINST]: If the generic
12025         instance is not open, don't bother inflating.
12026         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
12027         parse metadata for inflated classes.
12028         (_mono_class_get): Change GenericContext* parameter to
12029         GenericContainer*.
12030         (mono_class_create_from_typespec): Likewise.  Simplify, and
12031         implement trivially.  All the cases are handled in
12032         mono_class_from_mono_type.  Don't inflate returned class.
12033         (mono_class_get_full): Delegate GENERICINST optimization to
12034         inflate_generic_type.
12035         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
12036
12037 2006-02-16  Dick Porter  <dick@ximian.com>
12038
12039         * socket-io.c (create_object_from_sockaddr): Fix typo.
12040         (create_sockaddr_from_object): Check array lengths before
12041         potentially accessing items off the end.
12042         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
12043         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
12044         (ves_icall_System_Net_Sockets_Socket_Send_internal)
12045         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
12046         length checks to avoid wraparound overflows.
12047         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
12048         contents of the array of sockets
12049         (hostent_to_IPHostEntry2)
12050         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
12051         Check return value of inet_ntop ().
12052         (addrinfo_to_IPHostEntry): Fix typo
12053
12054 2006-02-16  Raja R Harinath  <rharinath@novell.com>
12055
12056         Type metadata parsing doesn't use generic-instantiation information.
12057         * metadata.c (mono_metadata_parse_array_full): Change
12058         MonoGenericContext* parameter to MonoGenericContainer*.
12059         (mono_metadata_parse_type_full): Likewise.
12060         (mono_type_create_from_typespec_full): Likewise.
12061         (mono_metadata_parse_mh_full): Likewise.
12062         (mono_metadata_parse_generic_inst): Likewise.
12063         (do_mono_metadata_parse_generic_class): Likewise.
12064         (do_mono_metadata_parse_type): Likewise.
12065         * metadata-internals.h: Update to changes.
12066         * class.c (mono_class_find_enum_basetype): Likewise.
12067         (mono_class_setup_fields): Likewise.
12068         (mono_class_create_from_typespec): Likewise.
12069         * loader.c (method_from_methodspec): Likewise.
12070         (mono_get_method_from_token): Likewise.
12071         (mono_method_get_header): Likewise.
12072
12073 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
12074
12075         * marshal.c: handle additional GENERICINST case (patch from
12076         Thong Nguyen <tum@veridicus.com>).
12077         Fix a few cases where LDIND_I/STIND_I was used for references.
12078
12079 2006-02-16  Raja R Harinath  <rharinath@novell.com>
12080
12081         * reflection.c (mono_reflection_get_token): Remove unused variable.
12082
12083 2006-02-16  Martin Baulig  <martin@ximian.com>
12084
12085         * reflection.c (mono_reflection_get_token): Add support for fields
12086         in instantiated generic types.
12087
12088         * icall.c
12089         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
12090
12091 2006-02-15  Martin Baulig  <martin@ximian.com>
12092
12093         * icall.c
12094         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
12095         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
12096         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
12097         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
12098
12099 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
12100
12101         * class.c, metadata.c, metadata.h, object.c, icall.c,
12102         marshal.c: changed mono_type_get_underlying_type () to do
12103         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
12104         Fixed handling of instantiated generic valuetypes (bug #75479).
12105
12106 2006-02-15  Raja R Harinath  <rharinath@novell.com>
12107
12108         * metadata.c (mono_metadata_decode_signed_value): Simplify.
12109         Delegate to mono_metadata_decode_value, and work on the returned value.
12110
12111         * icall.c (ves_icall_MonoType_GetGenericArguments):
12112         Add consistency check here too.
12113         
12114 2006-02-15  Ankit Jain  <jankit@novell.com>
12115
12116         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
12117         char/short etc.
12118
12119 2006-02-15  Ankit Jain  <jankit@novell.com>
12120
12121         * metadata.c (mono_metadata_decode_signed_value): New function to decode
12122         signed values, used only for representing lower bounds of arrays.
12123         (mono_metadata_parse_array_full): Use new
12124         mono_metadata_decode_signed_value to decode lower bounds.
12125
12126 2006-02-14  Martin Baulig  <martin@ximian.com>
12127
12128         * reflection.c
12129         (mono_reflection_get_token): Support "MonoGenericMethod" and
12130         "MonoGenericCMethod" and allow generic instances / methods.
12131
12132 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
12133
12134         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
12135         to obtain the terminal size using an ioctl.
12136
12137         * object.c (mono_nullable_init): Revert this as nullable reference
12138         types are not valid.
12139         (mono_nullable_box): Ditto.
12140
12141 2006-02-09  Dick Porter  <dick@ximian.com>
12142
12143         * threads.c (mono_thread_detach): Drop a reference to the thread
12144         we're detaching.
12145
12146 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
12147
12148         * object.c (mono_nullable_init): Handle nullable reference types.
12149         (mono_nullable_box): Ditto. Fixes #77446.
12150
12151 2006-02-07  Martin Baulig  <martin@ximian.com>
12152
12153         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
12154
12155 2006-02-07  Ankit Jain  <jankit@novell.com>
12156
12157         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
12158         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
12159         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
12160         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
12161         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
12162         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
12163
12164 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
12165
12166         * class.c (mono_class_create_generic): Set type_token as well.
12167
12168         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
12169         compatible with MS.
12170
12171 2006-02-02  Martin Baulig  <martin@ximian.com>
12172
12173         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
12174         has never been used so far.
12175
12176 2006-02-02  Martin Baulig  <martin@ximian.com>
12177
12178         * mono-debug-debugger.h: Changed comment at the top of this file;
12179         the header is not installed, but it's safe to #include it from
12180         within the JIT.
12181
12182         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
12183         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
12184
12185 2006-02-02  Martin Baulig  <martin@ximian.com>
12186
12187         * mono-debug.h
12188         (MonoSymbolTable): Removed the `metadata_info' field.
12189
12190         * mono-debug.c
12191         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
12192
12193         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
12194         (mono_debugger_add_builtin_types): Removed.
12195         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
12196         (mono_debugger_create_notification_function): We now operate on a
12197         pre-allocated area; take a `gpointer' and return `void'.
12198
12199         * mono-debug-debugger.c
12200         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
12201         (mono_debugger_add_builtin_types): Removed.
12202
12203 2006-02-02  Martin Baulig  <martin@ximian.com>
12204
12205         * threads.c (mono_debugger_create_all_threads): New public method.
12206
12207 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
12208
12209         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
12210         breaks on several platforms.
12211
12212 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
12213
12214         * assembly.c: the VS.NET build doesn't supply default values for
12215         MONO_ASSEMBLIES and MONO_CFG_DIR.
12216
12217 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
12218
12219         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
12220         helper function.
12221
12222         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
12223
12224         * loader.c (method_from_memberref): Fix a warning.
12225
12226         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
12227
12228         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
12229         with explicit layout. Fixes #77433.
12230
12231 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
12232
12233         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
12234         max_interface_id is initialized before using it. Fixes #77398.
12235         (ves_icall_Type_GetInterfaces): Ditto.
12236
12237 2006-01-30  Raja R Harinath  <rharinath@novell.com>
12238
12239         * metadata.c (mono_metadata_parse_method_signature_full): Don't
12240         allocate memory for parameter attributes when parsing memberref
12241         signatures.
12242         * loader.c (mono_loader_set_error_method_load): Don't warn.
12243         (method_from_memberref): Ensure MissingMethodException gets thrown
12244         if method is not found.  Make warning more informative.
12245
12246 2006-01-29  Raja R Harinath  <harinath@gmail.com>
12247
12248         Fix #77397
12249         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
12250         return true if is byref.
12251         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
12252         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
12253         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
12254
12255 2006-01-27  Raja R Harinath  <rharinath@novell.com>
12256
12257         Fix tests/find-method.2.il
12258         * loader.c (find_method, find_method_in_class): Remove is_inflated
12259         argument.  Revert 2006-01-18 change.
12260         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
12261         is generic, search for method in its generic definition.
12262         * class.c (mono_class_setup_vtable_general): Print generic
12263         arguments of generic types in debugging printf.
12264
12265 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
12266
12267         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
12268
12269         * threads.c (mono_threads_request_thread_dump): New helper function.
12270
12271 2006-01-25  Raja R Harinath  <rharinath@novell.com>
12272
12273         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
12274
12275 2006-01-25  Ankit Jain  <jankit@novell.com>
12276
12277         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
12278         move definition to ..
12279         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
12280         
12281 2006-01-25  Ankit Jain  <jankit@novell.com>
12282             Raja R Harinath  <rharinath@novell.com>
12283
12284         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
12285         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
12286         as necessary.
12287
12288 2006-01-25  Martin Baulig  <martin@ximian.com>
12289
12290         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
12291         `MonoDebuggerThread' into debug-debugger.c.
12292
12293 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
12294
12295         * profiler.c: fix printing of data.
12296
12297 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
12298
12299         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
12300           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
12301
12302 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
12303
12304         * object.c: fix deadlock related to string interning.
12305
12306 2006-01-23  Martin Baulig  <martin@ximian.com>
12307
12308         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
12309
12310         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
12311
12312 2006-01-23  Martin Baulig  <martin@ximian.com>
12313
12314         * mono-debug.h: Moved the prototypes of some functions which are
12315         used by the JIT here from mono-debug-debugger.h.
12316
12317 2006-01-21  Martin Baulig  <martin@ximian.com>
12318
12319         * Makefile.am: Don't install mono-debug-debugger.h.
12320
12321 2006-01-21  Martin Baulig  <martin@ximian.com>
12322
12323         * mono-debug-debugger.h: Enforce the private status of this header
12324         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
12325         Moved some stuff from mono-debugger-jit-wrapper.h here.
12326
12327 2006-01-20  Raja R Harinath  <rharinath@novell.com>
12328
12329         * class.c (mono_class_from_typeref): Add a sanity test to help
12330         catch lack of assembly load/search hooks.
12331
12332 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
12333
12334         * marshal.c (emit_struct_conv): Relax the fields with same offset
12335         check even more. Fixes #77230.
12336
12337 2006-01-18  Martin Baulig  <martin@ximian.com>
12338
12339         * loader.c (find_method_in_class): Added `gboolean is_inflated'
12340         argument; if false, we compare the uninstantiated signatures.
12341         (method_from_memberref): Compare the uninstantiated signatures;
12342         fixes #76417.
12343
12344 2006-01-18  Robert Jordan  <robertj@gmx.net>
12345
12346         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
12347         Clear the weak link. Fixes bug #77170.
12348
12349         * gc.c (mono_gchandle_free):
12350         Reflect *-gc.c changes (tiny optimization).
12351
12352 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
12353
12354         * metadata.c (mono_metadata_signature_dup): Applied patch from
12355         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
12356         Fixes #77288.
12357
12358 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
12359
12360         * marshal.c (emit_struct_conv): Allow fields with the same offset when
12361         marshalling from native to managed code. Fixes #77230.
12362
12363 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12364
12365         * threadpool.c: fix problem (Mac only) when more than one asynchronous
12366         connect. Fixes bug #77020.
12367
12368 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
12369
12370         * class.c: fixed id assignement for nested interfaces (bug #77275).
12371         Added also better info for --print-vtable debugging.
12372
12373 2006-01-12  Martin Baulig  <martin@ximian.com>
12374
12375         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
12376         interfaces on-the-fly; fixes #76625.
12377
12378         * class-internals.h
12379         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
12380         don't need that anymore.
12381
12382 2006-01-12  Miguel de Icaza  <miguel@novell.com>
12383
12384         * socket-io.c
12385         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
12386         To avoid initing the nested_classes when not needed I turned the
12387         PeerCredData as a toplevel internal class, as it has to be shared
12388         anyways. 
12389
12390         Fixes the CASA issue.
12391
12392 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
12393
12394         * domain.c: Accessors for MonoJitInfo
12395
12396         * profiler-private.h: Add jitinfo to the end jit hook
12397
12398         * profiler.[ch]: Define new hooks, called after jitting which give
12399         the MonoJitInfo that was compiled
12400
12401 2006-01-10  Martin Baulig  <martin@ximian.com>
12402
12403         * class.c (mono_class_setup_events): Add support for generic
12404         classes; fixes #76440.
12405
12406 2006-01-06  Raja R Harinath  <rharinath@novell.com>
12407
12408         Fix #77160.
12409         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
12410         on passed-in method.
12411
12412 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12413
12414         * object.c (mono_runtime_invoke_array): Add Nullable support.
12415
12416         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
12417
12418 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
12419
12420         * file-io.c: Don't consider sockets as directory and avoid an endless
12421         loop. Fix bug #76966.
12422
12423 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12424
12425         * object.c (mono_nullable_init): New helper function.
12426         (mono_nullable_box): Ditto.
12427
12428         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
12429
12430         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
12431
12432         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
12433         
12434 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
12435
12436         * class.c (mono_class_is_assignable_from): Make T assignable to 
12437         Nullable<T>.
12438
12439 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
12440
12441         * appdomain.c: Bump corlib version to 46.
12442         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
12443         serialization purpose) and changed ves_icall_System_Reflection_
12444         Assembly_get_code_base signature to accept a boolean (to escape, or 
12445         not, the assembly code base).
12446
12447 2005-12-23  Dick Porter  <dick@ximian.com>
12448
12449         * icall.c: 
12450         * threads-types.h: 
12451         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
12452         CreateEvent icall now returns "created" boolean parameter.
12453
12454 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
12455
12456         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
12457         #76967.
12458
12459         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
12460         when attr_klass is an interface. Fixes #77045.
12461
12462 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
12463
12464         * marshal.c (emit_struct_conv): Fix previous patch.
12465         
12466         * marshal.c (emit_struct_conv): Add a check for fields with the same
12467         offset.
12468
12469 2005-12-20  Raja R Harinath  <rharinath@novell.com>
12470
12471         Fix regression in Mono.C5.
12472         * class.c (mono_class_create_generic): If 'klass' is an interface
12473         set up the interface offsets.
12474         (mono_class_is_assignable_from): Don't throw away generic arguments.
12475
12476 2005-12-19  Raja R Harinath  <rharinath@novell.com>
12477
12478         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
12479         type parameters.
12480
12481 2005-12-15  Raja R Harinath  <rharinath@novell.com>
12482
12483         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
12484         dead store.
12485         (do_mono_metadata_parse_generic_class): Don't pass the current
12486         generic context when parsing the type being instantiated: it
12487         cannot use it, anyway.
12488
12489         * loader.c (method_from_memberref): Don't inflate a signature if
12490         it doesn't contain any type parameters.
12491
12492 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
12493
12494         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
12495
12496 2005-12-14  Martin Baulig  <martin@ximian.com>
12497
12498         * class.c
12499         (mono_type_get_name_recurse): Don't return null for type
12500         parameters and open generic classes.
12501         (mono_class_setup_methods): Don't exclude generic instances.
12502         (mono_get_unique_iid): Use different IDs for different
12503         instantiations of the same generic type.
12504         (mono_class_setup_vtable): Only use setup_generic_vtable() for
12505         open generic instances; create a normal vtable for closed generic
12506         instances.
12507         (mono_class_setup_vtable_general): We're now also called for
12508         closed generic instances.
12509
12510         * reflection.c
12511         (mono_reflection_bind_generic_parameters): Correctly use
12512         mono_metadata_lookup_generic_inst() everywhere.
12513
12514 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
12515
12516         * object.c (mono_class_create_runtime_vtable): Call 
12517         mono_class_setup_vtable ().
12518
12519         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
12520         function.
12521         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
12522         #76959.
12523
12524         * loader.c (mono_loader_set_error_type_load): Print the type load
12525         warnings to the console so they are more visible to the user.
12526         (mono_loader_set_error_method_load): Ditto.
12527
12528         * reflection.c (ensure_runtime_vtable): Revert the last change as it
12529         is still broken.
12530         
12531         * reflection.c (ensure_runtime_vtable): Fix build.
12532
12533         * reflection.c (ensure_runtime_vtable): Disable an optimization which
12534         doesn't work in all cases.
12535
12536 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
12537
12538         * object.c (mono_array_new_full): Treat a single dimensional array
12539         with 0 lower bounds as an szarray. Fixes #76973.
12540
12541         * reflection.c (custom_attr_visible): Really fix this.
12542
12543 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
12544
12545         * reflection.c (custom_attr_visible): Allow nested public attributes
12546         as well.
12547
12548         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
12549         interface check.
12550
12551 2005-12-12  Raja R Harinath  <harinath@gmail.com>
12552
12553         * class.c (set_generic_param_owner): Delete.
12554         (mono_class_create_from_typedef): Don't set ->owner field of
12555         generic parameters to "param containers" of enclosing classes.
12556         * reflection.c (mono_reflection_initialize_generic_parameter):
12557         Likewise.
12558
12559 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
12560
12561         * reflection.c (custom_attr_visible): Fix build.
12562
12563 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
12564
12565         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
12566         private attributes.
12567         
12568         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
12569         handling of null parameter defaults.
12570
12571 2005-12-09  Raja R Harinath  <rharinath@novell.com>
12572
12573         * class.c (mono_class_from_generic_parameter): Don't set
12574         klass->generic_container.
12575         (my_mono_class_from_generic_parameter): Likewise.
12576
12577 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
12578
12579         * reflection.c (load_public_key): Fix a warning.
12580         (method_encode_code): Fix unaligned accesses.
12581
12582 2005-12-07  Martin Baulig  <martin@ximian.com>
12583
12584         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
12585
12586         * reflection.c
12587         (write_generic_param_entry): Encode our custom attrs.
12588
12589         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
12590
12591 2005-12-07  Martin Baulig  <martin@ximian.com>
12592
12593         * reflection.c (encode_new_constraint): Removed; we don't use the
12594         `NewConstraintAttribute' anymore.
12595
12596 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
12597
12598         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
12599         not fire a TypeResolve event when Assembly.GetType () is called.
12600
12601 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
12602
12603         Beginning of support for nullable types in the runtime. Parts of
12604         this patch are from Martin.
12605
12606         * appdomain.c (MONO_CORLIB_VERSION): Bump
12607
12608         * domain.c (mono_init_internal): get the nullable type
12609
12610         * class.c (mono_class_is_nullable): New method
12611         (mono_class_get_nullable_param): New mehod
12612         (mono_class_create_generic): In types T? set cast_class to T
12613
12614         * class-internals.h (MonoDefaults): new nullable default class
12615         (mono_class_get_nullable_param, mono_class_get_nullable_param):
12616         new methods.
12617
12618 2005-12-05  Raja R Harinath  <rharinath@novell.com>
12619
12620         * metadata.c (select_container): New.  Refactor code to select the
12621         appropriate GenericContainer given the type of generic parameter
12622         we are looking for.
12623         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
12624         not a MonoGenericContext.  Use select_container.  Update parameters.
12625         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
12626         and MONO_TYPE_MVAR.
12627         (unwrap_arrays): Remove duplicate tests.
12628         (find_generic_param): Rename from 'has_same_context'.  Now walks a
12629         generic instantiated class to find any arguments that are generic
12630         parameters.
12631         (mono_type_create_from_typespec_full): Use find_generic_param to
12632         avoid evicting some generic instantiations from the typespec
12633         cache.
12634
12635 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
12636
12637         * reflection.c: fixed writing of doubles on ARM FPA.
12638
12639 2005-12-02  Robert Jordan  <robertj@gmx.net>
12640
12641         * icall.c: Fixed EventInfo.ReflectedType (#76829).
12642
12643 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12644
12645         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
12646         least on SUSE 10 they are not the same (on debian, they are just the
12647         same thing).
12648
12649 2005-12-01  Raja R Harinath  <rharinath@novell.com>
12650
12651         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
12652         DeclaringType for VARs and MVARs.
12653         * class.c (set_generic_param_owner): Fix initialization of owner
12654         fields.
12655
12656 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
12657
12658         * icall.c: fixed Enum.ToObject() to correctly convert the values.
12659
12660 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12661
12662         * threadpool.c: workaround for a bug that shows up on the Mac:
12663         select()+connect() on a blocking socket is not like it should
12664         be, so we proceed to connect() in that case, wasting the I/O
12665         threadpool thread until connect succeedes. Fixes bug #75436.
12666
12667 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12668
12669         * threadpool.c: fix typo when setting file descriptor states.
12670
12671 2005-11-28  Raja R Harinath  <rharinath@novell.com>
12672
12673         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
12674         * metadata.c (mono_metadata_parse_method_signature_full): Don't
12675         create a temporary signature container.
12676         (mono_metadata_parse_generic_param): Update to changes.
12677         (mono_type_create_from_typespec_full): Update to changes.
12678         * loader.c (method_from_memberref): Don't use a
12679         MonoGenericContainer while parsing a memberref signature.
12680         (method_from_methodspec): Remove dead-store of the 'container'
12681         variable.  It's overwritten before use.
12682
12683         * metadata.c (mono_type_create_from_typespec_full): Make debugging
12684         checks tighter.
12685         (mono_metadata_parse_generic_param): Likewise.
12686         * loader.c (find_method_in_class): Does not need a
12687         MonoGenericContainer.  Use 'mono_method_signature' rather than
12688         'mono_method_signature_full'.
12689         (find_method, mono_get_method_constrained, method_from_memberref):
12690         Update to changes.
12691
12692         * metadata.c (mono_type_create_from_typespec_full): Ensure that
12693         owner-less generic-parameters are never evicted from the typespec
12694         cache.
12695
12696         * loader.c (method_from_memberref): Don't use the current context
12697         when parsing signatures.
12698         (method_from_methodspec, mono_get_method_from_token): Update to changes.
12699
12700         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
12701         side-effects in g_assert.
12702         * loader.c (mono_get_method_from_token): Resolve klass earlier so
12703         that we don't potentially lose information.
12704
12705 2005-11-26  Dick Porter  <dick@ximian.com>
12706
12707         * icall.c:
12708         * threads.c: icalls to implement basic (ie, not named)
12709         System.Threading.Semaphore.
12710
12711 2005-11-24  Dick Porter  <dick@ximian.com>
12712
12713         * process.c
12714         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
12715         Use GetProcessId() if it's available.
12716
12717 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
12718
12719         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
12720
12721 2005-11-23  Raja R Harinath  <rharinath@novell.com>
12722             Ankit Jain  <jankit@novell.com>
12723
12724         * loader.c (mono_get_method_from_token): Initialize 'method' field
12725         of all generic parameters before parsing the signature.  Remove
12726         code that "fixed"-up MVAR references.
12727
12728 2005-11-23  Ankit Jain  <jankit@novell.com>
12729
12730         * metadata.c (mono_metadata_has_generic_params):
12731         (mono_metadata_load_generic_param_constraints):
12732         (mono_metadata_load_generic_params): Move duplicate code ...
12733         (mono_metadata_get_generic_param_row): ... here. Returns the
12734         first row-id in GenericParam table for a given owner (token).
12735         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
12736         prototype.
12737
12738 2005-11-23  Raja R Harinath  <rharinath@novell.com>
12739             Ankit Jain  <jankit@novell.com>
12740
12741         * metadata.c (mono_metadata_class_equal): Pass signature_only when
12742         comparing VARs too.
12743         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
12744         type->data.generic_param only if the type is an MVAR.
12745         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
12746         leak owner-less VARs and MVARs into managed space.
12747
12748 2005-11-21  Martin Baulig  <martin@ximian.com>
12749
12750         * class-internals.h
12751         (MonoMethod): Moved the `generic_container' here from
12752         `MonoMethodNormal' since we now also need it for
12753         `MonoMethodPInvoke';
12754         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
12755         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
12756         an union containing both `MonoMethodNormal' and
12757         `MonoMethodPInvoke'.
12758
12759         * loader.c
12760         (mono_get_method_from_token): Allow implementing generic methods
12761         as interncalls.
12762
12763         * threads.c
12764         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
12765         icall.
12766
12767 2005-11-17  Dick Porter  <dick@ximian.com>
12768
12769         * icall.c: 
12770         * process.h: 
12771         * process.c: Split the Process Start_internal icall into
12772         ShellExecuteEx_internal and CreateProcess_internal, which are
12773         called depending on whether UseShellExecute is true.  Fixes bug
12774         76670.
12775
12776         * appdomain.c (MONO_CORLIB_VERSION): Incremented
12777
12778 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
12779
12780         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
12781         'msize' parameters, use the information in 'mspec' instead.
12782         (emit_object_to_ptr_conv): Ditto.
12783
12784         * marshal.c (emit_struct_conv): Handle explicit layout structs with
12785         fields out of order. Fixes #76733.
12786
12787 2005-11-17  Ankit Jain  <jankit@novell.com>
12788
12789         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
12790
12791 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
12792
12793         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
12794           bug #76575.
12795
12796 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
12797
12798         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
12799         for types with non-auto layout. Fixes #76717.
12800
12801 2005-11-16  Ankit Jain  <jankit@novell.com>
12802
12803         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
12804         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
12805         if generic_context is null.
12806           (mono_metadata_generic_param_equal): param->owner can be null.
12807           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
12808         null.
12809
12810 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
12811
12812         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
12813         the correct value.
12814
12815 2005-11-15  Martin Baulig  <martin@ximian.com>
12816
12817         * object.c (set_value): Use mono_class_from_mono_type() instead of
12818         the hack for generic instances; fixes #76136.
12819
12820 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
12821
12822         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
12823         fields.
12824
12825         * image.c (load_metadata_ptrs): Initialize the new fields.
12826
12827         * reflection.c (create_dynamic_mono_image): Ditto.
12828
12829         * reflection.c (build_compressed_metadata): Use the new fields.
12830
12831         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
12832         icall.
12833
12834         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
12835         icall.
12836         
12837 2005-11-15  Ankit Jain  <jankit@novell.com>
12838             Raja R Harinath  <harinath@gmail.com>
12839
12840         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
12841         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
12842         new per-generic_container cache if the cached MonoType's context matches
12843         the current context.
12844           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
12845         to the expected context.
12846           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
12847
12848 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12849
12850         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
12851         we changed the signature of an icall.
12852         * icall.c: Modify to mono_double_ParseImpl return true/false 
12853         depending on the success, instead of throwing the exception. This will
12854         help us in Double.TryParse methods.
12855         
12856 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
12857
12858         * marshal.c (emit_marshal_object): Throw an exception when
12859         marshalling 'object' instead of crashing. Fixes #76696.
12860
12861 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12862
12863         * class-internals.h: Add prototype for mono_type_get_full_name ().
12864
12865 2005-11-11  Dick Porter  <dick@ximian.com>
12866
12867         * threads.c (mono_thread_manage): Make sure the main thread has
12868         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
12869
12870 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12871
12872         * loader.c (mono_loader_set_error_type_load): Log a warning to the
12873         console about the missing type.
12874         (mono_loader_set_error_method_load): Ditto.
12875
12876 2005-11-09  Miguel de Icaza  <miguel@novell.com>
12877
12878         * mono-config.c (mono_get_config_dir): Set the system defaults if
12879         none is specified.
12880
12881         * assembly.c (mono_set_dirs): New API entry point to set the
12882         assembly and the config directory in one call
12883
12884 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
12885
12886         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
12887         the ftnptr was created from a delegate in a domain other than the
12888         current domain. Fixes #75377.
12889
12890         * exception.h exception.c: Add mono_get_exception_not_supported ().
12891
12892 2005-11-08  Martin Baulig  <martin@ximian.com>
12893
12894         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
12895
12896 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
12897
12898         * security-manager.h: Added definitions to deal with strongname key 
12899         pairs bigger (and smaller) than 1024 bits.
12900         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
12901         adjust wrt the public key length being used.
12902
12903 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12904
12905         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
12906           Windows build (r51396-51397).
12907
12908 2005-11-03  Martin Baulig  <martin@ximian.com>
12909
12910         * class.c (mono_class_setup_vtable_general): Also add generic
12911         methods to the vtable; fixes #76581.
12912
12913 2005-11-01  Miguel de Icaza  <miguel@novell.com>
12914
12915         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
12916         sure that we lookup GetString method from the System.Text.Encoding
12917         class, not the derived class or we get an empty method.
12918
12919         Fixed class #76612.
12920
12921 2005-10-25  Miguel de Icaza  <miguel@novell.com>
12922
12923         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
12924         if it has been previously set (embedders). 
12925
12926         Make mono_set_rootdir available also on Unix.
12927
12928 005-10-24  Robert Jordan  <robertj@gmx.net>
12929
12930         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
12931
12932 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12933
12934         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
12935         only calls which are made to native code use this flag.
12936
12937         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
12938
12939 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12940
12941         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
12942         Add support for FieldBuilders.
12943
12944 2005-10-29  Martin Baulig  <martin@ximian.com>
12945
12946         * mono-debug.c
12947         (mono_debug_using_mono_debugger): New public method; returns
12948         whether we're running inside the debugger.
12949
12950 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
12951
12952         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
12953         for Method/Constructor/FieldBuilders.
12954
12955 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12956
12957         * reflection.c (module_add_cattrs): Save custom attributes for global methods
12958         and fields as well.
12959
12960 2005-10-26  Martin Baulig  <martin@ximian.com>
12961
12962         * mono-debug-debugger.c
12963         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
12964
12965 2005-10-24  Raja R Harinath  <harinath@gmail.com>
12966
12967         * icall.c (base64_to_byte_array): Don't pass an out-of-range
12968         integer to isspace.
12969
12970 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12971
12972         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
12973         when passing valuetypes byref. Fixes #76502.
12974
12975 2005-10-19  Jackson Harper  <jackson@ximian.com>
12976
12977         * profiler.c: Don't put a . in front of types that are not in a
12978         namespace.
12979
12980 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12981
12982         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
12983
12984 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
12985
12986         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
12987         #76436.
12988         (mono_marshal_get_ldflda_wrapper): Fix a warning.
12989
12990 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12991
12992         * assembly.c metadata-internals.h icall.c: Define an additional
12993         parameter for mono_assembly_name_parse_full, so we can avoid creating
12994         S.R.AssemblyName.Version when no version info wasn't passed.
12995         
12996 2005-10-09  Miguel de Icaza  <miguel@novell.com>
12997
12998         * class.c (mono_type_get_full_name): Reimplement method that was
12999         removed. 
13000
13001         * image.c: Some docs
13002
13003 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
13004
13005         * profiler.c (output_newobj_profile): Fix printing of Total memory
13006         on x86.
13007
13008 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
13009
13010         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
13011
13012 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
13013
13014         * threads.c: remove debug output.
13015
13016 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
13017
13018         * threads.c (mono_thread_manage): Fix crashes if more than 64
13019         threads need to be aborted. Hopefully fixes #75899.
13020
13021         * assembly.c (mono_stringify_assembly_name): New helper function.
13022
13023         * class.c: Use mono_stringify_assembly_name instead of the similar
13024         static function.
13025
13026         * assembly.h assembly.c: Add support for calling a postload search 
13027         hook if an assembly cannot be loaded.
13028
13029         * appdomain.c: Register new search hooks which call the AssemblyResolve
13030         events in AppDomain. Fixes #75231
13031
13032 2005-10-07  Martin Baulig  <martin@ximian.com>
13033
13034         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
13035         methods without debug info.
13036
13037 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
13038
13039         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
13040         wrappers.
13041
13042 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13043
13044         * file-io.c: now that we return symlinks, use lstat and, when the file
13045         is a symbolic link, stat, to get the file attributes. Also avoid the
13046         conversion to/from utf16/external.
13047
13048 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
13049
13050         * class.c (mono_class_layout_fields): Compute klass->has_references
13051         correctly if an embedded valuetype is not yet initialized. Fixes
13052         #76331.
13053
13054 2005-10-04  Martin Baulig  <martin@ximian.com>
13055
13056         * metadata.c
13057         (mono_metadata_load_generic_param_constraints): New public
13058         function; splitted the constraints loading out from
13059         mono_metadata_load_generic_params().
13060
13061         * class.c (mono_class_create_from_typedef): Call
13062         mono_metadata_load_generic_param_constraints() after setting up
13063         the type and creating our parent; fixes #75329.
13064
13065 2005-10-04  Martin Baulig  <martin@ximian.com>
13066
13067         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
13068         non-dynamic parent classes.
13069
13070 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
13071
13072         * file-io.c : win32 build fix (ETXTBSY seems not found).
13073
13074 2005-10-04  Martin Baulig  <martin@ximian.com>
13075
13076         * reflection.c
13077         (mono_image_get_methodspec_token): Make the cache actually work;
13078         fixes #75974.
13079
13080 2005-10-04  Martin Baulig  <martin@ximian.com>
13081
13082         * class.c (mono_class_name_from_token): Removed the unneccessary
13083         `MonoGenericContext *' argument.
13084
13085 2005-10-04  Martin Baulig  <martin@ximian.com>
13086
13087         * loader.c
13088         (method_from_methodspec): Make the caching work again; fixes the
13089         performance regression from #76262.
13090
13091 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13092
13093         * file-io.c:
13094         * file-io.h:
13095         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
13096         GetFileSystemEntries that performs the same work but without going
13097         into io-layer, locking, etc.
13098
13099 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
13100
13101         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
13102         ThreadState_Stopped as well. Fixes #76047.
13103
13104 2005-09-29  Martin Baulig  <martin@ximian.com>
13105
13106         * class.c
13107         (inflate_generic_context): If the new context has a `gmethod', set
13108         its `container' that that gmethod's `container'.
13109
13110         * metadata.c
13111         (mono_metadata_parse_generic_param): Simplify things;
13112         `generic_container = generic_context->container;' is just fine.
13113
13114         * loader.c (method_from_methodspec): Code cleanups.
13115
13116 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
13117
13118         * decimal.c: fix warning (and let gcc generate correct
13119         code on ARM with optimizations).
13120
13121 2005-09-28  Martin Baulig  <martin@ximian.com>
13122
13123         * loader.c
13124         (method_from_memberref): Added `MonoGenericContext *class_context'
13125         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
13126         (method_from_methodspec): If we're a memberref, use the enclosing
13127         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
13128
13129 2005-09-28  Martin Baulig  <martin@ximian.com>
13130
13131         * object.c (mono_runtime_invoke_array): Added support for
13132         MONO_TYPE_GENERICINST; fixes #75917.
13133
13134 2005-09-27  Martin Baulig  <martin@ximian.com>
13135
13136         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
13137         `k->byval_arg.type' to determine the actual type.
13138
13139         * loader.c (method_from_methodspec): Removed some hacks.
13140
13141 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
13142
13143         * class-internals.h (mono_field_is_deleted): Do the test for
13144         rtspecialname before we check the actual name of the field. This
13145         prevents us from dereferencing a pointer into the string table,
13146         saving us from accessing a few pages
13147
13148         * *.c: Replace the use of {Enter,Leave}CriticalSection with
13149         macros. This will allow a deadlock debugger to easily be plugged
13150         in.
13151
13152 2005-09-27  Martin Baulig  <martin@ximian.com>
13153
13154         * loader.c (method_from_methodspec): Create a "signature"
13155         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
13156
13157 2005-09-27  Martin Baulig  <martin@ximian.com>
13158
13159         * class.c
13160         (inflate_generic_class): Correctly set the new context's
13161         container.
13162
13163         * loader.c
13164         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
13165         instead of a `MonoGenericContext *'.
13166         (mono_method_signature_full): Take a `MonoGenericContainer *'
13167         instead of a `MonoGenericContext *'.
13168
13169         * metadata.c
13170         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
13171         instead of a `MonoGenericContext *'.
13172         (mono_metadata_parse_method_signature_full): Likewise.
13173
13174 2005-09-26  Martin Baulig  <martin@ximian.com>
13175
13176         * class.c
13177         (mono_class_from_generic_parameter): Set `klass->generic_container'
13178         (mono_class_from_generic_parameter): Likewise.
13179         (mono_bounded_array_class_get): We inherit the generic container
13180         from the element class.
13181
13182         * loader.c
13183         (find_method, find_method_in_class): Take a `MonoGenericContext *'
13184         argument rather than computing it here.
13185         (method_from_memberref): Correctly set the generic context before
13186         parsing the signature.  Fixes #75681.
13187
13188 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
13189
13190         * object.c (mono_class_has_special_static_fields): Fix warnings.
13191
13192 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13193
13194         * assembly.c: Add parse_public_key function, to
13195         par the public keys. Also added mono_assembly_name_parse_full,
13196         to define it the parsed key should be freed or not.
13197         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
13198         to parse a long format assembly name.
13199         * metadata-internals.h: Keep mono_assembly_name_parse_full as
13200         private, since calling it to preserve the key requires
13201         freeing it manually.
13202         
13203 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
13204
13205         * locales.c : removed HAVE_ICU part.
13206
13207 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
13208
13209         * object.c (mono_class_create_runtime_vtable): Avoid calling 
13210         field_is_special_static if the klass has no special static fields.
13211
13212         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
13213         (MonoCachedClassInfo): Likewise.
13214
13215         * object.c (mono_class_has_special_static_fields): New helper function.
13216
13217 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
13218
13219         * class.c (mono_class_create_from_typedef): Don't call 
13220         interfaces_from_typedef_full for enums.
13221         (mono_class_create_from_typedef): Compute the base types of enums directly
13222         without calling mono_class_setup_fields ().
13223         (mono_class_find_enum_basetype): New helper function.
13224
13225         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
13226         one place inside the string heap.
13227         
13228 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
13229
13230         * class.c: locking fixes, code cleanups, some docs added.
13231         Allocate some data structures in the image mempool.
13232
13233 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
13234
13235         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
13236         the example code.
13237         
13238 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
13239
13240         * class-internals.h, class.c, reflection.c: reduce memory taken by
13241         MonoClass.
13242
13243 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
13244
13245         * metadata.c, metadata.h, loader.h: documentation updates, code and
13246         API cleanups.
13247
13248 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
13249
13250         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
13251         the example code.
13252
13253         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
13254         page faults caused by the runtime while reading metadata.
13255
13256 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13257
13258         * socket-io.c: the field names were changed 3 months ago and no one
13259         realized until bug #76077 got filed!
13260
13261 2005-09-20  Martin Baulig  <martin@ximian.com>
13262
13263         * icall.c (assembly_icalls): Removed some unused debugger icalls.
13264
13265 2005-09-20  Martin Baulig  <martin@ximian.com>
13266
13267         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
13268         write the rank into the class entry.
13269
13270 2005-09-20  Martin Baulig  <martin@ximian.com>
13271
13272         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
13273
13274 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
13275
13276         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13277
13278         * icall.c (custom_attrs_defined_internal): New icall.
13279
13280         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
13281         function.
13282         (mono_custom_attrs_construct_by_type): New helper function.
13283
13284 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
13285
13286         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
13287         terminate the resulting string. Fixes #76123.
13288
13289 2005-09-16  Martin Baulig  <martin@ximian.com>
13290
13291         * mono-debug.c
13292         (mono_debug_add_method): Ignore inflated methods for the moment.
13293
13294 2005-09-14  Martin Baulig  <martin@ximian.com>
13295
13296         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
13297
13298 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
13299
13300         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
13301         return a success/failure indication.
13302         (mono_metadata_interfaces_from_typedef_full): Ditto.
13303         (get_constraints): Ditto.
13304
13305 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
13306
13307         * marshal.c (emit_marshal_array): Fix handling of null arrays.
13308         
13309         * marshal.c (emit_marshal_array): Add support for returning string
13310         arrays from delegates. Fixes #76063.
13311
13312         * marshal.c: Use the emit_ldloc/stloc macros where possible.
13313
13314 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
13315
13316         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
13317         icall.
13318
13319 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
13320
13321         * reflection.c icall.c: Fix after mono_get_exception_type_load
13322         signature change.
13323
13324         * assembly.c (mono_assembly_get_assemblyref): New helper function.
13325         (mono_assembly_load_reference): Use the new helper.
13326
13327         * class-internals.h (MonoLoaderError): New structure containing 
13328         information about type loading errors.
13329
13330         * class-internals.h loader.c: Add APIs to store per-thread loader
13331         error information.
13332
13333         * loader.c class.c: Set the loader error if needed.
13334
13335         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
13336
13337 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
13338
13339         * decimal.c: fixed to handle the broken ARM fp format.
13340
13341 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
13342
13343         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
13344         broken.
13345
13346 2005-09-06  Martin Baulig  <martin@ximian.com>
13347
13348         * domain.c (supported_runtimes): Added v2.0.50727.
13349
13350 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
13351
13352         * culture-info.h: reduce the size of some structures.
13353
13354 2005-09-05  Martin Baulig  <martin@ximian.com>
13355
13356         Reflect latest API changes in the August CTP.
13357
13358         * icall.c
13359         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
13360         ("MonoType.HasGenericArguments"): Removed.
13361         ("MonoMethod.BindGenericParameters"): Renamed to
13362         "MakeGenericMethod".
13363         ("MethodBuilder.BindGenericParameters"): Renamed to
13364         "MakeGenericMethod".    
13365
13366 2005-09-05  Martin Baulig  <martin@ximian.com>
13367
13368         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
13369
13370 2005-09-05  Martin Baulig  <martin@ximian.com>
13371
13372         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13373
13374         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
13375         generic_container is non-NULL.
13376
13377 2005-09-05  Martin Baulig  <martin@ximian.com>
13378
13379         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13380
13381         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
13382
13383 2005-08-29  Michal Moskal  <malekith@nemerle.org>
13384
13385         * reflection.c (encode_locals,
13386         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
13387         for large generic types.
13388
13389 2005-09-05  Martin Baulig  <martin@ximian.com>
13390
13391         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13392
13393         * class.c (mono_dup_array_type): New public method.
13394         (mono_metadata_signature_deep_dup): New public method.
13395         (dup_type): Correctly duplicate array and function types.
13396
13397 2005-09-05  Martin Baulig  <martin@ximian.com>
13398
13399         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13400
13401         * reflection.c (get_default_param_value_blobs): Handle generic types
13402         and generic methods.
13403
13404 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
13405
13406         * class.c: Fixed error reporting (method/class were inversed) for 
13407         inheritance demands.
13408         * security-manager.c|h: Added the AppDomain when calling the managed
13409         System.Security.SecurityManager.InheritanceDemand method.
13410
13411 2005-09-01  Raja R Harinath  <rharinath@novell.com>
13412
13413         * reflection.c (encode_marshal_blob): 'marshaltype' and
13414         'marshaltyperef' are alternate sources for the custom marshaler
13415         name.
13416
13417 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
13418
13419         * class.c: fix creation of array classes with rank == 1
13420         (patch by Ankit Jain <jankit@novell.com>).
13421
13422 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
13423
13424         * object.c: fix check for creating the bound data for arrays vs
13425         szarrays.
13426
13427 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13428
13429         * object.c: configuration file name is now based on the executable name,
13430         not the image name. Fixes bug #75931.
13431
13432 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
13433
13434         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
13435         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
13436
13437 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
13438
13439         * rand.c: Use wincrypt.h instead of WinCrypt.h.
13440
13441 2005-08-24  Ankit Jain  <jankit@novell.com>
13442             Raja R Harinath  <rharinath@novell.com>
13443
13444         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
13445           called by it recursively.
13446           (mono_class_init): Remove special case in pending_init handling, since it's
13447           superseded by the fix to mono_class_from_typeref.
13448
13449 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
13450
13451         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
13452         BROKEN_THREAD_START stuff.
13453
13454 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
13455
13456         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
13457         trampoline.
13458
13459         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
13460         
13461         * object.c (mono_delegate_ctor): Replace the original function address with
13462         a delegate trampoline.
13463
13464 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
13465
13466         * icall.c: add boolean argument to base64_to_byte_array and 
13467         InternalFromBase64String to control whether a whitespace-only string
13468         is allowed (or should casue a FormatException to be thrown). We need
13469         this as the behavior has changed between MS.NET 1.x and 2.0, and we
13470         to match the MS behaviour in both profiles.
13471         * appdomain.c: Bump corlib version.
13472
13473 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13474
13475         This patch implements a big portion of publisher policy
13476         support, used to bind assembly versions and redirect
13477         one assembly from version A to version B.
13478
13479         * assembly.c:
13480         New GSList loaded_assembly_bindings, for storing the cached
13481         assembly bindings.
13482         (assembly_binding_maps_name): New static function for checking if a 
13483         assembly binding information maps an assembly name.
13484         (mono_assembly_binding_info_free): New function for freeing
13485         assembly binding information resources.
13486         (get_publisher_policy_info): New static function for retrieving 
13487         assembly binding information from a MonoImage.
13488         (compare_versions): New static function for comparing an assembly
13489         binding information data and the version of an assembly name.
13490         (check_policy_versions): New static function for checking if an
13491         assembly binding info mapping an assembly name is valid for it.
13492         (mono_assembly_load_publisher_policy): New static function for
13493         loading the 'policy.major.minor.MyAssembly' image for an assembly
13494         with an assembly name 'aname'.
13495         (mono_assembly_bind_version): New static function for updating
13496         assembly redirection.
13497         (mono_assembly_apply_binding): New static function for applying
13498         assembly binding.
13499         (search_binding_loaded): New static function for searching 
13500         loaded assembly binding infos in the cache domain.
13501         (mono_assembly_load_full): Don't apply assembly binding for
13502         reflection only assemblies.
13503
13504         * metadata-internals.h: Add MonoAssemblyBindingInfo,
13505         which contains information about assembly binding. Also
13506         declare signature for mono_config_parse_publisher_policy ()
13507         function, used to retrieve pub policy info.
13508         
13509         * mono-config.c:
13510         (publisher_policy_start): New static function used to parse publisher 
13511         policy config files.
13512         (publisher_policy_parser): New static MonoParseHandler containing 
13513         the functions used when parsing config files.
13514         (mono_config_parse_publisher_policy): New function for parsing
13515         publisher policy files.
13516         
13517 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
13518
13519         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
13520
13521         * marshal.c (mono_delegate_free_ftnptr): Ditto.
13522
13523         * object.c (mono_get_addr_from_ftnptr): New helper function.
13524
13525         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
13526
13527         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13528
13529 2005-08-19  Dick Porter  <dick@ximian.com>
13530
13531         * threads.c, threads.h, appdomain.c, appdomain.h,
13532         profiler-private.h, monitor.c, object.c, object-internals.h,
13533         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
13534         store the thread ID, so it can hold a 64 bit value if needed.
13535
13536 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
13537
13538         * reflection.c (mono_reflection_create_dynamic_method): Store the
13539         handle class into the method references as well so ldtoken works in
13540         dynamic methods.
13541
13542         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
13543         types.
13544
13545 2005-08-19  Ankit Jain <jankit@novell.com>
13546
13547         Fix #75847.
13548         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
13549           here rather than using the method signature of a arbitrary function
13550           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
13551           two arguments.
13552           Hack done with Harinath.
13553
13554 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13555
13556         * threadpool.c: disable printing stack traces when we get a exception
13557         in a threadpool thread. I need to do more testing to figure out which
13558         cases actually print this. Fixes bug #75828.
13559
13560 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13561
13562         * icall.c: there might be ignored whitespace after the last '='. This
13563         fixes length computation and bug #75840.
13564
13565 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
13566
13567         * assembly.c (mono_assembly_load_full): Consider .exe extension as
13568         well. Fixes #75809.
13569
13570         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
13571         #75784.
13572         
13573         * reflection.c (create_custom_attr_data): Ditto.
13574
13575 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
13576
13577         * locales.c, culture-info.h : removed RegionLCIDMap.
13578         * culture-info-tables.h : regenerated.
13579
13580 2005-08-16  Martin Baulig  <martin@ximian.com>
13581
13582         * class.c (mono_type_get_name_recurse): Small fix.
13583
13584 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
13585
13586         * locales.c : indentation fixie.
13587
13588 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
13589
13590         * object-internals.h,
13591           locales.h,
13592           locales.c,
13593           culture-info.h,
13594           icall.c : added RegionInfo table support.
13595         * culture-info-table.h : regenerated for region support.
13596
13597 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
13598
13599         * reflection.c (resolve_object): handle all kinds of MonoMethod
13600         including generic ones
13601
13602 2005-08-12  Ankit Jain <jankit@novell.com>
13603
13604         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
13605           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
13606
13607 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
13608
13609         * process.c: Don't close a thread handle when it's NULL. This is a
13610         workaround for bug #75733.
13611
13612 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
13613
13614         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
13615
13616 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
13617
13618         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
13619
13620 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13621
13622         * threadpool.c: if a work item in the thread pool has a callback that
13623         catches a exception, don't propagate it after invoking the callback.
13624         Fixes bug #75336.
13625
13626 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
13627
13628         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
13629
13630         * class-internals.h (MonoCachedClassInfo): Add some new fields.
13631
13632         * class.c (mono_class_init): Load field info lazily in the AOT case.    
13633
13634         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
13635
13636 2005-08-03  Ankit Jain  <jankit@novell.com>
13637
13638         Fix #75683.
13639         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
13640           PInvoke calling convention is 0.
13641
13642 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
13643
13644         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
13645         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
13646
13647 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
13648
13649         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
13650         to handle threads not started by the GC (patch by Michael Meeks
13651         <michael.meeks@novell.com>).
13652
13653 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
13654
13655         * reflection.c: Make buffer used in emitting types larger for some
13656         big generic types (patch by Michal Moskal).
13657
13658 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
13659
13660         * mono-debug.c: Fix some (not all) alignment problems.
13661
13662 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13663
13664         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
13665         Invoke mono_image_load_from_data_full passing the refonly
13666         parameter.
13667
13668         * assembly.c
13669         (mono_assembly_open_from_bundle): Add the refonly argument, 
13670         in order to pass it to other methods it calls to.
13671         (do_mono_assembly_open): Add the refonly argument, in order 
13672         to pass it to other methods it calls to.
13673         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
13674         the refonly parameter to it.
13675
13676         * image.c: Add loaded_images_refonly_hash and
13677         loaded_images_refonly_guid_hash to cache the reflection
13678         only loaded images.
13679         (mono_images_init): Initialize the hash tables used for
13680         caching the reflection only images.
13681         (load_modules): Invoke mono_image_open_full passing the refonly
13682         parameter to load the modules the correct way.
13683         (build_guid_table): Add the refonly argument, to re-build the 
13684         correct hash table.
13685         (do_mono_image_open): Added the refonly argument, in order to
13686         define it for the loaded image.
13687         (mono_image_loaded_full): New function, which receives an
13688         additional parameter to look for the image in the refonly or
13689         non-refonly section.
13690         (mono_image_loaded): Updated, using mono_image_loaded_full.
13691         (mono_image_loaded_by_guid_full): The same case that happens
13692         with mono_image_loaded_full.
13693         (mono_image_loaded_by_guid): Likewise.
13694         (register_image): Use the ref_only variable inside MonoImage
13695         to decide in which hash table store the current image.
13696         (mono_image_open_from_data_full): Rename
13697         mono_image_open_from_data to mono_image_open_from_data_full,
13698         adding the refonly argument, to define the ref_only variable 
13699         inside MonoImage.
13700         (mono_image_open_from_data): Return 
13701         mono_image_open_from_data_full.
13702         (mono_image_open_full): Rename mono_image_open to
13703         mono_image_open_full, receiving the new refonly argument,
13704         to pass it to inner methods.
13705         (mono_pe_file_open): Update this function, to open
13706         a MonoImage as a non-refonly image.
13707         (mono_image_close): Use the refonly variable inside
13708         MonoImage to remove the image from the correct caches.
13709
13710         * image.h: Add the signatures of mono_image_open_full,
13711         mono_image_open_from_data_full, mono_image_loaded_full,
13712         mono_image_loaded_by_guid_full.
13713
13714         * metadata-internals.h: Add the ref_only field to 
13715         MonoImage.
13716         
13717 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13718
13719         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
13720         Fix the last behavior, which used to load the assemblies and
13721         extract MonoReflectionAssemblyName information, instead of
13722         extract it from the metadata tables. Needed for Reflection
13723         Only assemblies.
13724         
13725 2005-07-29  Martin Baulig  <martin@ximian.com>
13726
13727         * mono-debug-debugger.c
13728         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
13729         not initialized.
13730
13731         * mono-debug.c
13732         (mono_debug_address_from_il_offset): Check whether we have
13733         debugging support before attempting to take the lock.
13734         (mono_debug_source_location_from_address): Likewise.
13735         (mono_debug_source_location_from_il_offset): Likewise.
13736         (mono_debug_il_offset_from_address): Likewise.
13737         (mono_debug_address_from_il_offset): Likewise.
13738
13739 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
13740
13741         * class.c (mono_class_from_name_case): Add support for dynamic images.
13742         Fixes #75650.
13743
13744         * object.c (mono_class_compute_gc_descriptor): Add a workaround
13745         for #75479.
13746
13747 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13748         
13749         * reflection.c (mono_method_get_object): Fix warning.
13750
13751 2005-07-28  Martin Baulig  <martin@ximian.com>
13752
13753         * mono-debug.c
13754         (mono_debug_add_wrapper): Also write the wrapper type.
13755
13756 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13757
13758         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
13759         
13760         * class.c (mono_class_init): Avoid reading nested classes if the AOT
13761         data indicates the class has none.
13762
13763 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
13764
13765         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
13766         loader lock with the debugger lock. Prevents deadlocks for beagle.
13767
13768         Beagle can now run on an smp box for a weekend without any
13769         issues. Woohoo!
13770
13771 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
13772
13773         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
13774         in a module. Fixes #75629.
13775
13776 2005-07-26  Martin Baulig  <martin@ximian.com>
13777
13778         * mono-debug.c (mono_debug_add_wrapper): New static method.
13779         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
13780         interncall or a wrapper.
13781
13782         * mono-debug.h (MonoDebugWrapperData): New public typedef.
13783         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
13784         (MONO_DEBUGGER_VERSION): Bump to 51.
13785
13786         * mono-debug-debugger.c
13787         (mono_debugger_add_type): Removed this empty function.
13788         (mono_debugger_add_method): Likewise.
13789
13790 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
13791
13792         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
13793         before accessing method->slot.
13794
13795 2005-07-21  Jb Evain  <jbevain@gmail.com>
13796
13797         * reflection.c (method_encode_clauses/class): Handle filters clauses.
13798         Fixes #75010.
13799
13800 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
13801
13802         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
13803         #75587.
13804
13805 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13806
13807         * image.h image.c: Add mono_image_get_guid () API function.
13808
13809 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
13810
13811         There were issues when multiple threads tried to load
13812         assemblies. A deadlock was created between assemblies_mutex and
13813         mono_domain_assemblies_lock. This fixes the issue by making the
13814         assembly ref counting be lock free. See bug 75586.
13815         
13816         * image.c (mono_image_close): The add ref function here was using
13817         Interlocked operations while the unref was using a mutex and a
13818         --. I don't think this was ever a bug that would be exposed in a
13819         non-pendantic way (ie, by an embedder doing a ref on one thread
13820         and an unref on another), but for the sake of correctness, this is
13821         now Interlocked.
13822
13823         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
13824         (mono_assembly_load_reference): Call mono_assembly_addref rather
13825         than touching the refcount ourselves.
13826         (mono_assembly_close): Use InterlockedDecrement to unref the
13827         assembly. Don't acquire the lock unless it is actually needed.
13828
13829 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13830
13831         * class.c (mono_class_layout_fields): Fix calculation of has_references
13832         for generic types.
13833
13834 2005-07-12  Martin Baulig  <martin@ximian.com>
13835
13836         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13837
13838         * metadata.c
13839         (mono_type_hash): Provide better hashing for generic instances.
13840         (mono_generic_inst_hash): Improve hashing.
13841         (mono_generic_class_hash): Likewise.
13842
13843         * reflection.c (mymono_metadata_type_hash): Improve hashing for
13844         generic instances.
13845
13846 2005-07-12  Martin Baulig  <martin@ximian.com>
13847
13848         * reflection.c (mono_reflection_create_runtime_class): Remove the
13849         hack for generic type definitions and non-`Run' assemblies.
13850         (mono_reflection_bind_generic_parameters): Also use
13851         `klass->wastypebuilder' to check for TypeBuilders.
13852
13853 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13854
13855         * class.c (mono_class_layout_fields): Fix calculation of has_references
13856         for generic types.
13857
13858         * class.c (inflate_generic_class): Fix a leak.
13859         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
13860         for generic types.
13861
13862 2005-07-11  Martin Baulig  <martin@ximian.com>
13863
13864         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
13865         on error.
13866
13867 2005-07-11  Martin Baulig  <martin@ximian.com>
13868
13869         * loader.c (find_method): Also lookup in
13870         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
13871
13872 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13873
13874         * appdomain.c (mono_domain_unload): Don't free the error message
13875         before passing it to mono_get_exception_...
13876
13877         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
13878         
13879 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
13880
13881         * threads.c: try to better guess an available RT signal (bug #75387).
13882
13883 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13884
13885         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
13886         and CACHE_OBJECT.
13887
13888 2005-07-07  Martin Baulig  <martin@ximian.com>
13889
13890         * class.c (mono_type_get_name_full): Return NULL for
13891         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
13892         fixes #75408.
13893
13894 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13895
13896         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
13897         exit the appdomain as well being aborted.
13898
13899         * threadpool.c: Create all threadpool threads inside the root appdomain, and
13900         change back to the root domain after calling managed code. This enables
13901         appdomains using threadpools to be unloaded.
13902
13903 2005-07-07  Martin Baulig  <martin@ximian.com>
13904
13905         * class-internals.h
13906         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
13907         into `MonoDynamicGenericClass' since we only need it for dynamic
13908         types.
13909
13910         * reflection.c (mono_class_bind_generic_parameters): We don't need
13911         to compute the `parent' here.
13912
13913 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
13914
13915         * culture-info-table.h : regenerated.
13916
13917 2005-07-06  Martin Baulig  <martin@ximian.com>
13918
13919         * icall.c
13920         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
13921
13922         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
13923
13924 2005-07-06  Martin Baulig  <martin@ximian.com>
13925
13926         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
13927         we're doing a signature-only comparision; fixes #74945.
13928
13929 2005-07-06  Martin Baulig  <martin@ximian.com>
13930
13931         * class-internals.h (MonoGenericClass): Moved some things out into
13932         a new `MonoInflatedGenericClass' type.  
13933         (MonoInflatedGenericClass): New type; the `klass' of a
13934         `MonoGenericClass' is now computed lazyly in
13935         mono_get_inflated_generic_class().      
13936
13937         * class.c (mono_get_inflated_generic_class): New public function.
13938         (mono_class_inflate_generic_method): Removed the unused
13939         `MonoClass *' argument.
13940         (setup_generic_vtable): Don't call mono_get_inflated_method() on
13941         all the methods.
13942         (mono_class_create_generic): Make this static and merge it with
13943         mono_class_create_generic_2(); we're now called automatically from
13944         mono_get_inflated_generic_class().
13945
13946         * loader.c (mono_method_signature): Call
13947         mono_get_inflated_method() here.
13948
13949 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
13950
13951         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
13952         type of fields with RVA.
13953
13954         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
13955         for this pseudo class.
13956         (my_mono_class_from_generic_parameter): Likewise.
13957         (mono_class_init): Allow interfaces to have cctors.
13958
13959 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13960
13961         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
13962         lazily for AOT methods.
13963
13964 2005-07-05  Martin Baulig  <martin@ximian.com>
13965
13966         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
13967         returns FALSE for a successful match, not TRUE.
13968
13969 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13970
13971         * loader.c (mono_method_get_index): Optimize this a bit.
13972
13973 2005-07-04  Martin Baulig  <martin@ximian.com>
13974
13975         * class.c
13976         (class_compute_field_layout): Move the check for generic type
13977         definitions into mono_class_layout_fields().  Fixes #74684.
13978         (mono_class_from_generic_parameter): Correctly compute
13979         `klass->parent'; fixes #75457.
13980
13981         * reflection.c (register_assembly, register_module): Make sure
13982         `domain->rejobject_hash' is already created.
13983
13984 2005-07-02  Martin Baulig  <martin@ximian.com>
13985
13986         * class-internals.h
13987         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
13988         `MonoDynamicGenericClass'.      
13989
13990 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
13991
13992         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
13993         returned by a field getter is null, since null is a valid value.
13994
13995 2005-07-01  Martin Baulig  <martin@ximian.com>
13996
13997         * reflection.c (mono_reflection_generic_class_initialize): Update
13998         the `dgclass->fields [i].parent' to the correct class.
13999         (mono_image_get_fieldref_token): Use the declaring type, not the
14000         reflected type.
14001
14002 2005-07-01  Martin Baulig  <martin@ximian.com>
14003
14004         * loader.c (find_method): Also look in the interfaces; fixes #75429.
14005
14006 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
14007
14008         * threads.c (thread_cleanup): assert that thread != NULL
14009         (wait_for_tids_or_state_change): We were using the wrong variable
14010         when accessing wait->threads. `i' was always out of the bounds of
14011         the array.
14012
14013 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14014
14015         * loader.c: map user32 and kernel32 to libMonoSupportW
14016
14017 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
14018
14019         * appdomain.c (unload_thread_main): Mark this as WINAPI.
14020
14021 2005-06-28  Martin Baulig  <martin@ximian.com>
14022
14023         * loader.c (method_from_methodspec): Fix #75334.
14024
14025 2005-06-28  Martin Baulig  <martin@ximian.com>
14026
14027         Fix #74953 - Arrays now implement the generic IList<T> interface
14028         on the 2.0 platform.
14029
14030         * class-internals.h (MonoDefaults): Added `generic_array_class'.
14031
14032         * reflection.c (mono_class_bind_generic_parameters): New public
14033         function; similar to mono_reflection_bind_generic_parameters(),
14034         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
14035
14036         * domain.c (mono_init_internal): Try to initialize.
14037         `mono_defaults.generic_array_class' here; this'll only succeed if
14038         we're using the 2.0 corlib.
14039
14040         * icall.c
14041         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
14042         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
14043         (mono_lookup_internal_call): Added support for nested classes.
14044
14045         * loader.c
14046         (mono_get_method_from_token): Set `result->signature->pinvoke' if
14047         we're an interncall and have generic arguments.
14048
14049         * class.c
14050         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
14051         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
14052         instance of System.Array.InternalArray<T> for arrays, so they
14053         implement the generic IList<T> interface.
14054
14055 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
14056
14057         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
14058         (chastamar@yahoo.com). Fixes #75374.    
14059
14060 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
14061
14062         * culture-info-table.h: regenerated.
14063
14064 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14065
14066         * icall.c: handle spaces correctly for base64 strings.
14067
14068 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
14069
14070         * *.c: Kill some warnings.
14071
14072 2005-06-23  Duncan Mak  <duncan@novell.com>
14073
14074         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
14075         that this builds on Solaris 10 (x86).
14076
14077 2005-06-23  Martin Baulig  <martin@ximian.com>
14078
14079         * class.c
14080         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
14081         generic type definitions.
14082
14083 2005-06-23  Martin Baulig  <martin@ximian.com>
14084
14085         Fix #75331.
14086
14087         * metadata.c (mono_class_get_overrides): Renamed to
14088         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
14089         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
14090         pass it to mono_get_method_full().
14091
14092 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
14093
14094         * reflection.c (mono_reflection_create_runtime_class): take the
14095         mono_domain_lock in this method. Prevents deadlocks
14096
14097 2005-06-22  Martin Baulig  <martin@ximian.com>
14098
14099         * loader.c (method_from_methodspec): Fix #75330.
14100
14101 2005-06-22  Martin Baulig  <martin@ximian.com>
14102
14103         * reflection.c (type_get_qualified_name): Use
14104         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
14105         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
14106         argument; use it if we don't have an assembly name.
14107
14108 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
14109
14110         * object.c: In mono_message_init, set "copy out" flag for in
14111         parameters with the [Out] flag.
14112
14113 2005-06-21  Martin Baulig  <martin@ximian.com>
14114
14115         * class.c
14116         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
14117         and MONO_TYPE_PTR.
14118
14119 2005-06-21  Martin Baulig  <martin@ximian.com>
14120
14121         * class.c (mono_class_init): Don't initialize `class->fields' for
14122         generic instances since they're initialized again in
14123         compute_field_layout(). 
14124         (compute_field_layout): Set the field's `generic_info' here; fix
14125         #75320. 
14126
14127 2005-06-21  Martin Baulig  <martin@ximian.com>
14128
14129         * class-internals.h
14130         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
14131
14132         * metadata.c (mono_metadata_generic_method_equal): Also
14133         distinguish the `generic_class'; fixes #75334.
14134
14135 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14136
14137         * domain.c:
14138         * appdomain.c:
14139         * domain-internals.h:
14140         * reflection.c: 'domain_assemblies' field is now protected by its own
14141         lock. Don't call into managed code to run the AssemblyLoad event if we
14142         now there are no registered delegates for it.
14143
14144 2005-06-20  Martin Baulig  <martin@ximian.com>
14145
14146         * class.c (mono_class_is_assignable_from): Use a custom version of
14147         mono_class_has_parent() to make things work for generic instances;
14148         fix #75300.
14149
14150 2005-06-20  Martin Baulig  <martin@ximian.com>
14151
14152         * loader.c (method_from_methodspec): Apply a patch from
14153         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
14154
14155 2005-06-20  Martin Baulig  <martin@ximian.com>
14156
14157         * class.c (mono_class_init): Reverted Zoltan's last change; it
14158         breaks generics.
14159
14160 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
14161
14162         * threads.c (wait_for_tids_or_state_change): Add missing locking.
14163
14164 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14165
14166         * socket-io.c: fix the index in the socket array for writable/error
14167         sockets. Fixes bug #75306.
14168
14169 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
14170
14171         * class.c (mono_class_init): Allow interfaces to have static ctors.
14172
14173 2005-06-17  Martin Baulig  <martin@ximian.com>
14174
14175         * loader.c (method_from_methodspec): Use `context->container' when
14176         parsing the `gmethod->inst'.
14177
14178 2005-06-17  Martin Baulig  <martin@ximian.com>
14179
14180         * class.c (mono_type_get_name_recurse): Don't add the assembly
14181         name for type arguments.
14182
14183 2005-06-15  Martin Baulig  <martin@ximian.com>
14184
14185         * reflection.c (mono_image_get_inflated_method_token): Encode
14186         correct klass; fixes #75260.
14187
14188 2005-06-13 Michal Moskal <malekith@nemerle.org>
14189
14190         * icall.c: Make GetCorrespondingMethod/Constructor take
14191         MonoReflectionMethod method not MonoMethod. Removed
14192         MonoType.GetCorrespondingField, and make
14193         MonoGenericType.GetCorrespondingField take name not
14194         MonoClassField.
14195
14196 2005-06-13  Michal Moskal <malekith@nemerle.org>
14197
14198         * reflection.c (field_encode_signature, encode_locals):
14199          Make sizes of buffers for types larger (for big generic types).
14200          (create_generic_typespec,
14201          mono_reflection_sighelper_get_signature_local,
14202          mono_reflection_sighelper_get_signature_field):
14203          Add asserts for too small buffers.
14204
14205 2005-06-15  Martin Baulig  <martin@ximian.com>
14206
14207         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
14208         if our parent is not a dynamic type.
14209
14210 2005-06-15  Martin Baulig  <martin@ximian.com>
14211
14212         * class-internals.h (MonoTypeNameFormat): New enum.
14213
14214         * class.c
14215         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
14216         (mono_type_get_full_name): Removed.
14217         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
14218         argument instead of the boolean's.
14219
14220         * icall.c (ves_icall_System_MonoType_getFullName):
14221         Added `gboolean assembly_qualified'.    
14222
14223         * reflection.h
14224         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
14225
14226         * reflection.c (mono_reflection_parse_type): Parse the new type
14227         name format.
14228
14229 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14230
14231         * icall.c: no need to convert from utf16 to utf8 and then back again
14232         after the call to GetLogicalDrives.
14233
14234 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14235
14236         * icall.c: frombase64. Fix problems exposed by new tests.
14237
14238 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14239
14240         * icall.c: added internal calls for converting char [] and strings in
14241         base64 into byte [].
14242
14243 2005-06-10  Martin Baulig  <martin@ximian.com>
14244
14245         * class.c (mono_class_create_generic_2): Read the nested classes
14246         from the metadata rather than from `gklass->nested_classes' since
14247         `gklass' might not be initialized yet.
14248
14249 2005-06-09  Duncan Mak  <duncan@novell.com>
14250
14251         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
14252         all public headers. Fixes #74919.
14253
14254 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
14255
14256         * domain.c: The key for proxy_vtable_hash is now a pointer
14257         array. Added new GHashFunc and GCompareFunc functions for this.
14258
14259         * class.h: The list of interfaces in MonoRemoteClass is known in
14260         advance and can't grow (we create a new MonoRemoteClass if needed),
14261         so now the interface array can be allocated together with
14262         MonoRemoteClass.
14263         
14264         * object.c: Added a new method create_remote_class_key.
14265         Fixed mono_remote_class so it does not depend on
14266         mono_upgrade_remote_class.
14267         Removed extend_interface_array.
14268         Added new method clone_remote_class(), which makes a copy of a remote
14269         class and adds a new interface or class to it.
14270         mono_upgrade_remote_class() now creates a new remote class (or gets
14271         it from the cache) if an vtable upgrade is needed. In this way
14272         we make sure that other objects sharing the same remote class
14273         don't get the new vtable with unwanted interfaces.
14274         
14275         * object-internals.h:
14276         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
14277         
14278         * marshal.c: Track changes in mono_upgrade_remote_class().
14279
14280 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
14281         * icall.c: Add runtime methods for obtaining members of inflated
14282         class, which were created from supplied non-inflated members. It
14283         is used in internal Get{Method,Constructor,Field} methods in
14284         System.Type
14285
14286 2005-06-09  Martin Baulig  <martin@ximian.com>
14287
14288         * reflection.c
14289         (mono_reflection_bind_generic_method_parameters): Fix #75169.
14290
14291 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14292         * reflection.c (mono_image_basic_init): Define
14293         Version in MonoDynamicAssembly. 
14294         
14295 2005-06-08  Martin Baulig  <martin@ximian.com>
14296
14297         Fix #75136.
14298
14299         * loader.c
14300         (mono_method_signature_full): New public method; takes a
14301         `MonoGenericContext *'.
14302         (find_method): Use mono_method_signature_full() and pass the
14303         klass'es context to it.
14304
14305         * class.c (mono_class_is_inflated_method): Use
14306         mono_method_signature_full() and pass the context to it.
14307
14308 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
14309
14310         * object.c: add proper locking in mono_remote_class_vtable(),
14311         fixes possible memory corruption.
14312
14313 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
14314
14315         * marshal.c (mono_remoting_marshal_init): set
14316         initialized after initialization.
14317
14318 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14319
14320         * locales.c : hush.
14321
14322 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
14323
14324         * object.c (extend_interface_array): fix really silly
14325         memory corrupting / comparison bug.
14326
14327 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14328
14329         * reflection.c: Functions added to support the creation
14330         of CustomAttributeData, which includes Attribute data
14331         used by ReflectionOnly methods.
14332
14333         * reflection.h:  mono_reflection_get_custom_attrs_data and
14334          mono_custom_attrs_data_construct added (functions exposed).
14335
14336          * icall.c: Added mono_reflection_get_custom_attrs_data
14337          as icall.
14338         
14339 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
14340
14341         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
14342         lupus's request.
14343
14344 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
14345
14346         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
14347
14348         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
14349         dynamic DllImportAttribute.
14350
14351         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
14352         dynamic DllImportAttribute.
14353
14354         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
14355         Fixes #75162.
14356
14357 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14358
14359         * threads.c: avoid segfault when an unstarted thread is aborted.
14360
14361 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
14362
14363         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
14364         Returns the name and version of the runtime for reporting.
14365
14366 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14367
14368         * appdomain.c: bump corlib version.
14369         * object-internals.h: new field in MonoReflectionAssembly.
14370
14371 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14372
14373         * object-internals.h: Carlos forgot to add this field.
14374
14375 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14376
14377         * icall.c: Added create_version to create instances
14378         of Version of MonoReflectionAssemblyName. This change helps
14379         the AssemblyName tests to keep running fine.
14380         
14381 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
14382   
14383         * object.c (mono_method_return_message_restore): A somehow less
14384         intrusive fix for #75138.
14385
14386 2005-06-03  Raja R Harinath  <rharinath@novell.com>
14387
14388         * object.c (mono_method_return_message_restore): Fix computation
14389         of expected number of out args.
14390
14391 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
14392
14393         * reflection.c (mono_image_get_method_info): Fix the case when the
14394         charset is empty.
14395
14396 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
14397
14398         * object.c: Added missing null check in
14399           mono_method_return_message_restore.
14400
14401 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
14402
14403         * reflection.c (mono_image_get_method_info): Handle the case when
14404         dllentry is empty.
14405
14406 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
14407
14408         * object.c: When creating the vtable for a proxy, take into account
14409         all inherited interfaces, not only the ones registered in
14410         iclass->interfaces. This fixs bug #74996.
14411         Also, in mono_method_return_message_restore, verify that the array
14412         of out args has the expected lengh.
14413
14414 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14415
14416         * socket-io.c: update the timeout in Poll when the call is interrupte.
14417
14418 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14419
14420         * socket-io.c: support abort/suspend in Select_internal after last
14421         change.
14422
14423 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14424
14425         * threadpool.c: remove warning.
14426
14427 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14428
14429         * icall.c:
14430         * socket-io.[ch]: Select_internal uses poll() now when available, thus
14431         removing the 1024 limit from select(). Runtime part of the fix for
14432         bug #71203.
14433
14434 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14435
14436         * socket-io.c: when resolving the addresses for the same
14437         host returned by gethostname(), get the local IPs from the interface
14438         list. Loopback addresses are discarded if the are interfaces up with
14439         non-loopback ones. Fixes bug #63265.
14440
14441 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
14442
14443         * appdomain.c, verify.c, object-internals.h, reflection.c:
14444         bumped corlib number to 36, and added new extra_flags field
14445         to ReflectionMethodBuilder and friends.  Fixes #75060.
14446
14447 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
14448
14449         * gc.c: register a new weak link only if the object is non-null
14450         (fixes bug#75047).
14451
14452 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14453
14454         * culture-info.h : short time pattern too.
14455
14456 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14457
14458         * culture-info.h : expand long time pattern string length.
14459
14460 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14461
14462         * culture-info-table.h : update (more French date format; #72788).
14463
14464 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
14465
14466         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
14467         the method is static. Fixes #75029.
14468
14469 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
14470
14471         * reflection.c: Update the table_idx field of method builders after
14472         saving the module, since it can change. This is a workaround for
14473         bug #74914. 
14474
14475 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14476
14477         * culture-info-table.h : update (additional French date format).
14478
14479 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
14480
14481         * icall.c (ves_icall_type_Equals): Revert last change.
14482         
14483         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
14484
14485         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
14486
14487 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
14488
14489         * class-internals.h: Added executioncontext_class field to 
14490         MonoDefaults structure.
14491         * domain.c: Cache System.Threading.ExecutionContext class in 
14492         mono_defaults.
14493         * object.c: Capture the ExecutionContext for asynchroneous calls in
14494          mono_async_result_new.
14495         * object-internals.h: Added execution_context and original_context 
14496         fields to MonoAsyncResult. Added execution_context to MonoThread.
14497         * security-manager.c|.h: Added mono_get_context_capture_method to 
14498         return the capture method (if required by the security manager or by
14499         the framework version used).
14500         * threadpool.c: Apply capture (if present) ExecutionContext in 
14501         mono_async_invoke and revert to original context after it completes.
14502
14503 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
14504
14505         * culture-info-table.h : updated (real hacky solution for zh-CHT).
14506
14507 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
14508
14509         * culture-info-table.h : zh-CHT related workaround.
14510
14511 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
14512
14513         * marshal.c (emit_marshal_custom): Add some error checking and call the
14514         methods in the ICustomMarshaler interface. Fixes #74875.
14515         
14516         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
14517         native->managed wrappers.
14518
14519 2005-05-12  Martin Baulig  <martin@ximian.com>
14520
14521         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
14522         here and use the loader lock.
14523
14524         * mono-debug.c: Properly lock when the debugger is not attached.
14525         (mono_debug_init): Release the initial lock if we're not running
14526         in the debugger.
14527
14528 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
14529
14530         * marshal.c (emit_marshal_custom): Pass through NULL values without
14531         calling the custom marshalling routines.
14532
14533         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
14534         conversion in structures. Fixes #74882.
14535
14536 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
14537
14538         * culture-info-table.h : zh-* cultures were missing.
14539
14540 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
14541
14542         * threads.c: Added a new event background_change_event which is signaled
14543         when a thread changes its background mode.
14544         Moved here several checks previously done in managed code. The checks
14545         require the thread lock, and using the thread lock in managed code
14546         can result in deadlocks.
14547         Merged Start_internal and Thread_internal into a single method. Now 
14548         Thread_internal does all work of creating and starting a thread.
14549         Added icalls for setting and getting the state of the object. Moved from
14550         managed code to avoid locking there.
14551         Added wait_for_tids_or_state_change() which is called instad of
14552         wait_for_tids when waiting for non-backround threads to end. This method
14553         will return if one of the threads ends or the background_change_event
14554         is signaled.
14555         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
14556         the background mode. This method signals the background_change_event
14557         event.
14558         * icall.c:
14559         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
14560         removed Start_internal.
14561         
14562 2005-05-11  Martin Baulig  <martin@ximian.com>
14563
14564         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
14565         to order of some fields to get proper alignment on 64-bit machines.
14566
14567 2005-05-11  Martin Baulig  <martin@ximian.com>
14568
14569         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
14570         changes as they're broken and completely fuck up the debugger.
14571
14572         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
14573
14574 2005-05-10  Martin Baulig  <martin@ximian.com>
14575
14576         * reflection.c (mono_reflection_generic_class_initialize): Don't
14577         call mono_class_setup_parent() here.
14578
14579 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14580
14581         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
14582         send/receive timeout use an integer in milliseconds. We were using a
14583         struct timeval.
14584
14585 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14586
14587         * locales.c:
14588         (internal_get_cultures): reserve the first slot of the array for the
14589         InvariantCulture, which will be filled in managed code.
14590
14591 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
14592
14593         * reflection.c (mono_image_fill_module_table): Initialize the
14594         GENERATION field as well.
14595
14596 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14597
14598         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
14599         Monitor.Enter on the object.
14600
14601 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
14602
14603         * threads.c: Enable the wait for running threads when exiting.
14604         * icall.c: Suspend all threads before exiting.
14605
14606 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
14607
14608         * assembly.c (mono_assembly_load_reference): Fix warning.
14609
14610 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14611
14612         * threadpool.c: changed the default number of threads per cpu. From now
14613         on, the default will be 20 + (5 * number of cpus) instead of 50.
14614
14615 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
14616
14617         * loader.c (mono_method_get_signature_full): Add locking here.
14618
14619 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
14620
14621         * appdomain.c: Moved methods for parsing and freeing assembly
14622         names to assembly.c.
14623         * assembly.c, domain-internals.h: Created public methods for parsing
14624         assembly names. Fixed mono_assembly_load_with_partial_name:
14625         it now finds the best match, taking into account the version,
14626         token and culture specified in the partial name. Also return
14627         the latest version if no version information is specified.
14628
14629 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
14630
14631         * threadpool.c: replace check for SocketAsyncCall class.
14632
14633 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14634
14635         * threadpool-internals.h:
14636         * Makefile.am: added threadpool-internals.h
14637
14638         * threadpool.c: call mono_unhandled_exception on exceptions not handled
14639         that happen in threadpool threads (tested on MS).
14640         (mono_thread_pool_remove_socket): new function that dispatch any pending
14641         AIO call on a socket that is closing. By now only epoll really needs it,
14642         as select/poll wake up when the socket closes.
14643
14644
14645         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
14646
14647 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
14648
14649         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
14650
14651 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
14652
14653         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
14654
14655 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
14656
14657         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
14658         has an abort request, convert it into a suspend request.
14659
14660 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
14661
14662         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
14663         warning for the usage of `UnmanagedFunctionPointerAttribute' which
14664         is not supported yet.
14665
14666 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14667
14668         * image.c: register assemblies loaded from data (bundles) in the loaded
14669         assemblies hash. Fixes bug #74772.
14670
14671 2005-04-29  Martin Baulig  <martin@ximian.com>
14672
14673         * class.c (mono_type_get_name_recurse): Update to the new naming
14674         schema from the latest .NET 2.x beta2.
14675         (mono_class_setup_vtable_general): If we're a generic instance,
14676         copy the vtable from our generic type definition and inflate all
14677         the methods in it.
14678
14679         * loader.c (find_method): Update to the new naming schema from the
14680         latest .NET 2.x beta2.
14681
14682 2005-04-29  Raja R Harinath  <harinath@gmail.com>
14683
14684         * class.c (mono_class_init): Add a mono_loader_unlock to the
14685         #74734 fix.
14686
14687 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
14688
14689         * icall.c (ves_icall_System_Environment_Exit): Remove the 
14690         suspend_all_other_threads () call for the time being, since it can hang.
14691
14692         * threads.c (mono_thread_manage): Similarly, disable the waiting for
14693         the background threads to exit, since it can also hang.
14694
14695         * class.c (mono_class_init): Applied patch from Ankit Jain 
14696         (radical@gmail.com). Avoid pending init errors when a field refers
14697         to a nested class using a typeref. Fixes #74734.
14698
14699         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
14700         this for dynamic modules.
14701
14702 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14703
14704         * threads.c: don't wait for threads that are in the process of aborting
14705         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
14706         and waiting for background threads to finish. This makes xsp and
14707         mod-mono-server exit without random length delays and/or hangs.
14708
14709 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14710
14711         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
14712
14713 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
14714
14715         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
14716         dynamic types to prevent infinite loops. Fixes #74727.
14717
14718         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
14719         ..._is_assignable_to.
14720
14721 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
14722
14723         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
14724
14725 2005-04-25  Martin Baulig  <martin@ximian.com>
14726
14727         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
14728
14729         * domain.c
14730         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
14731
14732         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
14733
14734         * reflection.c (build_compressed_metadata): Set metadata header
14735         version to 2.0.
14736
14737 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
14738
14739         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
14740         number into an integral and a decimal part. Fixes #70473.
14741
14742         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
14743
14744 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
14745
14746         * culture-info-table.h : reflected the latest locale-builder output.
14747
14748 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14749
14750         * threadpool.c: check for SuspendRequested too when deciding if
14751         mono_thread_interruption_checkpoint should be called.
14752
14753 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14754
14755         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
14756         * threads.c: remove interruption_mutex and use Interlocked instead. When
14757         suspending all the threads, wait for all the suspended events at once.
14758         If we're shutting down and get an APC that is going to be queued,
14759         call mono_thread_execute_interruption immediately, as the thread might
14760         be sleeping on a pthread condition or mutex.
14761
14762         * icall.c: call mono_runtime_set_shutting_down before suspending the
14763         threads.
14764
14765         Fixes bug #74693. And now xsp is happier when exiting.
14766
14767 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
14768
14769         * loader.c (mono_stack_walk): Fix #74690.
14770
14771 2005-04-22  Martin Baulig  <martin@ximian.com>
14772
14773         * mono-debug.h (MonoDebugMethodJitInfo): Added
14774         `MonoDebugMethodJitInfo *jit'.
14775
14776         * mono-debug.c (mono_debug_read_method): Cache the
14777         MonoDebugMethodJitInfo in `address->jit'.
14778         (mono_debug_free_method_jit_info): New public method.
14779
14780 2005-04-22  Martin Baulig  <martin@ximian.com>
14781
14782         * class.c (mono_class_is_assignable_from): Disallow
14783         type parameter -> interface.
14784
14785 2005-04-21  Dick Porter  <dick@ximian.com>
14786
14787         * threads.c (mono_thread_create): Turn an assertion into an error.
14788
14789 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
14790
14791         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
14792         
14793         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
14794         Fix some gcc 4.0 warnings.
14795
14796 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
14797
14798         * file-io.c: fix alt dir separator char on unix systems
14799         and cleanup (fixes bug #71214).
14800
14801 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
14802
14803         * marshal.c: Use CALLVIRT instead of CALL when dispatching
14804         a call to a remote domain, since the method may be an
14805         interface method in the client domain. This fixes bug #74192.
14806
14807 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14808
14809         * threadpool.c: recv/send are now performed before going back to managed
14810         code to save one transition.
14811
14812 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14813
14814         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
14815
14816         * metadata/threadpool.c: removed hack to workaround the bug above.
14817
14818         Fixes bug #74618.
14819
14820 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
14821
14822         * reflection.c reflection.h: Fix handling of parameter defaults in
14823         dynamic methods. Also fixes handling of parameter attributes.
14824         Fixes #74609.
14825
14826         * mono-debug.c (mono_debug_close_image): Fix warning.
14827
14828 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14829
14830         * socket-io.h: replaced old unused field with new 'blocking'.
14831         * threadpool.c: restore socket blocking state on windows(tm).
14832
14833 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
14834
14835         * icall.c: don't return the codebase in the AssemblyName[] returned by
14836         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
14837         * object-internals.h: Removed FIXME (fields were presents) and fixed
14838         versioncompat declaration.
14839
14840 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14841
14842         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
14843         not closed, so don't cleanup when it happens.
14844
14845 2005-04-13  Chris Toshok  <toshok@ximian.com>
14846
14847         * mono-debug-debugger.h: change prototype for
14848         mono_debugger_lookup_type.
14849
14850         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
14851         this function, although it should probably be named
14852         mono_debugger_init_type.
14853
14854 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14855
14856         * threadpool.c: fix non-AIO case.
14857
14858 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
14859
14860         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
14861         the built-in profiler to measure just JIT compilation times.
14862
14863 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14864
14865         * threadpool.c: the epollfd might be closed by another thread at
14866         any time, so ignore EBADF at treat it as a "we're closing" sign.
14867
14868 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14869
14870         * threadpool.c: release the semaphores with a count equals to the number
14871         of working threads in both IO and regular pools. Fixed typo that messed
14872         up the count of IO pool threads. Don't initialize the pipe handles if
14873         we're using epoll.
14874
14875 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14876
14877         * threadpool.c: some systems don't like a NULL when deleting the socket
14878         from epoll.
14879
14880 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14881
14882         * threadpool.c: fix semaphore allocation.
14883
14884 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14885
14886         * threadpool.c: added epoll() based implementation for asynchronous IO
14887         that is used instead of the default poll() when available.
14888         It can be disabled by setting MONO_DISABLE_AIO.
14889
14890 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14891
14892         * threadpool.c: windows needs 'closesocket' and instead of returning
14893         0 when the stream is closed while in select, it returns -1. Fixes bug
14894         #74573.
14895
14896 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
14897
14898         * class.c (class_compute_field_layout): Fix the regression caused by
14899         the previous try.
14900
14901 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14902
14903         * threadpool.c: separate pool for socket async. IO.
14904         * threadpool.h: mono_max_worker_threads is not a global any more.
14905
14906 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
14907
14908         * class.c (class_compute_field_layout): Fix #74549.
14909
14910 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14911
14912         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
14913         use 2 connected sockets instead.
14914
14915 2005-04-08  Miguel de Icaza  <miguel@novell.com>
14916
14917         * mono-config.c: Add new entry point for mkbundle
14918         mono_config_parse_memory. 
14919
14920 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14921
14922         * threadpool.c: removed another unused function.
14923
14924 2005-04-08  Ankit Jain  <radical@corewars.org>
14925
14926         * reflection.c (get_default_param_value_blobs): Add 'types'
14927         parameter to get the types encoded in the constant table.
14928         (mono_param_get_objects): Use the type from the constant table,
14929         not the type of the parameter, when creating default values.
14930         Handle null default values correctly.
14931
14932 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14933
14934         * file-io.c:
14935         * file-io.h:
14936         * threadpool.c:
14937         * threadpool.h:
14938         * icall.c:
14939         * socket-io.c: removed dead code for async IO.
14940
14941 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14942
14943         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
14944
14945         * threadpool.c: intercept socket async. calls and pass them to a thread
14946         that is polling and dispatching the job items to the threadpool as
14947         socket become ready. Fixes bugs #71217, #71933.
14948
14949         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
14950         between char and short/ushort arrays.
14951
14952         * socket-io.c: remove dead code.
14953
14954 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14955
14956         * locales.c,
14957           icall.c : removed InternalToUpper_Comp() and
14958           InternalToLower_Comp().
14959
14960 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14961
14962         * char-conversions.h : The tables were incorrectly generated. Should
14963           be generated against invariant culture.
14964
14965 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
14966
14967         * object.c (mono_runtime_invoke_array): Fix return value when 
14968         passing pre-created valuetype objects to ctors.
14969
14970         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
14971         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
14972         Fixes #74338.
14973
14974 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
14975
14976         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
14977         only used with --security and hides the wrong corlib version error.
14978
14979 2005-03-30  Joshua Tauberer  <tauberer@for.net>
14980
14981         * class.c: Changed mono_class_name_from_token so that types
14982         outside of a namespace don't have an initial period.  Improved
14983         the g_warning message used in _mono_class_get when loading
14984         fails.
14985         * assembly.c: In mono_assembly_load_reference, when an assembly
14986         can't be found, "No such file or directory" is misleading and
14987         unhelpful because a few paths were checked for the presence of
14988         the assembly.  When that happens (ENOENT), display a nicer
14989         message indicating the directories that were searched.  In all
14990         cases, the warning is made easier to read for non-hackers.
14991
14992 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
14993
14994         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
14995         project/solution.
14996         * appdomain.h|domain.c: Removed inline from functions.
14997         * appdomain.c: Reduced warnings when compiling on windows.
14998         * icall.c: Fixed output_debug declaration to gunichar2*.
14999         * mono-config.c: Reduced warnings when compiling on windows.
15000         * rand.c: Added missing "windows.h". Added missing return value.
15001         * rawbuffer.c: Added missing winsock2.h for windows.
15002         * sysmath.h: Added mono-compiler.h header to allow/ease 
15003         compilation with non-GCC compilers.
15004         * threads.c: Fixed declarations to compile with VS.NET C compiler.
15005         Removed cast warnings.
15006
15007         Adapted from the work of J Lothian (for VC6).
15008
15009 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
15010
15011         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
15012         from default_path.
15013
15014 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
15015
15016         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
15017         the 2.0 profile.
15018
15019 2005-03-27  Raja R Harinath  <harinath@gmail.com>
15020
15021         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
15022         has to be in $(exec_prefix).  $(prefix) is for arch-independent
15023         stuff, and it would probably use $(prefix)/share rather than
15024         $(prefix)/lib.
15025
15026 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15027
15028         * console-io.c: added 2 includes that might be missing.
15029
15030 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
15031
15032         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
15033         profile.
15034
15035         * reflection.c (create_custom_attr): Allocate the params array using
15036         alloca so it gets GC tracking.
15037
15038 2005-03-23  Chris Toshok  <toshok@ximian.com>
15039
15040         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
15041         out some spew.
15042
15043 2005-03-24  Raja R Harinath  <rharinath@novell.com>
15044
15045         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
15046         changes to pick up any changes in prefix, etc.
15047
15048 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
15049
15050         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
15051         
15052         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
15053         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
15054
15055 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
15056
15057         * class-internals.h object-internals.h class.c reflection.c: Extend the
15058         mono_lookup_dynamic_token () function to return the class of the
15059         token as well. 
15060
15061         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
15062         well. Fixes #73848.
15063
15064 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
15065
15066         * security-manager.c: Skip inheritance checks for intra-corlib
15067         class inheritance and method overrides. This skips a lot of checks
15068         and (anyway) permissions cannot work until corlib is loaded.
15069
15070 2005-03-23  Martin Baulig  <martin@ximian.com>
15071
15072         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
15073         MONO_TYPE_GENERICINST.  
15074
15075 2005-03-23  Martin Baulig  <martin@ximian.com>
15076
15077         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
15078
15079 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15080
15081         * class.c: added locking comments to some functions.
15082         Cache the interface offsets arrays (saves about 20 KB
15083         of runtime memory in a typical app).
15084         Reduce the time overhead in mono_class_setup_supertypes ().
15085
15086 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
15087
15088         * icall.c: speedup and fix leaks in GetMethodsByName and
15089         GetPropertiesByName.
15090
15091 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15092
15093         * reflection.c: some locking fixes.
15094
15095 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15096
15097         * metadata.c: added missing break in case statement.
15098
15099 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
15100
15101         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
15102         typedbyref return values. Fixes #73941.
15103
15104 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
15105
15106         * security-manager.c|h: Added demandunmanaged method and 
15107         suppressunmanagedcodesecurity class to MonoSecurityManager.
15108         Renamed aptc class to allowpartiallytrustedcallers.
15109
15110 2005-03-17  Martin Baulig  <martin@ximian.com>
15111
15112         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
15113
15114 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15115
15116         * file-io.c: disabled file async. IO using aio_*. It uses the
15117         threadpool now. Workaround for bug #73718.
15118
15119 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15120
15121         * assembly.h, mono-config.c: added code to deal with bundled configs
15122         for bundled assemblies.
15123
15124 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
15125
15126         * *.c, private.h: cleanup, removing old private.h header file.
15127
15128 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
15129
15130         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
15131         and throw_on_unmappable_char attributes.
15132
15133 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
15134
15135         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
15136         _ProcessName_internal.
15137
15138 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
15139
15140         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
15141         #73631.
15142
15143         * icall.c threads.c threads-types.h: Remove slothash icalls as they
15144         are no longer used.
15145
15146 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
15147
15148         * object.c (compute_class_bitmap): Add support for generics. Fixes
15149         #73527.
15150
15151 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
15152
15153         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
15154
15155 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15156
15157         * filewatcher.c: commented out the code for windows watcher, as we don't
15158         use it (we use the managed implementation instead).
15159
15160 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
15161
15162         * object-internals.h (MonoThread): Remove 'unused1' field.
15163
15164         * appdomain.c: Bump corlib version.
15165
15166         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
15167
15168         * reflection.c (mono_reflection_create_runtime_class): Remove the
15169         AssemblyBuilder.Save optimization since it causes too many problems.
15170
15171 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
15172
15173         * exception.c|h: Added mono_get_exception_reflection_type_load to
15174         create a ReflectionTypeLoadException object.
15175         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
15176         to return NULL is a InheritanceDemand fails during reflection. Updated
15177         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
15178         ReflectionTypeLoadException if an InheritanceDemand fails during 
15179         reflection. Added icall mapping for GetLinkDemandSecurity.
15180         * security-manager.c|h: Added ves_icall_System_Security_
15181         SecurityManager_GetLinkDemandSecurity internal call to return the
15182         class and methods permissions set for a LinkDemand. Removed unused
15183         fields in MonoSecurityManager.
15184
15185 2005-03-10  Martin Baulig  <martin@ximian.com>
15186
15187         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
15188         it's a generic instance.
15189
15190 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
15191
15192         * reflection.c (mono_get_object_from_blob): Applied patch from
15193         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
15194
15195         * class.c (mono_class_is_assignable_from): Another try at fixing 
15196         #73469 without breaking anything.
15197
15198 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
15199
15200         * class.c: (mono_class_is_assignable_from): Revert the last changes
15201         since they don't work with generics.
15202         
15203         * class.c (mono_class_is_assignable_from): Fix build bustage.
15204
15205         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
15206         the managed IsAssignableFrom method. Fixes #73469.
15207
15208         * reflection.c (mono_reflection_call_is_assignable_from): New helper
15209         function.
15210
15211 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
15212
15213         * object.c (mono_load_remote_field_new): Fix returning uninitialized
15214         memory when the remoting callback does not sets the out arguments.
15215         Fixes #73007.
15216
15217         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
15218         by mistake.
15219
15220         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
15221
15222         * object-internals.h (MonoStackFrame): Sync with managed object layout.
15223
15224         * appdomain.c: Bump corlib version.
15225
15226 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
15227
15228         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
15229         function.
15230
15231         * threads.c (mono_thread_attach): Detect threads which are not started
15232         by the GC pthread wrappers.
15233
15234 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
15235
15236         * icall.c: Added new icall for RNG.
15237         * rand.c|h: Added new icall to open the RNG. This allows to share a 
15238         single handle on Linux to access /dev/urandom and fix #73183.
15239
15240 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
15241
15242         * object.c: setting the new vtable in a transparent proxy object must
15243         not change the GC descriptor.
15244
15245 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15246
15247         * object.c: fixed compilation without GCJ support.
15248         * reflection.c: for runtime-created types ensure klass->has_references
15249         is correct (bug #73215).
15250
15251 2005-03-02  Martin Baulig  <martin@ximian.com>
15252
15253         * class.c (mono_class_is_assignable_from): Make this work if
15254         `oklass' is a generic instance; fixes #72831.
15255
15256 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
15257
15258         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
15259         with hasthis set.
15260         
15261         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
15262
15263         * marshal.c: Reorganize native->managed marshalling code to also use
15264         the emit_marshal_... functions.
15265
15266 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
15267
15268         * object.c: typed allocs have issues with bitmap sizes > 30,
15269         so check for max_set >= 30.
15270
15271 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
15272
15273         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
15274         managed code. Fixes #73012.
15275
15276         * metadata.h (MonoMarshalSpec): Add elem_mult field.
15277
15278         * metadata.c reflection.c: Load/Emit elem_mult as well.
15279         
15280         * metadata.h (MonoMarshalSpec): Add comment.
15281
15282         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
15283
15284         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
15285         num_elem to -1 if not given.
15286
15287         * object-internals.h (MonoReflectionMarshal): Add has_size field.
15288
15289         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
15290         given values.
15291
15292 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
15293
15294         * null-gc.c (mono_gc_free_fixed): Was not compilable.
15295
15296 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
15297
15298         * reflection.c (encode_marshal_blob): Encode param_num field as well.
15299
15300         * object-internals.h (MonoReflectionMarshal): Add param_num field.
15301
15302 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
15303
15304         * object.c: generalized the reference bitmap creation
15305         and added hooks for the new GC.
15306         * class-internals.c: removed the gc_bitmap field from MonoClass.
15307
15308 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15309
15310         * domain.c: help the compiler to produce better code
15311         in mono_jit_info_table_find ().
15312
15313 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
15314
15315         * object.c: make all allocations look typed.
15316
15317 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15318
15319         * socket-io.c: load Mono.Posix if it's not loaded already
15320         (fixes bug#73033).
15321
15322 2005-02-24  Martin Baulig  <martin@ximian.com>
15323
15324         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
15325         * reflection.c (dup_type): Likewise.
15326
15327 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
15328
15329         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
15330         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
15331
15332 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15333
15334         * domain.c, threads.c, object-internals.h: make the critical thread
15335         local vars use the fast access mode (even when we're compiled in
15336         a lib). Provide accessors to be used by the jit during codegen.
15337
15338 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15339
15340         * appdomain.c: Changed hook functios behavior to include
15341         support for the reflection only assemblies. Some icalls were changed
15342         to support the mentioned assemblies too. Signatures of static methods
15343         try_assembly_resolve and real_load now have an additional parameter:
15344         refonly.
15345
15346         * assembly.c: General changes to mono_assembly_ methods to support
15347         reflection only api. Functions mono_assembly_open, mono_assembly_load,
15348         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
15349         suffix, to support an additional gbool parameter to specify whether
15350         the assembli is reflection only or not. Created some new hook functions 
15351         to add support for reflection only assemblies. Signatures of static 
15352         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
15353         have now an additional parameter: refonly.
15354
15355         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
15356         indicating whether the assembly is reflection only or not.
15357
15358         * exception.c: Add mono_get_exception_invalid_operation.
15359
15360         * icall.c: Throw an InvalidOperationException when trying to invoke
15361         a property/method/event, or trying to set/get the value of a field.
15362         Also add an icall to retrieve the ref_only flag to the
15363         MonoReflectionAssembly.
15364
15365 2005-02-23  Chris Toshok  <toshok@ximian.com>
15366
15367         Part of fix for #72827.
15368         * mono-debug.c (mono_debug_add_method): add lexical block data to
15369         the info we write.  Kind of a hack at the moment - we copy the
15370         lexical block info from the MonoDebugMethodInfo to the
15371         MonoDebugMethodJitInfo here, before writing it.
15372         (mono_debug_read_method): read the lexical block info.
15373
15374         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
15375
15376         * debug-mono-symfile.h: add lexical block support.
15377
15378         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
15379         support.
15380
15381 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
15382
15383         * loader.c (mono_lookup_pinvoke_call): Fix warning.
15384
15385         * object.c (mono_runtime_free_method): Call mono_free_method () and
15386         put the TODOs there.
15387
15388         * loader.c (mono_free_method): Free up most memory allocated for 
15389         dynamic methods.
15390
15391 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15392
15393         * reflection.c: properly flag a Type argument to a
15394         named custom attr value (bug #72248).
15395
15396 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15397
15398         * reflection.c: reduce code duplication in named custom
15399         attribute encoding.
15400
15401 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
15402
15403         * reflection.c: properly encode custom attrs of type object
15404         (bug #72649).
15405
15406 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
15407
15408         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
15409
15410 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
15411
15412         * socket-io.c: load System.dll if it's not loaded already
15413         (bug #72850 and #70477).
15414
15415 2005-02-21  Martin Baulig  <martin@ximian.com>
15416
15417         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
15418         generic instances.
15419
15420 2005-02-21  Martin Baulig  <martin@ximian.com>
15421
15422         * reflection.c (mono_image_build_metadata): We also need to
15423         "fixup" the MethodImpl table after we computed the final method
15424         indices.  Call fixup_methodimpl() to do that.
15425         (fixup_methodimpl): New private method.
15426
15427 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
15428
15429         * assembly.c: special case mscorlib.dll (bug#72536),
15430         patch from Carlos Alberto Cortez.
15431
15432 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
15433
15434         * threads-types.h threads.c: Fix build bustage.
15435
15436         * threads.c: Use a union for long<->double conversions.
15437
15438         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
15439         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
15440
15441         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
15442         containing the checkpoint call with NOT_TAKEN.
15443         
15444         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
15445         checkpoint before pushing the arguments, so they won't have to be
15446         spilled to stack.
15447
15448 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15449
15450         * domain.c, assembly.c, domain-internals.h: make some data
15451         const and relocation-free.
15452
15453 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
15454
15455         * object.c, appdomain.c, class-internals.h: introduce the
15456         MonoClassRuntimeInfo structure to hold the info needed to
15457         use a class at runtime. Made mono_class_vtable() lock-free
15458         for all the appdomains.
15459
15460 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
15461
15462         * metadata-internals.h, image.c: introduce a per-image mempool to
15463         be used for memory that has the same lifetime as the image.
15464
15465 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
15466
15467         * domain.c: In mono_init_internal(), instead of selecting the first
15468         runtime version supported by an executable, get a list of all
15469         supported versions and select the one for which an mscorlib exists
15470         (since even if the runtime supports a given version, it doesn't mean
15471         that the framework for that version is installed).
15472         Modified get_runtimes_from_exe to support this behavior.
15473         In supported_runtimes, added information about additional system
15474         assembly versions.
15475         
15476         * assembly.c: Added support for more than one system assembly version
15477         per runtime version. Updated the assembly list.
15478         In mono_assembly_remap_version, removed the initial version check,
15479         since we don't know to which version we need to compare until we
15480         get the version set on which the assembly is based.
15481         Moved the code for loading corlib into the new method
15482         mono_assembly_load_corlib(), so it can be used by the initialization
15483         code.
15484         
15485         * domain-internals.h: Updated data structures and added declaration
15486         for mono_assembly_load_corlib.
15487
15488 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
15489
15490         * reflection.c (resolve_object): Fix the creation of the signature in 
15491         the SignatureHelper case.
15492
15493         * assembly.c (mono_assembly_remap_version): Fix binary search.
15494         
15495 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
15496  
15497         * class.c: Added inheritance check when a method is overloaded (from a
15498         virtual method or when implementing an interface) and when a class is
15499         inherited. Added functions to set a failure for a class and to 
15500         retreive the exception from a failure.
15501         * class-internals.h: Added fields to MonoClass to keep the exception
15502         information status for inheritance (or other exceptions) to be thrown
15503         later (i.e. not at load time).
15504         * object.c: Throw the inheritance SecurityException when a type is to 
15505         be created with either class or method inheritance violations.
15506         * reflection.c|h: Fix when getting declsec from a class. Removed 
15507         unrequired code for class. Improved sanity in parameter naming.
15508         * security-manager.c|h: Added functions to check for class and method
15509         inheritance.
15510
15511 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
15512
15513         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
15514         and has_finalize in dynamic types as well.
15515
15516 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
15517
15518         * culture-info-table.h : fixed currency format for en-GB (and so on).
15519
15520 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
15521
15522         * gc.c: ensure the GC handles never have 0 as a value.
15523
15524 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
15525
15526         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
15527         a pointer to a struct to unmanaged code. Fixes #72625.
15528
15529 2005-02-16  Martin Baulig  <martin@ximian.com>
15530
15531         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
15532
15533 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
15534
15535         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
15536
15537 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
15538
15539         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
15540
15541         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
15542         UnmanagedFunctionPointerAttribute, use it for determining calling convention
15543         etc. Fixes #71471.
15544
15545         * reflection.c (mono_custom_attrs_get_attr): New helper function.
15546
15547         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
15548
15549 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
15550
15551         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
15552         changes to make the current context a field in MonoThread.
15553
15554 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
15555
15556         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
15557         the last change.
15558         
15559         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
15560         extracted from mono_marshal_get_native_wrapper.
15561
15562         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
15563         to create wrappers around native functions.
15564
15565         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
15566         delegates for arbitrary function pointers. Fixes #71472.
15567
15568 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15569
15570         * threads.c: cleaned up the code a little.
15571
15572 2005-02-15  Martin Baulig  <martin@ximian.com>
15573
15574         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
15575         the data table.
15576
15577         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
15578         allocate larger chunks if needed.
15579
15580 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
15581
15582         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
15583         in by mistake.
15584
15585 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
15586
15587         * domain.c: keep the domains in an array and ensure the domain ids
15588         are kept small, so they can be used as indexes to domain-specific data
15589         with a small memory overhead.
15590
15591 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
15592
15593         * icall.c: Handle byref types in Type icalls. Fixes #72544.
15594
15595 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
15596
15597         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
15598
15599 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
15600
15601         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
15602
15603         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
15604         values.
15605
15606         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
15607         
15608 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
15609
15610         * domain-internals.h: add the hashtable here.
15611
15612         * class-internals.h: Remove `info' from MonoMethod
15613
15614         * domain.c: Add a new hashtable, jit_trampoline_hash
15615
15616 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15617
15618         * object.c: don't set the value of static fields
15619         (fixes bug#72494).
15620
15621 2005-02-11  Martin Baulig  <martin@ximian.com>
15622
15623         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
15624         (mono_debug_add_method): Silently ignore the method if it's too big.
15625         (mono_debug_add_type): Likewise.
15626
15627 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
15628
15629         * threads.c, appdomain.c: remove #ifdefs from the code.
15630
15631 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
15632
15633         * metadata-internals.h: Added flags to MonoAssembly to cache the most
15634         common security informations. This allows us to stay in unmanaged code
15635         when doing LinkDemand and it's special cases (except for the first 
15636         time for initialization). The flags a very much used with --security.
15637         * reflection.c|h: Added code to get declarative security attributes 
15638         for LinkDemand and InheritanceDemand. This required to refactor the
15639         existing code for Demand.
15640         * security-manager.c|h: Added new method fields for the special cases
15641         of LinkDemand.
15642
15643 2005-02-10  Martin Baulig  <martin@ximian.com>
15644
15645         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
15646         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
15647
15648 2005-02-10  Martin Baulig  <martin@ximian.com>
15649
15650         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
15651         debugging code; this is almost a complete rewrite.
15652
15653         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
15654
15655 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15656
15657         * domain.c, object.h: expose mono_string_equal () and 
15658         mono_string_hash ().
15659         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
15660         it's implemented in managed code.
15661
15662 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15663
15664         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
15665         lo leak objects between appdomains.
15666
15667 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15668
15669         * assembly.c: old compilers compilation fix from 
15670         robertj@gmx.net (Robert Jordan).
15671
15672 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
15673
15674         * class-internals.h: Little reminder for the future.
15675
15676         * debug-helpers.c: Fix up wrapper_type_names
15677
15678 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15679
15680         * image.c, metadata-internals.h: when loading an image from a file,
15681         mmap all of it and use the same codepaths as when using a
15682         in-memory image: the code is simpler and we use less memory
15683         (both writable and readonly).
15684
15685 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
15686
15687         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
15688         API to alloc runtime data structures that need to be tracked by the
15689         GC and contain pointers.
15690         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
15691         make the code more readable and eventually use a different GC.
15692
15693 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
15694
15695         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
15696         for out arguments.
15697         
15698 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
15699
15700         * object.c: In release_type_locks(), don't release the cctor lock
15701         if it has already been released. This fixes a crash in the
15702         thread5 test.
15703
15704 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15705
15706         * gc.c, marshal.c, icall.c: register a delegate for finalization
15707         only when the native function pointer has been allocated for it.
15708
15709 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15710
15711         * object.c: cleaned up some code, allocate objects that are
15712         pointer free with the atomic malloc variant. Allocate memory
15713         for static data from the mempool if it's pointer-free.
15714         Allocate the bounds array at the end of the array data, when needed.
15715         * object-internals.h, object.h: move a private function in a private
15716         header.
15717         * class.c: handle missing case in tracking references in fields.
15718
15719 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
15720
15721         * class.c, class-internals.h: keep track if a type has
15722         reference fields in either the instance or static fields.
15723
15724 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
15725
15726         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
15727         and renamed to MonoRuntimeInfo. Added fields to store the expected
15728         framework assembly version. Changed mono_get_framework_version and
15729         mono_get_runtime_version for a single mono_get_runtime_info method.
15730         
15731         * assembly.c: Added method to remap system assembly versions to the
15732         current executing runtime version. Removed old mapping code.
15733         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
15734         
15735         * icall.c, reflection.c: Track api changes.
15736
15737 2005-02-06  Miguel de Icaza  <miguel@novell.com>
15738
15739         * loader.c (method_from_memberref): Improve error reporting,
15740         produce the class name instead of the typeref/typedef index. 
15741
15742 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
15743
15744         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
15745
15746 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15747
15748         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
15749         stdcall and charset name mangling.  Reorganize the code and add
15750         some tracing stuff.
15751
15752 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
15753
15754         * monodiet.c: More iters!
15755
15756         * marshal.c: Iter usage.
15757
15758         * icall.c: Iter usage.
15759
15760         * object.c: Use iters.
15761
15762         * debug-helpers.c: More iters
15763
15764 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15765
15766         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
15767         under win32.
15768
15769 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
15770
15771         * mono-debug-debugger.c: use iters
15772
15773         * class.c, class-internals.h: mono_class_setup_events is static
15774         now
15775
15776         * All callers: use iters
15777
15778 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15779
15780         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
15781         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
15782
15783 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15784
15785         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
15786
15787         * marshal.h: Add prototypes for ldfld/stfld_remote.
15788
15789         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
15790         this is called during startup.
15791         
15792 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
15793
15794         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
15795         MonoThreadsSync struct private in monitor.c. Changed the way
15796         MonoThreadsSync is allocated so it's faster and there is no
15797         need to keep track of it with a finalizer and it uses less memory.
15798         This also finally allows us to allocate mono objects as ptrfree when
15799         there are no reference fields.
15800
15801 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
15802
15803         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
15804         disappearing link to the GC interface and use them to simplify
15805         the gchandles code.
15806
15807 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15808
15809         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
15810         stfld_remote which call mono_load/store_field_new. This allows methods
15811         calling ldfld/stfld wrappers to be AOTed.
15812
15813         * console-io.c: Include sys/filio.h under solaris.
15814         
15815         * console-io.c: Include curses.h if needed correctly.
15816
15817 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15818         
15819         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
15820         method->klass as well.
15821
15822         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
15823
15824         * class.c (mono_class_init): Switch on lazy initialization of 
15825         methods.
15826
15827         * class.c (mono_class_get_finalizer): Handle the case when the 
15828         finalizer is inherited.
15829
15830 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15831
15832         * console-io.c: <curses.h> is needed by term.h on solaris.
15833
15834 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
15835
15836         * icall.c, class-internals.h, monodiet.c, class.c: Remove
15837         mono_class_setup_properties where possible. Remove this ftn from
15838         the header file, and make it static.
15839
15840 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15841
15842         * loader.c: Add missing setup_... call.
15843
15844         * class.c: Add missing setup_... calls.
15845
15846         * class.c (mono_class_init): Switch on lazy initialization of 
15847         the generic vtable.
15848         
15849         * class.c (mono_class_init): Fix generics broken by the recent changes.
15850
15851         * monodiet.c (handle_type): Add missing setup_... calls.
15852
15853         * class.c: Back out garbage in previous patch.
15854         
15855         * class.c: Add missing setup_... calls.
15856
15857         * class.c (mono_class_get_method_from_name_flags): Avoid calling
15858         mono_class_setup_methods () if possible.
15859
15860         * class-internals.h (MonoClass): Add 'has_cctor' flag.
15861
15862         * class-internals.h (MonoCachedClassInfo): New structure.
15863
15864         * class.c: Initialize properties and events fields of MonoClass lazily.
15865
15866         * class.c: Add infrastructure for lazily initializing the methods and
15867         vtable fields of MonoClass. Not yet used.
15868
15869         * class.c (mono_class_get_finalizer): New helper function.
15870
15871         * class.c: Add infrastructure for loading some class related data from
15872         an AOT file.
15873
15874         * object.c: Add infrastructure for initializing the vtable from data
15875         in the AOT file.
15876
15877         * gc.c (run_finalize): Use mono_class_get_finalizer ().
15878
15879         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
15880         appropriate initialization function before accessing parts of the
15881         MonoClass structure.
15882
15883         * marshal.c: Fix warnings.
15884         
15885         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
15886
15887         * mono-debug-debugger.c (get_exception_message): Use 
15888         mono_class_get_method_from_name_flags ().
15889
15890 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
15891
15892         * reflection.c, appdomain.c: Replace a few manual searches that
15893         Zoltan missed. (Paolo approved this part of my initial patch).
15894
15895 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
15896
15897         * profiler.c: disable recording statistical events at report time.
15898
15899 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15900
15901         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
15902         to byteswap arrays of enum values, too (bug #72080).
15903
15904 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
15905
15906         * appdomain.c (set_domain_search_path): Allow this to be called if
15907         domain->setup is not yet set.
15908
15909         * loader.c (mono_method_get_index): New helper function.
15910
15911         * loader.c reflection.c: Use mono_method_get_index ().
15912
15913         * class.c (mono_class_get_method_from_name_flags): New helper method.
15914
15915         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
15916         this.
15917
15918         * class.c (mono_class_get_cctor): New helper method.
15919
15920         * string-icalls.c object.c class.c marshal.c reflection.c: Use
15921         mono_class_get_method () to look up methods.
15922
15923 2005-02-01  Miguel de Icaza  <miguel@novell.com>
15924
15925         * console-io.c: Fix the build, this should work on Windows.
15926
15927 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
15928
15929         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
15930         be set to null to keep things valid
15931
15932 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15933
15934         * icall.c: added Console 2.0 icalls.
15935         * Makefile.am: added console-io.[ch]
15936         * console-io.[ch]: internal calls for Console 2.0 API.
15937
15938 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15939
15940         * class.c: make sure we consider all the interfaces
15941         when calculating max_interface_id (bug found by
15942         Jeroen Frijters running ikvm).
15943
15944 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
15945
15946         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
15947         valuetype fields to null.
15948
15949         * object.c (set_value): Ditto. Fixes #71669.    
15950
15951 2005-01-31  Martin Baulig  <martin@ximian.com>
15952
15953         * metadata.c (mono_metadata_has_generic_params): New public
15954         function; checks whether something is a generic method.
15955
15956 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
15957
15958         * appdomain.c: fix infinite recursion when adding assemblies.
15959
15960 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
15961
15962         * object.c: Fix small typo to return all items for Environment.
15963         GetCommandLineArgs.
15964
15965 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15966
15967         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
15968         reflection.c: more domain and assembly-unload related fixes
15969         and memory leaks plugs.
15970
15971 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
15972
15973         * 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.
15974
15975 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
15976
15977         * loader.c (mono_method_signature): Make this method lazy
15978         (mono_get_method_from_token): Don't computate the signature here.
15979
15980         Doing this saves quite a bit of memory. I got 90 kb on starting up
15981         monodoc. It should also save some disk reads on startup.
15982
15983         * *: MonoMethod->signature might be NULL now. You *MUST* use
15984         mono_method_signature.
15985
15986 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
15987
15988         * object.c (mono_runtime_get_main_args): Return an array from the
15989         current domain here. Fixes #71938.
15990
15991 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
15992
15993         * monitor.c: formatting changes to comply with the
15994         mono coding style and remove #ifdefs from the code.
15995
15996 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15997
15998         * metadata.c, private.h: remove some unneeded data
15999         and use a more compact representation for table schemas.
16000
16001 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
16002
16003         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
16004         to get a better distribution in hash tables.
16005         * *.c: use mono_aligned_addr_hash() where appropriate.
16006         * assembly.c: make var static.
16007
16008 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
16009
16010         * domain-internals.h: Put MonoJitInfo on a diet.
16011
16012         * domain.c: Fix a warning.
16013
16014 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
16015
16016         * gc.c: rework the gc handles code to reuse handles
16017         when freed.
16018
16019 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
16020
16021         * domain.c: fixed long standing bug in mono_string_equal() which
16022         was brought to light with the ldstr changes.
16023
16024 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
16025
16026         * reflection.c: Remove warning by adding missing include for marshal.h
16027
16028 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
16029
16030         * domain.c, object.c: change the ldstr_table to hold
16031         MonoString* as keys: makes the runtime isinterned lookup
16032         faster and simplifies memory management.
16033
16034 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
16035  
16036         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
16037         possible to add imperative security checks before calling the icall.
16038         * reflection.c: Return security attributes on the original MonoMethod
16039         (and not the wrapped one). This fix permissions on icalls.
16040
16041 2005-01-25  Dick Porter  <dick@ximian.com>
16042
16043         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
16044         the check for mktime() support actually test the mktime() return
16045         value.  "Fixes" bug 71682, though the output is still different to
16046         MS.
16047
16048 2005-01-25  Martin Baulig  <martin@ximian.com>
16049
16050         * class.c (mono_class_is_assignable_from): Make this work for
16051         generic instances.
16052
16053 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
16054
16055         * marshal.c (mono_string_utf8_to_builder)
16056         (mono_string_builder_to_utf16): We might not have ownership of the
16057         string. In thise case, we need to create a new buffer.
16058
16059         * object-internals.h (mono_stringbuilder_capacity): sb->str might
16060         be null, in which case, use the default capacity.
16061
16062 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
16063
16064         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
16065         GC events to the profiler.
16066
16067 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
16068
16069         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
16070         if you don't want the GC to run.
16071
16072 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
16073
16074         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
16075         start providing a GC API and keeping different implementations in
16076         their own file.
16077         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
16078
16079 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
16080
16081         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
16082         mmap rather than allocating a huge buffer.
16083         (mono_debug_close_mono_symbol_file): Free the buffer allocated
16084         above.
16085
16086 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
16087
16088         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
16089         and CheckExecutionRights.
16090         * reflection.c|h: Keep the index of the declarative security to be 
16091         used, instead of the pointer, when AOT compiler is used. Also add 
16092         class initialization when requesting demands.
16093         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
16094         CheckExecutionRights. Both properties are now FALSE by default, and
16095         unmodifiable, unless the --security option is used.
16096
16097 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
16098
16099         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
16100         reflection.c: properly refcount images and assemblies, many leaks fixed.
16101
16102 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16103
16104         * threadpool.c: increase the timeout for threads in the thread pool to
16105         10s.  Fixes bug #67159.
16106
16107 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
16108
16109         * class-internals.h: Sun's compiler insists on explicit
16110         signed on bit fields to handle then correctly.
16111
16112 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16113
16114         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
16115         Make the size of the array fit only the number of invalid path
16116         chars that we have.
16117
16118         * class.c (_mono_class_get): Improve the error reporting when a
16119         class referenced is not found, to assist debugging. 
16120
16121 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
16122
16123         * threads.c: fix off-by-one error.
16124         * domain.c: free data allocated in the domain.
16125
16126 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
16127
16128         * reflection.c (mono_method_body_get_object): Fill out exception info
16129         as well.
16130
16131         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
16132         structure.
16133         
16134 2005-01-19  Martin Baulig  <martin@ximian.com>
16135
16136         * loader.c (mono_get_method_constrained): Make this work again.
16137
16138 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
16139
16140         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
16141         guint16 to match the managed side.
16142
16143         * reflection.c (mono_reflection_body_get_object): Fill out local
16144         variables array.
16145
16146         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
16147         as well.
16148
16149         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
16150         'local_var_sig_token'.
16151
16152 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
16153
16154         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
16155         System.Drawing.
16156
16157         * reflection.c (mono_method_body_get_object): Handle abstract and
16158         runtime methods.
16159
16160 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
16161
16162         * marshal.c, loader.c, class-internals.h, reflection.c:
16163         store the emthod data for a wrapper in an array instead of a list.
16164
16165 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
16166
16167         * marshal.c: change the code to allocate memory more
16168         conservatively for method wrappers.
16169
16170 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
16171
16172         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
16173         fields from MonoClass to the marshal info structure where they belong.
16174
16175 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
16176
16177         * class.c, object.c, class-internals.h, marshal.c: rearrange
16178         some fields and tweak some types to lower memory usage.
16179
16180 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
16181
16182         * threads.c (signal_thread_state_change): Handle the case when the
16183         target thread is the current thread.
16184
16185         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
16186
16187         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
16188         emit_ptr_to_object_conv. 
16189
16190         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
16191         marshalling. Fixes #71352.
16192
16193 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
16194
16195         * metadata.h, blob.h: move table enum to blob.h so it can be included
16196         in any header.
16197         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
16198         cut the size of MonoImage/MonoDynamicImage.
16199
16200 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
16201
16202         * profiler.c (mono_profiler_install_simple): Fix default arguments.
16203
16204 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
16205
16206         * reflection.c, reflection.h, icall.c: add a function to check
16207         if an attribute type is defined for a metadata object.
16208
16209 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
16210
16211         * object-internals.h: Added some needed fields from StringBuilder class.
16212         * marshal.c: Set the maxCapacity when creating a StringBuilder.
16213
16214 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
16215
16216         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
16217         threads before shutting down the runtime.
16218
16219         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
16220
16221 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
16222
16223         * object-internal.h, threads.c: implement stacksize and 
16224         parameterized thread start functionality (requires
16225         matching corlib). Marked broken code for later removal.
16226
16227 2005-01-12  Martin Baulig  <martin@ximian.com>
16228
16229         * class-internals.h (MonoGenericClass): Moved the `initialized'
16230         flag to MonoDynamicGenericClass, removed `init_pending'.
16231         (MonoGenericInst): Added `is_reference' flag.
16232
16233 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
16234
16235         * reflection.c (mono_image_create_pefile): Only set the pe_offset
16236         inside the MSDOS header. Fixes #71201.
16237
16238         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
16239         gc thread.
16240         (mono_domain_finalize): Ditto.
16241
16242 2005-01-12  Martin Baulig  <martin@ximian.com>
16243
16244         * class.c (mono_get_shared_generic_class): Use the cache for
16245         non-dynamic generic classes.
16246
16247         * class-internals.h (mono_class_create_generic_2): Removed
16248         function prototype, this function is now static inside class.c.
16249
16250         * class.c (mono_class_create_generic_2): Made this static, only
16251         call it from mono_class_init() and mono_class_setup_parent().
16252         (collect_implemented_interfaces_aux): Call mono_class_init() on
16253         the interfaces we collect.
16254         (mono_class_setup_vtable): Call mono_class_init (class->parent).
16255
16256 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
16257
16258         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
16259         it a real thread handle.
16260
16261         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
16262         MonoJitExceptionInfo, since each catch clause needs its own variable.
16263         
16264 2005-01-11  Dick Porter  <dick@ximian.com>
16265
16266         * image.c (mono_pe_file_open): New variant on mono_image_open()
16267         that does not set up the CLI metadata; used for FileVersionInfo so
16268         it can get the data for windows binaries too.
16269         
16270         * process.c (process_read_string_block): Don't read off the end of
16271         the StringTable block.
16272
16273         These both fix bug 70766.
16274
16275 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
16276
16277         * gc.c: set some fields to NULL at GC cleanup time.
16278         * threads.c: if we quit the main thread, call exit ().
16279
16280 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
16281
16282         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
16283
16284 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
16285
16286         * threads.h, threads.c, object.c: added accessor and settor for
16287         main_thread. Handle it specially when exiting from it: wait
16288         for other foreground threads to exit.
16289
16290 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
16291
16292         * process.c, verify.c: remove some bloat.
16293
16294 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
16295
16296         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
16297         the calling convention to cdecl under win32.
16298
16299 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
16300
16301         * object.c (mono_object_get_size): New function to get the size of
16302         an object instance.
16303
16304         * profiler.c (simple_allocation): Use above.
16305
16306 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
16307
16308         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
16309         ves_icall_System_AppDomain_getRootDomain (as it's not required to
16310         get an appdomain by it's id and we can't assume the root's id is 0).
16311         * domain-internals.h: Change the function prototype to match.
16312         * icall.c: Change the icall table for AppDomain.
16313
16314 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
16315
16316         * locales.c (string_invariant_compare_char): Only compute
16317         GUnicodeTypes in the case where we need them.  Test for ordinality
16318         first and return if so.
16319
16320         From the commit:
16321
16322                 /*
16323                  * FIXME: here we must use the information from c1type and c2type
16324                  * to find out the proper collation, even on the InvariantCulture, the
16325                  * sorting is not done by computing the unicode values, but their
16326                  * actual sort order.
16327                  */
16328
16329 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
16330
16331         * loader.c: for P/Invoke methods, allow the "Internal" shared
16332         library name to refer to the calling process symbol namespace.
16333
16334 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
16335
16336         * Makefile.am: Add the security manager to the build.
16337         * security-manager.c|h: New. Initialization of the security manager.
16338
16339 2005-01-07  Dick Porter  <dick@ximian.com>
16340
16341         * threads.c: 
16342         * monitor.c: Update thread state during Monitor and WaitHandle
16343         waits.  Fixes bug 71031.
16344
16345 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
16346
16347         * reflection.c (property_encode_signature): Correctly handle when the
16348         property has no methods.
16349
16350 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
16351
16352         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
16353         
16354         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
16355         fields from mb, not rmb. Fixes #71017.
16356
16357         * marshal.c (emit_ptr_to_str_conv): Add support for 
16358         ByValTStr -> string conversion. Fixes #71015.
16359
16360         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
16361
16362         * mempool.c (mono_mempool_contains_addr): New helper function.
16363
16364 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
16365
16366         * metadata.c (mono_metadata_compute_size): Fix size calculation of
16367         HasSematics encoded fields.
16368         
16369         * metadata.c (mono_type_to_unmanaged): Improve error message for 
16370         invalid string marshalling.
16371
16372         * metadata.c: Fix warnings.
16373         
16374 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
16375
16376         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
16377         profiler support.
16378
16379 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
16380
16381         * domain.c object.c domain-internals.h: Revert part of r38077 since the
16382         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
16383         tests.
16384
16385 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
16386
16387         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
16388         so methods containing these can be AOTed.
16389
16390 2005-01-03  Martin Baulig  <martin@ximian.com>
16391
16392         * loader.c (find_method): Removed the hack for generic instances.
16393         (method_from_memberref): If our parent is a generic instance, pass
16394         its generic type definition to find_method() and then inflate the
16395         method.
16396         (mono_get_method_constrained): Pass the generic type definition to
16397         find_method() and inflate the method later.
16398
16399         * class-internals.h (MonoStats): Added `generic_class_count'.
16400
16401         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
16402         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
16403
16404         * reflection.c (mono_custom_attrs_from_params): Don't ignore
16405         generic type definitions.
16406
16407 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
16408
16409         * loader.c icall.c: Fix warnings.
16410
16411 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
16412
16413         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
16414         blittable types. Fixes #70864.
16415
16416 2004-12-29  Martin Baulig  <martin@ximian.com>
16417
16418         * icall.c
16419         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
16420
16421         * reflection.c (mono_method_get_object): Create a
16422         "System.Reflection.MonoGenericMethod" for inflated methods; don't
16423         call mono_get_inflated_method().
16424
16425         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
16426
16427 2004-12-27  Martin Baulig  <martin@ximian.com>
16428
16429         * class-internals.h (MonoMethod): Added `is_inflated' flag.
16430         (MonoMethodInflated): Added `inflated' field.
16431
16432         * class.c (mono_class_inflate_generic_method): Don't really
16433         inflate the method here; just set the `is_inflated' flag in the
16434         MonoMethod.
16435         (mono_class_get_inflated_method): Actually inflate the method here
16436         if it's not already inflated; we use the MonoMethodInflated's new
16437         `inflated' field as a cache.
16438
16439 2004-12-26  Martin Baulig  <martin@ximian.com>
16440
16441         * class.c
16442         (inflate_generic_class): Moved some code out of inflate_generic_type().
16443         (mono_class_inflate_generic_method): If we're already inflated,
16444         inflate the context and use the declaring method; ie. make sure
16445         the declaring method of an inflated method is always the generic
16446         method definition.
16447         (mono_class_create_from_typedef): Create
16448         `class->generic_container->context->gclass'.
16449
16450 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
16451
16452         * metadata-internals.h, marshal.c, reflection.c: More
16453         MonoGHashTable->GHashTable.
16454
16455         * domain-internals.h, class.c: Change MonoGHashTable's into
16456         GHashTables for some cases where no gc stuff is used
16457
16458         All users: update apis
16459
16460 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
16461
16462         * metadata.c (builtin_types): Make this `const'. Makes this get
16463         put into the shareable section.
16464         (mono_metadata_init): Casts to make gcc happy.
16465
16466 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
16467
16468         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
16469
16470 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
16471
16472         * icall.c: Added an internal call to retrieve the position and length
16473         of assembly-level declarative security attributes (RequestMinimum, 
16474         RequestOptional and RequestRefuse). This is used by the Assembly class
16475         to re-create the corresponding permission sets.
16476
16477 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
16478
16479         * marshal.c: fix the stelemref wrapper to be type correct
16480         (and faster).
16481
16482 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
16483
16484         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
16485         to do key & 0x7fffffff. Hashtable already does this. It just
16486         results in longer code.
16487
16488 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
16489
16490         * appdomain.c: Bump corlib version.
16491         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
16492         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
16493         * reflection.c|h: Add functions to get declarative security infos
16494         (blob position and length) for assemblies, classes and methods.
16495
16496 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
16497
16498         * reflection.c: sort the constant table (bug #70693).
16499
16500 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
16501
16502         * object-internals.h, threads.c, domain.c: add accessors for
16503         the MonoThread and MonoDomain tls keys.
16504
16505 2004-12-18  Martin Baulig  <martin@ximian.com>
16506
16507         * class.c (inflate_generic_type): If we're inflating a generic
16508         instance, set `ngclass->context->container = context->container';
16509         ie. the container we inflated into.
16510
16511         * metadata.c (mono_metadata_parse_generic_param): Reflect above
16512         inflate_generic_type() changes.
16513
16514 2004-12-17  Martin Baulig  <martin@ximian.com>
16515
16516         * class-internals.h
16517         (MonoGenericClass): Replaced `MonoType *generic_type' with
16518         `MonoClass *generic_class'.  Removed `dynamic_info'; if
16519         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
16520         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
16521
16522 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
16523
16524         * exception.c (mono_exception_from_token): New helper function.
16525
16526 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
16527
16528         * assembly.c (mono_assembly_load_with_partial_name): Call 
16529         mono_assembly_loaded before invoking the preload hooks. Fixes
16530         #70564.
16531
16532         * object-internals.h (MonoThread): Change culture_info and 
16533         ui_culture_info into an array.
16534
16535         * threads.c: Cache culture info objects from more than one appdomain.
16536
16537         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
16538         current UI culture.
16539
16540 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
16541
16542         * threads.h threads.c appdomain.c: Clear the culture_info field of
16543         all threads during unloading if they point to an object in the dying
16544         appdomain.
16545
16546 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
16547
16548         * culture-info.h (TextInfoEntry): New struct
16549         * object-internals.h: sync with managed
16550         * locales.c: fill the `text_info_data' field
16551         * culture-info-tables.h: update
16552
16553 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
16554
16555         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
16556         collector.
16557
16558 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
16559
16560         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
16561         (ves_icall_ModuleBuilder_getMethodToken): Ditto
16562
16563 2004-12-12  Martin Baulig  <martin@ximian.com>
16564
16565         * mono-debug-debugger.c (write_type): If we're an enum and the
16566         builtin types have already been initialized, call mono_class_init().
16567
16568 2004-12-11  Martin Baulig  <martin@ximian.com>
16569
16570         * metadata.c (mono_metadata_load_generic_params): Added
16571         `MonoGenericContainer *parent_container' argument; automatically
16572         compute `container->is_method'; pass the correct owner to
16573         get_constraints().      
16574
16575         * reflection.c (compare_genericparam): Sort the GenericParam table
16576         according to increasing owners. 
16577
16578 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
16579
16580         * profiler.c: allow disabling the default profiler.
16581
16582 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
16583
16584         * decimal.c, icall.c: allow disabling System.Decimal support.
16585
16586 2004-12-09  Marek Safar <marek.safar@seznam.cz>
16587
16588         * reflection.c: Add support for null attribute arguments.
16589
16590 2004-12-09  Martin Baulig  <martin@ximian.com>
16591
16592         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
16593         names to get rid of compiler warnings.
16594
16595 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16596
16597         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
16598         mono_marshal_load_type_info (). Fixes #69625.
16599         (mono_marshal_get_ptr_to_struct): Likewise.
16600
16601 2004-12-08  Martin Baulig  <martin@ximian.com>
16602
16603         * mono-debug.h: Bumped version number to 47.
16604
16605         * mono-debug-debugger.c
16606         (mono_debugger_event_handler, mono_debugger_event): Take two
16607         guint64 arguments insteed of a gpointer and a guint32.  
16608
16609 2004-12-08  Martin Baulig  <martin@ximian.com>
16610
16611         * debug-mono-symfile.h
16612         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
16613         `address' to `native_offset'.
16614
16615 2004-12-08  Martin Baulig  <martin@ximian.com>
16616
16617         * class.c (mono_class_create_from_typespec): Only inflate if we
16618         either have `context->gclass' or `context->gmethod'.
16619
16620 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16621
16622         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
16623
16624         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
16625
16626         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
16627
16628         * reflection.c (mono_assembly_get_object): Remove the workaround put
16629         in for the release.
16630         
16631         * appdomain.c: Use the corlib_internal field from MonoAssembly.
16632
16633         * appdomain.c: Bump corlib version.
16634
16635         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
16636         be visible in other appdomains.
16637
16638 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
16639
16640         * threads.c: Interlocked inc and dec for longs were messed up,
16641         use a KISS based impl for this. Fixes 70234
16642
16643 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
16644
16645         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
16646
16647 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
16648
16649         * icall.c: fix to follow policy not to allow struct
16650         arguments in icalls.
16651
16652 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16653
16654         * process.c: make the patch that handles spaces in file paths work
16655         on mono/windows too.
16656
16657 2004-12-06  Martin Baulig  <martin@ximian.com>
16658
16659         * class.c (mono_class_create_generic): Call
16660         mono_class_setup_supertypes() if we're dynamic.
16661         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
16662
16663 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
16664
16665         * object-internals.h: Add new fields to MonoThread.
16666
16667         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16668
16669         * icall.c threads-types.h threads.c: Add new icalls.
16670
16671         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
16672
16673         * object-internals.h (MonoReflectionAssembly): Sync object layout with
16674         managed side.
16675
16676         * appdomain.c: Bump corlib version.
16677
16678         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
16679         internal assemblies. Fixes #69181.
16680
16681 2004-12-05  Martin Baulig  <martin@ximian.com>
16682
16683         * class.c (mono_class_inflate_generic_signature): Make this a
16684         no-op if `context' is NULL or we don't have any type parameters;
16685         also copy `sentinelpos'.        
16686
16687 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
16688
16689         * image.c: Add unbox_wrapper_cache.
16690
16691         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
16692
16693         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
16694         function generator.
16695         
16696         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
16697         Fixes #70173.
16698
16699         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
16700         
16701 2004-12-04  Martin Baulig  <martin@ximian.com>
16702
16703         * loader.c (mono_method_get_signature_full): New public function;
16704         like mono_method_get_signature(), but with an additional
16705         `MonoGenericContext *' argument.
16706
16707         * class.c (mono_class_inflate_generic_signature): Formerly known
16708         as inflate_generic_signature(); make this public.
16709
16710 2004-12-04  Martin Baulig  <martin@ximian.com>
16711
16712         * metadata.c
16713         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
16714         instead of a `MonoGenericContainer *'.  
16715         (mono_metadata_parse_array_full): Likewise.
16716         (mono_metadata_parse_signature_full): Likewise.
16717         (mono_metadata_parse_method_signature_full): Likewise.
16718         (mono_metadata_parse_generic_inst): Likewise.
16719         (mono_metadata_parse_generic_param): Likewise.
16720         (mono_metadata_parse_mh_full): Likewise.
16721         (mono_type_create_from_typespec_full): Likewise.
16722
16723 2004-12-03  Martin Baulig  <martin@ximian.com>
16724
16725         * class-internals.h (MonoGenericContainer): Replaced the
16726         `MonoGenericContext * pointer with a `MonoGenericContext'
16727         structure and made it the first element.
16728
16729 2004-12-03  Martin Baulig  <martin@ximian.com>
16730
16731         * class.c
16732         (inflate_generic_type): Set the `context->container' when creating
16733         a new MonoGenericContext.
16734         (mono_class_inflate_generic_method): Likewise.
16735         (mono_class_create_from_typespec): Just use `context->container'
16736         to get the container.
16737
16738         * loader.c (method_from_methodspec): Set `context->parent' from
16739         `context->container' - and if that's a method container, use its
16740         parent.  Also set the `context->container' when creating a new
16741         MonoGenericContext.
16742         (mono_get_method_from_token): Use just `context->container' to get
16743         the container.
16744
16745         * metadata.c (do_mono_metadata_parse_generic_class): Also set
16746         `gclass->context->container'.
16747
16748         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
16749         the `context->container' when creating a new MonoGenericContext.
16750
16751 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
16752
16753         * reflection.c (compare_genericparam): Sort params with identical
16754         owner by their number. Fixes gen-111 on sparc.
16755
16756 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16757
16758         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
16759         around the domain changes.
16760
16761         * appdomain.c (mono_domain_unload): Handle the case when the thread
16762         calling Unload is itself being aborted during unloading. Fixes #70022.
16763
16764         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
16765
16766         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
16767         checkpoint_func as an icall so it gets a wrapper.
16768         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
16769         in the cross-appdomain wrappers too.
16770
16771         * threads.c (mono_thread_has_appdomain_ref): Make this public.
16772
16773         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
16774
16775         * reflection.c: Fix some memory leaks.
16776         
16777 2004-12-02  Martin Baulig  <martin@ximian.com>
16778
16779         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
16780
16781         * metadata.c (generic_class_cache): New static hashtable.
16782         (mono_metadata_lookup_generic_class): New public method.
16783
16784 2004-12-02  Martin Baulig  <martin@ximian.com>
16785
16786         * class.c (mono_class_create_from_typedef): Call
16787         mono_class_setup_parent() and mono_class_create_mono_type() before
16788         parsing the interfaces.
16789
16790 2004-12-02  Martin Baulig  <martin@ximian.com>
16791
16792         * metadata.c (generic_inst_cache): New static hashtable.
16793         (mono_metadata_lookup_generic_inst): New public function.
16794         (mono_metadata_inflate_generic_inst): New public function.
16795         (mono_metadata_parse_generic_inst): New public function.
16796         (do_mono_metadata_parse_generic_class): Use the new
16797         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
16798         since this'll also use the cache.
16799
16800         * reflection.c (mono_reflection_bind_generic_method_parameters):
16801         Use mono_metadata_lookup_generic_inst() to use the new cache.
16802
16803         * class.c (inflate_mono_type): Use
16804         mono_metadata_inflate_generic_inst() to inflate a generic
16805         instance; this'll also use the new cache.
16806
16807         * loader.c (method_from_methodspec): Use
16808         mono_metadata_parse_generic_inst() and
16809         mono_metadata_inflate_generic_inst() rather than parsing it
16810         manually, so we can use the new cache.
16811
16812 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16813
16814         * threads.c (wait_for_tids): Do not incorrectly free threads when 
16815         the wait times out.
16816
16817 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16818
16819         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
16820         iter->args based on whether parameters are passed in registers (i.e.
16821         MONO_ARCH_REGPARMS is defined)
16822
16823 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
16824
16825         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
16826         the exception message. Fixes #70070.
16827         (method_from_methodspec): Fix warnings.
16828
16829 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16830
16831         * process.c: (complete_path) return the path quoted
16832
16833 2004-12-01  Martin Baulig  <martin@ximian.com>
16834
16835         * class-internals.h (MonoGenericInst): New structure.
16836         (MonoGenericClass): Replaced `type_argc', `type_argv' and
16837         `is_open' with `MonoGenericInst *inst'.
16838         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
16839         `is_open' with `MonoGenericInst *inst'.
16840
16841 2004-11-30  Martin Baulig  <martin@ximian.com>
16842
16843         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
16844
16845         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
16846         to `generic_class_cache'.
16847
16848         * metadata.c
16849         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
16850         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
16851         (mono_generic_inst_is_valuetype): Renamed to
16852         mono_generic_class_is_valuetype().
16853
16854         * class-internals.h
16855         (MonoGenericInst): Renamed to MonoGenericClass.
16856         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
16857         (MonoClass): Renamed `generic_inst' to `generic_class'.
16858         (MonoGenericContext): Renamed `ginst' to `gclass'.
16859
16860         * object-internals.h
16861         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
16862
16863         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
16864         mono_reflection_generic_class_initialize().
16865
16866         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
16867         now known as "System.Reflection.MonoGenericClass".
16868         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
16869
16870 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
16871
16872         * class-internals.h: Added a flag field to MonoClass to cache the
16873         declarative security attributes actions associated with the class.
16874         * domain-internals.h: Added booleans to MonoJitInfo to cache the
16875         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
16876         applicable to the JITted method.
16877         * reflection.c|h: Added functions to extract (as flags) which security
16878         actions are available (declaratively) for a method, class or assembly.
16879         * metadata.c|h: Added functions to search the declarative security
16880         table in the metadata.
16881         
16882 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
16883
16884         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
16885         EXPORTEDTYPES are already in the class name cache, so there is no
16886         need to add extra code here to look at them. Just removes a bit of
16887         cruft.
16888
16889         (ves_icall_System_Environment_get_TickCount): No need for #if
16890         WINDOWS. We already have the code in io-layer.
16891
16892 2004-11-28  Martin Baulig  <martin@ximian.com>
16893
16894         * loader.c
16895         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
16896         Fixes gen-112.cs.
16897
16898 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
16899
16900         * assembly.c (do_mono_assembly_open): Instead of having a
16901         conditional WITH_BUNDLE, incorporate support for bundles here, by
16902         having a global `bundles' variable holding a pointer to the actual
16903         bundles. 
16904
16905         (mono_register_bundled_assemblies): New API call used by the
16906         bundle code. 
16907
16908         See mkbundle.1 for details.
16909         
16910 2004-11-27  Martin Baulig  <martin@ximian.com>
16911
16912         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
16913         the vtable for generic methods.
16914
16915 2004-11-26  Martin Baulig  <martin@ximian.com>
16916
16917         * metadata.c
16918         (mono_metadata_generic_method_hash): New public function.
16919         (mono_metadata_generic_method_equal): Likewise.
16920
16921         * class-internals.h
16922         (MonoGenericContainer): Added `GHashTable *method_hash'.
16923
16924         * reflection.c (ReflectionMethodBuilder): Added
16925         `MonoGenericContainer *generic_container'.
16926         (reflection_methodbuilder_to_mono_method): Don't create a new
16927         MonoGenericContainer each time we're called.
16928         (mono_reflection_bind_generic_method_parameters): Use
16929         `container->method_hash' to cache the results so we don't create a
16930         different method if we're called several times with the same
16931         arguments.
16932
16933         * loader.c (method_from_methodspec): Use the new
16934         `container->method_hash' here, too.
16935
16936 2004-11-26  Martin Baulig  <martin@ximian.com>
16937
16938         * class.c (inflate_generic_signature): Correctly compute
16939         `res->has_type_parameters'.
16940         (mono_class_vtable): Use the `has_type_parameters' flag to
16941         determine whether we're a generic method.
16942
16943         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
16944
16945 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
16946
16947         * object.c (mono_runtime_run_main): Fix a small memory leak.
16948
16949 2004-11-25  Martin Baulig  <martin@ximian.com>
16950
16951         * class.c (set_generic_param_owner): Fixed the loop.
16952
16953 2004-11-25  Martin Baulig  <martin@ximian.com>
16954
16955         * object.c (mono_class_vtable): Don't create any JIT wrappers for
16956         generic methods.
16957
16958 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
16959
16960         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
16961         names. Fixes #69787.
16962
16963 2004-11-24  Martin Baulig  <martin@ximian.com>
16964
16965         * class.c (mono_class_create_generic_2): If we don't have a
16966         `ginst->parent', inflate `gklass->parent' to get our parent.
16967
16968 2004-11-24  Martin Baulig  <martin@ximian.com>
16969
16970         * reflection.c (compare_genericparam): Correctly sort the
16971         GenericParam table; fixes #69779.
16972
16973 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
16974
16975         * reflection.c: When writing a PE file, don't create a huge
16976         buffer in memory. Just write the arrays we have to the file.
16977         This reduces memory usage.
16978
16979         * metadata-internals.h: MonoDynamicStream pefile is no longer used
16980         globally.
16981
16982 2004-11-17  Martin Baulig  <martin@ximian.com>
16983
16984         * class.c (mono_class_init): Don't setup `class->parent' for
16985         dynamic instances; moved this to mono_class_generic_2().
16986         (mono_class_create_generic): Also set `klass->inited' for dynamic
16987         generic instances.
16988         (mono_class_create_generic_2): Don't do anything for dynamic
16989         generic instances.  Set `klass->parent' here and also call
16990         mono_class_setup_parent() here. 
16991
16992         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
16993         `MonoType *parent' argument; set `ginst->parent' before calling
16994         mono_class_create_generic_2(), so we set the correct parent.
16995
16996 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
16997
16998         * reflection.c: allow getting attributes from ModuleBuilder
16999         (used by ikvm).
17000
17001 2004-11-17  Martin Baulig  <martin@ximian.com>
17002
17003         * class.c (mono_class_create_from_typedef): If a type parameter is
17004         inherited from an outer class, set its owner to that class.
17005
17006 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
17007
17008         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
17009           for (int*) written size. This fixes bug #69592.
17010
17011 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
17012
17013         * icall.c: Added IsAuthenticodePresnet internal call.
17014         * image.c|h: New function that check a MonoImage for an Authenticode
17015         signature in the certificate PE data directory.
17016         * security.c|h: New internal call to ask the runtime if an 
17017         Authenticode signature seems referenced in the PE header.
17018
17019 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
17020
17021         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
17022
17023         * reflection.c (mono_image_create_pefile): Free the assembly streams
17024         after writing out the assembly file.
17025
17026         * object.c (mono_runtime_run_main): Fix small memory leak.
17027
17028         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
17029         property access modifiers. Fixes #69389.
17030
17031 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
17032
17033         * domain.c, object.c, object-internals.h, domain-internals.h,
17034         object.h, marshal.c: keep dynamic code info per domain.
17035
17036 2004-11-15  Martin Baulig  <martin@ximian.com>
17037
17038         * class.c (mono_type_get_name_recurse): Put type arguments in
17039         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
17040         see bug #68387.
17041
17042 2004-11-15  Martin Baulig  <martin@ximian.com>
17043
17044         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
17045         (mono_class_setup_vtable): When computing `the_cname' for a
17046         generic instance, don't include the namespace since we'd otherwise
17047         add it twice.
17048
17049 2004-11-15  Martin Baulig  <martin@ximian.com>
17050
17051         * class.c (mono_class_create_generic): Changed return type to void.
17052         (mono_class_create_generic_2): New public function; setup
17053         `class->method', `class->field' and `class->interfaces' here
17054         instead of in mono_class_init().
17055
17056         * class.h (mono_class_create_generic): Moved to class-internals.h.
17057
17058 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
17059
17060         * reflection.c (mono_image_create_pefile): take a file HANDLE.
17061         rather than writing to memory, write to this file. Right now,
17062         we are just writting into a buffer, and copying that. However
17063         we can avoid the buffer later.
17064
17065         (mono_dynamic_stream_reset): new function
17066
17067         * icall.c, object-internals.h: update for the above.
17068
17069 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
17070
17071         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
17072         have been using gc'd memory. First it is slower, unlikely
17073         the comment in the source code said, secondly, it increases
17074         our footprint to do it in the gc.
17075
17076         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
17077         the method so that it does not have to copy to managed code.
17078
17079 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
17080
17081         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
17082
17083 2004-11-12  Martin Baulig  <martin@localhost>
17084
17085         * reflection.c (mono_image_create_token): Allow generic method
17086         definitions here, since they may appear in an `.override'; see
17087         gen-98/gen-99 for an example.
17088
17089 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
17090
17091         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
17092         #69365.
17093
17094         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
17095         descriptive.
17096
17097 2004-11-11  Martin Baulig  <martin@ximian.com>
17098
17099         * class.c (mono_class_setup_vtable): In an explicit interface
17100         implementation, the method name now includes the arity.
17101
17102 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
17103
17104         * object.c (mono_array_full_copy): Fix warning.
17105
17106 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
17107
17108         * appdomain.c: Removed look_for_method_by_name(). Use the new method
17109         mono_class_get_method_from_name() instead.
17110         
17111         * class-internals.h: Added two new types of wrappers. 
17112         Added MonoRemotingTarget enum. Added new trampoline function type, which
17113         takes an additional MonoRemotingTarget value as parameter, so it is
17114         possible to request a trampoline for a specific target.
17115         
17116         * class.c: Added new mono_class_get_method_from_name() method.
17117         
17118         * class.h: In MonoRemoteClass, we can have now to vtables, one for
17119         general remoting sinks and one specific for cross domain calls.
17120         
17121         * debug-helpers.c: Added new wrapper names.
17122         
17123         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
17124         of a remote class.
17125         
17126         * image.c: Porperly delete value objects form the remoting invoke hashtable.
17127         
17128         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
17129         with several other methods (mono_marshal_get_xappdomain_dispatch,
17130         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
17131         and others) can generate a fast remoting wrapper for cross domain calls.
17132         More information can be found in docs/remoting.
17133         Other changes: Removed mono_find_method_by_name, and used
17134         mono_class_get_method_from_name instead.
17135         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
17136         is stored in the remoting invoke hashtable.
17137         
17138         * marshal.h: published the new method for getting the xdomain wrapper,
17139         and also added a method for getting the adequate wrapper for a given
17140         method and target.
17141         
17142         * object-internals.h, object.c: Added a couple of methods for capying and
17143         cloning arrays.
17144         Modified mono_install_remoting_trampoline, which takes the new remoting
17145         trampoline that has a remoting target as parameter.
17146         mono_class_proxy_vtable now also takes a remoting target as parameter, and
17147         will return the most suitable vtable for the target.
17148         Added mono_remote_class_vtable, which returns the vtable of a remote class
17149         (which can be the normal remoting vtable or the xdomain vtable).
17150         
17151         * threads.c: the xdomain invoke and dispatch wrappers must also be
17152         protected against interruptions.
17153
17154 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17155
17156         * icall.c: use memmove in BlockCopyInternal when the source and
17157         destination arrays are the same.
17158
17159 2004-11-09  Martin Baulig  <martin@ximian.com>
17160
17161         * class-internals.h (MonoGenericContainer): Removed `method' and
17162         `signature', replaced them with `is_method' and `is_signature'
17163         flags.  Added `context'.
17164
17165         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
17166         instead of a `MonoGenericContainer *'.
17167
17168         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
17169         for dynamic type parameters.
17170         (mono_metadata_load_generic_params): Setup `container->context'.
17171
17172         * reflection.c (mono_reflection_setup_generic_class): Setup
17173         `tb->generic_container->context'.
17174         (do_mono_reflection_bind_generic_parameters): Use
17175         mono_class_inflate_generic_type() to correctly inflate types,
17176         rather than using our own hack just for MONO_TYPE_VAR.
17177
17178 2004-11-09  Martin Baulig  <martin@ximian.com>
17179
17180         * class.c (mono_class_inflate_generic_method): Small fix; don't
17181         crash here.
17182
17183         * icall.c
17184         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
17185         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
17186         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
17187         (ves_icall_Type_BindGenericParameters): Likewise.
17188         (ves_icall_Type_get_IsGenericInstance): Likewise.
17189         (ves_icall_Type_GetGenericParameterPosition): Likewise.
17190         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
17191         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17192         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17193
17194 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
17195
17196         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
17197         assembly versions and public key tokens. Fixes #69113.
17198
17199 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
17200
17201         * metadata.c: fix bug introduced with the type cache changes
17202         on 2004-11-06.
17203
17204 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
17205
17206         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
17207         the MonoClass pointer instead of the token in exception clauses.
17208         * reflection.c: updates for the above and make the code not depend
17209         on the structure of MonoExceptionClause.
17210
17211 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
17212
17213         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17214         Add support for dynamic assemblies. Fixes #69114.
17215
17216         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
17217
17218 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
17219
17220         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
17221         since most only those methods use it. the code member of
17222         MonoMethodPInvoke was dead, so that can be removed too. Also,
17223         remove inline_count (again, not used), and move slot so that it
17224         can share bits with some other flags. This saves 8 bytes in the
17225         structure and gives us about 50 kb back for mcs helloworld.cs
17226
17227         * *.[ch]: Do naming changes for the above.
17228
17229         * loader.c (mono_method_get_header): Lazily init the header
17230         on first access.
17231         (mono_get_method_from_token): don't init the header here
17232         (mono_free_method): the header may never be allocated
17233
17234         Overall, this saves 150 kb of unmanaged allocations
17235         for mcs helloworld.cs. That accounts for 10% of the unmanaged
17236         memory at runtime.
17237         
17238         * loader.c, loader.h (mono_method_get_header): new accessor.
17239
17240         * *.[ch]: use the above method. Prepares us to lazily load
17241         the header.
17242
17243         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
17244         three warnings, which are actual bugs (see 69206).
17245
17246         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
17247         unused. Saves a cool 4 bytes / method.
17248
17249 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
17250
17251         * metadata.c (builtin_types): Add types for System.Object here.
17252         (mono_metadata_parse_type_full): Cache MonoType*'s that are
17253         for a class or valuetype from klass->this_arg or klass->byval_arg.
17254
17255         On mcs for a hello world, this gets us down from 21836 MonoType's
17256         to 14560.
17257
17258         (mono_metadata_free_type): Account for the above change.
17259
17260 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
17261
17262         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
17263         exception instead of asserting if name is null.
17264         (ves_icall_System_AppDomain_GetData): Ditto.
17265
17266 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
17267
17268         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
17269         EnumBuilder.
17270
17271         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
17272         Return NULL when the domain does not have entry_assembly set.
17273
17274         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
17275         Add a 'resource_modules' argument.
17276         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
17277
17278         * reflection.c (mono_reflection_create_runtime_class): Move setting
17279         of wastypebuilder here, so mono_get_type_object () returns a MonoType
17280         for enums too.
17281
17282         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
17283         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
17284         Throw an ArgumentNullException if 'ptr' is null.
17285
17286         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
17287         assemblies here. Fixes #69020.
17288
17289 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
17290
17291         * reflection.c (build_compressed_metadata): Fix the previous patch for
17292         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
17293         the stack.
17294
17295 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
17296
17297         * assembly.c (mono_assembly_names_equal): Allow a match if one of
17298         the cultures is false. Fixes #69090.
17299
17300         * reflection.c (build_compressed_metadata): Fix invalid memory read 
17301         detected by valgrind.
17302         
17303         * reflection.c (mono_reflection_get_type): Avoid triggering a 
17304         TypeResolve multiple times for the same type. Fixes #65577.
17305
17306 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
17307
17308         * marshal.c: Avoid using ldftn to call managed functions. It is
17309         much slower than just a call.
17310
17311         * reflection.c (mono_module_get_object): free the basename we
17312         allocate here from glib.
17313         
17314         * reflection.c (ensure_runtime_vtable): make sure to free
17315         overrides.  Also, we were allocating an array of MonoMethod not an
17316         array of MonoMethod*.
17317
17318         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
17319
17320         * image.c (mono_image_close): free image->guid here.
17321
17322 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
17323
17324         * reflection.c: Fix some spec conformance issues with the PE file
17325         structures so mcs compiled apps run on the Net 2.0 beta.
17326
17327 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
17328
17329         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
17330         Implement this. Fixes #67264.
17331
17332         * debug-helpers.h debug-helpers.c marshal.c: Move 
17333         mono_find_method_by_name to debug-helpers.c.
17334
17335 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
17336
17337         * object.c (mono_release_type_locks): type_initialization_hash is
17338         a GHashTable.
17339
17340         * reflection.c object.c object-internals.h: Fix warnings.
17341
17342         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
17343         without accessors. Fixes #61561.
17344
17345         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
17346         application base from the root domain if not set. Fixes #65641.
17347         (mono_runtime_init): Fix warning.
17348
17349 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17350
17351         * appdomain.c: call mono_thread_pool_init.
17352         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
17353         of worker threads based on the number of CPUs and the environment
17354         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
17355         for non-windows (windows) systems.
17356
17357 2004-10-27  Chris Toshok  <toshok@ximian.com>
17358
17359         * mono-debug-debugger.c (write_class): don't call mono_class_init
17360         here, as even with the check for (!klass->init_pending), we get
17361         into a situation where we're hitting cycles in class
17362         initialization.  Fixes #68816.
17363
17364 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
17365
17366         * image.c: Avoid overwriting values in the loaded_images_hash when an
17367         assembly is loaded multiple times. Fixes #61152.
17368
17369         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
17370         so multiple satellite assemblies for the same name can be loaded.
17371         Fixes #68259.
17372
17373         * mono_domain_assembly_preload: Actually return the loaded assembly, 
17374         not NULL.
17375
17376         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
17377         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
17378
17379         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
17380         pending finalizers are not invoked after the appdomain has been 
17381         unloaded. Fixes #67862.
17382
17383 2004-10-22  Martin Baulig  <martin@ximian.com>
17384
17385         * mono-debug-debugger.c
17386         (mono_debugger_runtime_invoke): Don't box valuetypes.
17387
17388 2004-10-22  Chris Toshok  <toshok@ximian.com>
17389
17390         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
17391         don't hide private methods.
17392
17393 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
17394
17395         * icall.c: Allows the runtime to "share" (when known) the public key
17396         token of an assembly. This avoid the need to recalculate the token 
17397         (from the public key) in managed code.
17398
17399 2004-10-21  Chris Toshok  <toshok@ximian.com>
17400
17401         * debug-helpers.c (append_class_name): argh, revert last patch.
17402         
17403 2004-10-21  Chris Toshok  <toshok@ximian.com>
17404
17405         * debug-helpers.c (append_class_name): use '+' as the delimiter,
17406         not '/', so that it matches what the debugger uses to look up
17407         methods.
17408
17409 2004-10-21  Martin Baulig  <martin@ximian.com>
17410
17411         * mono-debug-debugger.c (mono_debugger_throw_exception): New
17412         public method; this is called each time an exception is thrown and
17413         allows the debugger to use exception catch points.
17414
17415 2004-10-21  Martin Baulig  <martin@ximian.com>
17416
17417         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
17418         the stack pointer and the exception object in some struct and pass
17419         that to the debugger.
17420
17421 2004-10-21  Chris Toshok  <toshok@ximian.com>
17422
17423         * mono-debug-debugger.c (do_write_class): add instance/static
17424         event support.  We don't expose "raise" or "other" yet.
17425         (event_is_static): new method.
17426
17427 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
17428
17429         * mono-debug-debugger.c
17430         (mono_debugger_handle_exception): Remove
17431         bogus return value for fussy compilers.
17432
17433 2004-10-20  Martin Baulig  <martin@ximian.com>
17434
17435         * mono-debug-debugger.c
17436         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
17437         (mono_debugger_handled_exception): Likewise.
17438
17439 2004-10-20  Martin Baulig  <martin@ximian.com>
17440
17441         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17442         MONO_DEBUGGER_EVENT_EXCEPTION.
17443
17444         * mono-debug-debugger.c (mono_debugger_handle_exception): New
17445         public function to send the debugger a notification for an
17446         exception and inform it about a catch/finally clause.
17447
17448 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
17449
17450         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
17451         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
17452         fix 2.95 build. 
17453
17454         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
17455
17456 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
17457
17458         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
17459         marshalled as [In,Out]. Fixes #58325.
17460
17461 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
17462
17463         * reflection.c (mono_method_body_get_object): Implement some fields.
17464
17465 2004-10-12  Martin Baulig  <martin@ximian.com>
17466
17467         * reflection.c (mono_reflection_bind_generic_parameters): Small
17468         fix, correctly retrieve our parent from a generic instance.
17469
17470 2004-10-12  Martin Baulig  <martin@ximian.com>
17471
17472         * metadata.c (mono_metadata_generic_param_equal): We always have
17473         an owner.
17474
17475         * class.c
17476         (mono_class_from_generic_parameter): We need to have an owner.
17477         (my_mono_class_from_generic_parameter): Likewise.
17478
17479         * reflection.c (mono_reflection_setup_generic_class): Renamed to
17480         mono_reflection_create_generic_class() and added a new
17481         mono_reflection_setup_generic_class().  
17482         (mono_reflection_initialize_generic_param): If we're a nested
17483         generic type and inherited from the containing class, set our
17484         owner to the outer class.
17485
17486 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
17487
17488         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
17489
17490         * reflection.c (mono_method_body_get_object): New function to create
17491         a MethodBody object.
17492
17493         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
17494
17495 2004-10-11  Martin Baulig  <martin@ximian.com>
17496
17497         * metadata.c (_mono_metadata_type_equal): Renamed to
17498         do_mono_metadata_type_equal() and made static.
17499
17500 2004-10-11  Martin Baulig  <martin@ximian.com>
17501
17502         * appdomain.c: Bump corlib version number to 28.
17503
17504 2004-10-10  Martin Baulig  <martin@ximian.com>
17505
17506         * class-internals.h
17507         (MonoGenericInst): Added `MonoGenericContainer *container'.
17508         (MonoGenericMethod): Likewise.
17509         (MonoGenericContext): Likewise.
17510         (MonoGenericParam): Added `MonoGenericContainer *owner'.
17511
17512         * metadata.c
17513         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
17514         (do_mono_metadata_parse_generic_inst): Likewise.
17515         (mono_metadata_parse_type_full): New public method.  This is the actual
17516         mono_metadata_parse_type() implementation - with an additional
17517         `MonoGenericContainer *' argument.
17518         (mono_metadata_parse_array_full): Likewise.
17519         (mono_metadata_parse_signature_full): Likewise.
17520         (mono_metadata_parse_method_signature_full): Likewise.
17521         (mono_metadata_parse_mh_full): Likewise.
17522         (mono_type_create_from_typespec): Likewise.
17523         (mono_metadata_interfaces_from_typedef_full): New public method;
17524         this is similar to the other _full() methods, but we take a
17525         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
17526         (mono_metadata_parse_generic_param): Take an additional
17527         `MonoGenericContainer *' argument and lookup the MonoGenericParam
17528         from that container.
17529         (mono_metadata_generic_param_equal): New static method to compare
17530         two type parameters.
17531         (_mono_metadata_type_equal): New static method; takes an
17532         additional `gboolean signature_only' argument - if true, we don't
17533         compare the owners of generic parameters.
17534         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
17535         with a TRUE argument - do a signature-only comparision.
17536
17537         * loader.c: Use the new _full() methods and pass the
17538         MonoGenericContainer to them.
17539
17540         * object-internals.h (MonoReflectionTypeBuilder): Added
17541         `MonoGenericContainer *generic_container' field.
17542         (MonoReflectionMethodBuilder): Likewise.
17543
17544 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
17545
17546         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
17547         case initial images of dynamic assemblies.
17548
17549         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
17550
17551         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
17552
17553         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
17554         length of event->other array.
17555         (typebuilder_setup_events): Ditto.
17556
17557         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
17558         'assembly_by_name' and add an 'assemblies' list.
17559
17560         * assembly.h assembly.c: Add a new search hook for determining whenever
17561         an assembly is already loaded. Use this instead of searching in the
17562         loaded_assemblies list.
17563
17564         * domain.c appdomain.c: Implement the new search hook so loaded 
17565         assemblies are now scoped by appdomain. Fixes #67727.
17566
17567 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
17568
17569         * threads.c (mono_thread_attach): Initialize synch_lock field so
17570         mono_thread_detach works again.
17571
17572         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
17573         'lib' too. Fixes #63130.
17574
17575 2004-10-06  Jackson Harper  <jackson@ximian.com>
17576
17577         * culture-info-tables.h: regenerated.
17578
17579 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
17580
17581         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
17582         implemented by other interfaces in the result. Fixes #65764.
17583         
17584         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17585         Handle unloadable modules without crashing.
17586
17587         * image.c (load_modules): Revert the previous patch since modules must
17588         have a fixed index inside the array.
17589         
17590         * image.c (load_modules): Don't include native modules in the modules
17591         array.
17592
17593 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
17594
17595         * reflection.h: Add param_defaults field.
17596
17597         * reflection.c: Add support for parameter defaults in dynamic methods.
17598         Fixes #64595.
17599
17600         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
17601         an empty string when a type has no namespace. Fixes #64230.
17602
17603 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
17604
17605         * tabledefs.h: Added "internal" security actions to support non-CAS
17606         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
17607         Note: they do not seems to be used anymore in 2.0 (new metadata format)
17608
17609 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
17610
17611         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
17612         constructor of abstract class. Fixes #61689.
17613
17614 2004-10-04  Martin Baulig  <martin@ximian.com>
17615
17616         * class-internals.h (MonoGenericContainer): New type.
17617         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
17618         `MonoGenericContainer *generic_container'.
17619         (MonoClass): Replaced `gen_params' and `num_gen_params' with
17620         `MonoGenericContainer *generic_container'.
17621
17622         * metadata.c (mono_metadata_load_generic_params): Return a
17623         `MonoGenericContainer *' instead of a `MonoGenericParam *';
17624         removed the `num' argument.
17625
17626 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
17627
17628         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
17629         for dynamic images.
17630
17631         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
17632         machine fields.
17633
17634         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
17635
17636         * reflection.c: Save pe_kind and machine values into the generated
17637         image file.
17638
17639         * appdomain.c: Bump corlib version number.
17640
17641         * object-internals.h: Reorganize layout of LocalBuilder.
17642
17643         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
17644         New helper function.
17645
17646         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
17647         created MonoType for dynamic types. Fixes #66180.
17648
17649 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
17650
17651         * threadpool.c: the ares hashtable needs a critical section around it.
17652         this prevents some nasty segfaults
17653
17654 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
17655
17656         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
17657         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
17658         bug 67324).
17659         
17660 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
17661
17662         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
17663         
17664 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
17665
17666         * image.c: Always canonicalize image file names, to avoid loading
17667         the same assembly twice when referenced using a relative path.
17668
17669 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
17670
17671         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
17672
17673         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
17674
17675         * marshal.c: Fix warnings.
17676
17677 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
17678
17679         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
17680         attempting to marshal the delegate_trampoline as the method_addr.
17681         This patch has a static hashtable of marshalled delegates so that 
17682         we can map delegate_trampoline addresses back to delegates.  This
17683         allows a delegate passed to managed code to be passed back into native
17684         code.  Fixes #67039
17685
17686 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
17687
17688         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
17689
17690         * reflection.c (method_encode_code): Align method headers properly.
17691         Fixes #66025.
17692
17693 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
17694
17695         * marshal.c: In the runtime invoke wrapper, reset the abort
17696         exception if it is cached. This avoids the automatic rethrowal of 
17697         the exception after the catch of the wrapper. Also check for pending
17698         interruptions before calling the managed method. This is done using
17699         the new method emit_thread_force_interrupt_checkpoint, since the
17700         normal checkpoint method is ignored when running the invoke wrapper.
17701         * object.c: If the abort exception is rethrown, set the abort_exc
17702         field of the thread, so it will be rethrown aftere every catch.
17703         * threadpool.c: Only run an interruption checkpoint if what has been
17704         requested is a stop of the thread (aborts will be ignored).
17705         * threads.c: By default, a thread will now never be interrumped while
17706         running the runtime invoke wrapper (this ensures that runtime_invoke
17707         will always return to the caller if an exception pointer is provided).
17708         There is a new special method mono_thread_force_interruption_checkpoint()
17709         to force an interruption checkpoint even if running a protected
17710         wrapper, which is used by the same runtime invoke wrapper to do a check
17711         at a safe point.
17712
17713 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
17714
17715         * object.c, object-internals.h: Implemented mono_release_type_locks,
17716         which releases the cctor locks held by a thread.
17717         * threads.c, threads.h: In thread_cleanup, release cctor locks held
17718         by a thread. Added mono_thread_exit() method to be used to safely stop
17719         a thread.
17720
17721 2004-09-28  Raja R Harinath  <rharinath@novell.com>
17722
17723         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17724         Move null check before dereference.  Avoid indexing beyond the end
17725         of the 'modules' array.
17726
17727 2004-09-28  Raja R Harinath  <rharinath@novell.com>
17728
17729         * metadata-internals.h (MonoImage): Add module_count field.
17730         * image.c (load_modules): Set image->module_count.
17731         (mono_image_load_file_for_image): Use image->module_count.
17732         * reflection.c (mono_image_load_module): Append to image->modules array 
17733         of dynamic assembly.
17734         (mono_module_get_object): Fix loop to actually increment index.
17735         Use image->module_count.
17736         * assembly.c (mono_assembly_load_references): Use image->module_count.
17737         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
17738         Likewise.
17739
17740 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
17741
17742         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
17743         Avoid assert on generic types.
17744
17745 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
17746
17747         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
17748
17749         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
17750
17751         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
17752         function to convert a MarshalSpec structure to its managed counterpart.
17753
17754         * reflection.c: Fix warnings.
17755         
17756         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
17757         field.
17758
17759         * icall.c (mono_create_icall_signature): Fix build.
17760
17761 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
17762
17763         * icall.c: Add MakePointType icall.
17764
17765         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
17766         warnings.
17767
17768 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17769
17770         * threadpool.c: reuse allocated slots in the queue.
17771
17772 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
17773
17774         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
17775
17776         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
17777
17778         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
17779         previous change.
17780
17781         * tabledefs.h: Add constants for pinvoke attributes BestFit and
17782         ThrowOnUnmappableChar.
17783
17784         * icall.c (ves_icall_Type_GetPacking): New icall.
17785
17786 2004-09-24  Martin Baulig  <martin@ximian.com>
17787
17788         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
17789
17790 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17791
17792         * appdomain.c:
17793         (mono_domain_set): allow setting a domain that is being unloaded.
17794         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
17795         being unloaded.
17796
17797 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17798
17799         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
17800         the GetCustomAttributes icall.
17801
17802 2004-09-23  Martin Baulig  <martin@ximian.com>
17803
17804         * object-internals.h (MonoReflectionGenericParam): Replaced
17805         'has_ctor_constraint', `has_reference_type' and `has_value_type'
17806         with `guint32 attrs'.
17807
17808 2004-09-23  Martin Baulig  <martin@ximian.com>
17809
17810         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
17811
17812 2004-09-23  Martin Baulig  <martin@ximian.com>
17813
17814         * object-internals.h (GenericParameterAttributes): New enum.
17815
17816 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17817
17818         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
17819         
17820         * class.c (init_events): Fill out event->other field.
17821
17822         * class.c: Fix warnings.
17823
17824         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
17825
17826 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17827
17828         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
17829         walk which doesn't supply the IL offset.
17830
17831 2004-09-22  Martin Baulig  <martin@ximian.com>
17832
17833         * reflection.c (mono_reflection_setup_internal_class): If we're
17834         System.ValueType, System.Object or System.Enum, set
17835         `klass->instance_size' and create the vtable.
17836         (mono_reflection_create_internal_class): If we're an enum type,
17837         get the base class from our current corlib.
17838
17839 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
17840
17841         * reflection.h (MonoResolveTokenError): New type.
17842
17843         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
17844         icall.
17845
17846         * icall.c: Add an 'error' argument to the ResolveToken icalls.
17847
17848 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
17849
17850         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
17851         Support also calling constructors, but only for already allocated objects.
17852
17853 2004-09-17  Geoff Norton <gnorton@customerdna.com>
17854
17855         * reflection.c (type_get_qualified_name): If the klass is null
17856         return the typename to avoid a NullRefEx.
17857         (encode_cattr_value): Get the qualified name of the boxed type,
17858         not the underlying enumtype.  Fixes #62984.
17859
17860 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
17861
17862         * marshal.c: Fix problems with previous checkin.
17863
17864 2004-09-21    <vargaz@freemail.hu>
17865
17866         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
17867         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
17868
17869         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
17870
17871 2004-09-21  Geoff Norton <gnorton@customerdna.com>
17872
17873         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
17874         should only return a type for pointers, arrays, and passbyref types.
17875         Fixes bug #63841.
17876
17877 2004-09-21  Martin Baulig  <martin@ximian.com>
17878
17879         * domain.c (mono_debugger_check_runtime_version): New public
17880         function.
17881
17882         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
17883
17884 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
17885
17886         * reflection.c: Added missing sort to the declarative security 
17887         attributes table. MS implementation stops seeing the attributes if the
17888         token number regress in the table (as shown by ildasm and permview).
17889
17890 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
17891
17892         * object-internals.h (MonoReflectionModule): Add 'token' field.
17893         
17894         * reflection.c (mono_reflection_get_token): Add support for Module
17895         and Assembly.
17896         (mono_module_get_object): Set 'token' field.
17897         (mono_module_file_get_object): Set 'token' field.
17898
17899         * icall.c: Add new Assembly and Module icalls.
17900
17901         * appdomain.c: Bump corlib version.
17902
17903 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
17904
17905         * loader.h loader.c class.h class.c: Add helper functions for obtaining
17906         tokens of metadata objects.
17907
17908         * reflection.h reflection.c (mono_reflection_get_token): New function
17909         to obtain the token of a metadata object.
17910
17911         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
17912
17913 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
17914
17915         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
17916         
17917         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
17918
17919 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
17920
17921         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
17922         * object-internals.h: Added 3 MonoArray* members to MonoReflection
17923         AssemblyBuilder to access the permissions set in the class lib.
17924         * reflection.c: Added security attributes encoding step in 
17925         mono_image_build_metadata.
17926         * tabledefs.h: Added new security actions defined in 2.0:
17927         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
17928
17929 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17930
17931         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
17932         macro parameter.
17933
17934 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17935  
17936         * locales.c: nullify the ICU_collator member of CompareInfo when it is
17937           finalized. There where random SIGSEVs at program termination, when
17938           an object being finalized was trying to do a string comparison and
17939           the current culture was already finalized.
17940  
17941 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17942
17943         * threads.c: call thread_cleanup before finishing the thread if we get
17944         there.
17945
17946 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
17947
17948         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
17949         assemblies from the parent. Fixes #65665.
17950
17951 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
17952
17953         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
17954         modifiers.
17955
17956 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
17957
17958         * reflection.h: add prototype for mono_get_dbnull_object
17959         * reflection.c: add prototypes for get_default_param_value_blobs 
17960         and mono_get_object_from_blob for fussier compilers
17961
17962 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
17963  
17964         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
17965         false deadlock checks in class initialization.
17966  
17967 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
17968
17969         * image.c (mono_image_addref): Fix comment.
17970
17971         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
17972         possible.
17973
17974 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
17975
17976         * reflection.c (mono_param_get_objects): Modified to return
17977         ParameterInfo.DefaultValue object.
17978
17979         (get_default_param_value_blobs):
17980         (mono_get_object_from_blob):
17981         (mono_get_dbnull_object): New helper routines. 
17982
17983         * object.c (mono_get_constant_value_from_blob): New helper routine
17984         carved out from get_default_field_value ()
17985
17986         * object-internals.h (mono_get_constant_value_from_blob): Added
17987         function declaration.
17988
17989 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
17990
17991         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
17992         referenced assemblies. Fixes #62135.
17993
17994         * exception.h exception.c (mono_get_exception_file_not_found2): New
17995         helper function.
17996
17997 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
17998
17999         * class.h class.c: Add mono_type_get_underlying_type ().
18000
18001 2004-09-09  Geoff Norton <gnorton@customerndna.com>
18002
18003         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
18004         Fix GetTypes() to support dynamically created assemblies.
18005
18006 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
18007
18008         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
18009         
18010         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
18011         previous patch.
18012
18013         * reflection.h reflection.c loader.c: Allow dynamic construction of
18014         pinvoke methods. Fixes #65571.
18015         
18016         * reflection.c (mono_reflection_get_type): Revert previous change since
18017         it causes regressions.
18018
18019 2004-09-08  Martin Baulig  <martin@ximian.com>
18020
18021         * class.c (class_compute_field_layout): Don't call
18022         mono_class_layout_fields() for open generic instances.
18023
18024 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
18025         * threads.c appdomain.c: fix typo in GC macro
18026
18027 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18028
18029         * threads.c: don't call mono_thread_detach() in start_wrapper(),
18030         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
18031
18032 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
18033
18034         * image.c (mono_image_close): Applied patch from 
18035         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
18036         assembly is loaded multiple times from data.
18037         
18038         * image.c (mono_image_open): Fix warning.
18039
18040 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
18041
18042         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
18043         once. Fixes #58334.
18044         
18045         * reflection.c (mono_reflection_create_runtime_class): Initialize
18046         klass->nested_classes. Fixes #61224.
18047
18048 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
18049
18050         * threads.c: sched_yield() on exit, to allow threads to quit.
18051
18052 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
18053
18054         * object.c (mono_unhandled_exception): Remove leftover debug code.
18055
18056 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
18057
18058         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
18059
18060 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
18061
18062         * marshal.c (emit_marshal_array): Really null terminate string arrays.
18063         
18064         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
18065
18066 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
18067
18068         * marshal.c (emit_marshal_array): Null terminate string arrays.
18069         
18070         * marshal.c (raise_auto_layout_exception): Fix warning.
18071
18072         * reflection.c (mono_param_get_objects): Initialize the default value
18073         with DBNull.Value, not null. Fixes #62123.
18074
18075 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
18076
18077         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
18078         throw an exception with a cute explanation.
18079
18080 2004-09-06  Dick Porter  <dick@ximian.com>
18081
18082         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
18083         Close the new process's thread handle, as we don't use it.  The
18084         handle stays around forever otherwise.
18085
18086 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
18087
18088         * object.c (arith_overflow): Fix warning.
18089
18090         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
18091         calling conventions in method refs. Fixes #65352.
18092
18093         * reflection.c: Fix warnings.
18094
18095 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
18096
18097         * icall.c: Add a new icall for Array.Clear
18098
18099 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
18100
18101         * object.c: When allocating an array, we have to throw
18102         an overflow exception if any of the lengths are < 0.
18103
18104 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
18105
18106         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
18107         properly. Also move implementation of string array marshalling to 
18108         managed code. Fixes #42316.
18109
18110 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18111
18112         * assembly.c: provide more information when loading an assembly fails.
18113
18114 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18115
18116         * filewatcher.c: don't expect the development fam package to be
18117         installed.
18118
18119 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
18120
18121         * marshal.c: Make a copy of the signature cookie since it will be
18122         freed by the caller.
18123         
18124         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
18125
18126         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
18127
18128         * metadata.c (mono_metadata_free_marshal_spec): New function to free
18129         marshal specs.
18130
18131         * marshal.c: More refactoring.
18132         
18133         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
18134         smaller functions.
18135
18136 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
18137
18138         * object.c: In mono_message_invoke, fill the output parameter array after
18139           calling the managed method (it was done before the call). This fixes
18140           bug #59299.
18141
18142 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
18143
18144         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
18145         as well.
18146
18147 2004-09-02  Martin Baulig  <martin@ximian.com>
18148
18149         * class.c (mono_class_instance_size): Don't allow generic type
18150         definitions or open generic instances.
18151         (mono_class_array_element_size): If we're a value type, call
18152         mono_class_instance_size() on the original class.
18153
18154         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
18155         handle generic instances.
18156
18157         * mono-debug-debugger.c (write_type): Handle generic instances
18158         like classes.
18159
18160 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
18161
18162         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
18163         the allocation request fails. Fixes #65089.
18164
18165         * object.c (mono_runtime_free_method): Do not call mono_free_method.
18166         
18167         * object.c (mono_runtime_free_method): New function to free a dynamic
18168         method.
18169
18170         * marshal.c (mono_delegate_free_ftnptr): New function to free the
18171         delegate trampoline.
18172
18173         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
18174         with hasthis as dynamic,
18175
18176         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
18177
18178         * domain.c (mono_jit_info_table_remove): New function to remove an
18179         entry from the jit info table.
18180
18181         * class-internals.h (MonoMethod): Add 'dynamic' field.
18182
18183         * loader.c: Fix warnings.
18184
18185 2004-09-01  Martin Baulig  <martin@ximian.com>
18186
18187         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
18188         instead of mono_debugger_lock() because the latter one is a no-op
18189         unless running in the debugger.
18190
18191 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
18192
18193         * class.c (class_compute_field_layout): Classes with auto-layout or
18194         reference fields are not blittable.
18195         
18196 2004-09-01  Dick Porter  <dick@ximian.com>
18197
18198         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
18199         mono_image_get_filename() to get the assembly location.
18200
18201         * icall.c:
18202         * metadata.h: Fix compile warnings
18203
18204 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
18205
18206         * class.c (class_compute_field_layout): System.Object is blittable.
18207
18208         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
18209         as in/out. Fixes #59909.
18210
18211 2004-09-01  Martin Baulig  <martin@ximian.com>
18212
18213         * metadata.h (MONO_TYPE_ISREFERENCE): Call
18214         mono_metadata_generic_inst_is_valuetype() if we're a generic
18215         instance to check whether our underlying type is a reference type.
18216
18217 2004-09-01  Martin Baulig  <martin@ximian.com>
18218
18219         * metadata.c (mono_type_size): If we're a generic instance, call
18220         mono_class_value_size() for value types.
18221
18222 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
18223
18224         * marshal.c: Implement more custom marshalling functionality. Fixes
18225         #64915.
18226
18227 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18228
18229         * mono-debug.c, debug-mono-symfile.c: add some locking love.
18230
18231 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
18232
18233         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
18234
18235         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
18236
18237         * icall.c: Fix some warnings.
18238
18239         * threads.c (abort_appdomain_thread): Fix unref errors.
18240         (mono_thread_current): Fix THREAD_DEBUG define.
18241
18242 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
18243
18244         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
18245
18246         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
18247
18248 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
18249
18250         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
18251         string arrays.
18252
18253 2004-08-28  Martin Baulig  <martin@ximian.com>
18254
18255         * metadata.c
18256         (mono_metadata_generic_inst_is_valuetype): New public function.
18257
18258         * metadata.h (MONO_TYPE_ISSTRUCT): Call
18259         mono_metadata_generic_inst_is_valuetype() if we're a generic
18260         instance to check whether our underlying type is a valuetype.
18261
18262 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
18263
18264         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
18265         #63768.
18266
18267 2004-08-25  Martin Baulig  <martin@ximian.com>
18268
18269         * loader.c (mono_get_method_from_token): Abstract methods can also
18270         be generic and thus have type parameters.
18271
18272         * metadata-internals.h
18273         (MonoDynamicImage): Added `GPtrArray *gen_params'.
18274
18275         * reflection.c (mono_image_get_generic_param_info): Don't create a
18276         metadata row, just add an entry to the `gen_params' array.
18277         (build_compressed_metadata): Sort the `gen_params' array and then
18278         actually create the metadata.
18279
18280 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18281
18282         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
18283
18284 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
18285
18286         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
18287
18288 2004-08-24  Martin Baulig  <martin@ximian.com>
18289
18290         * class.cs (mono_class_is_subclass_of): Like an interface, a
18291         generic instance also derives from System.Object.
18292
18293 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
18294
18295         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
18296         custom modifiers to be in any order. Fixes #61990.
18297
18298 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
18299
18300         * object.c: Register mono_object_new_fast icall.
18301         
18302         * object.c (mono_class_get_allocation_ftn): Return to calling
18303         mono_object_new_fast, since it seems faster to compute the object 
18304         size in unmanaged code than passing it as a parameter.
18305
18306         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
18307
18308         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
18309         this function with Boehm as the oom handler, so we don't have to check
18310         the result of GC_malloc.
18311
18312         * object.c: Remove checks for oom.
18313
18314         * object.h object.c (mono_class_get_allocation_ftn): New function to
18315         return the icall which can be used to allocate an instance of a given
18316         class. 
18317
18318         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
18319
18320         * class-internals.h: Add 'enabled' field.
18321
18322 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
18323
18324         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
18325
18326 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
18327         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
18328         value 0x0010.
18329
18330 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
18331
18332         * appdomain.c: use the Tls function for appdomain too,
18333         at Zoltan's request. Actually return in mono_context_get
18334
18335         * appdomain.c, profiler.c, threads.c: use __thread
18336
18337 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
18338
18339         * appdomain.c threads.c: Call GC_CreateThread on windows.
18340
18341         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
18342         multiple libraries since this don't work on windows.
18343
18344 2004-08-18  Martin Baulig  <martin@ximian.com>
18345
18346         * class-internals.h
18347         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
18348         MonoMethodHeader.
18349
18350         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
18351         MonoMethodNormal since we also need it for abstract and interface
18352         methods.
18353
18354         * reflection.c
18355         (build_compressed_metadata): Sort the GenericParam table.
18356         (mono_image_create_token): Added `gboolean create_methodspec'
18357         argument; this is false when generating a MethodImpl token.
18358         (reflection_methodbuilder_to_mono_method): Abstract and interface
18359         methods may also have generic parameters.
18360
18361 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
18362
18363         * appdomain.c: thread local alloc
18364
18365 2004-08-17  Martin Baulig  <martin@ximian.com>
18366
18367         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
18368
18369         * icall.c
18370         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
18371         argument.
18372
18373         * class.c (mono_type_get_full_name): New public function.
18374         (mono_type_get_name): Don't include the type arguments.
18375
18376 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
18377
18378         * Makefile.am: Build static versions of libmetadata and libmonoruntime
18379         for inclusion into the mono executable.
18380
18381 2004-08-16  Martin Baulig  <martin@ximian.com>
18382
18383         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
18384         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
18385
18386 2004-08-14  Martin Baulig  <martin@ximian.com>
18387
18388         * class.c (dup_type): Also copy the `byref' field.
18389
18390 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
18391
18392         * reflection.c (create_dynamic_mono_image): Revert the last change 
18393         since it breaks bootstrap.
18394
18395 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
18396
18397         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
18398
18399         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
18400         not free them with g_free.
18401
18402 2004-08-11  Martin Baulig  <martin@ximian.com>
18403
18404         * reflection.c (mono_reflection_setup_internal_class): Also call
18405         mono_class_setup_mono_type() if we already have a `tb->type.type'.
18406
18407 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
18408
18409         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
18410         called during default (first) AppDomain creation. Keep track of
18411         Evidence when loading assemblies.
18412
18413 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18414
18415         * opcodes.c, opcodes.h: reduce runtime relocations.
18416
18417 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
18418
18419         * culture-info.h, locales.c: fixes and chages to sue the new
18420         optimized format of the locale data.
18421         * culture-info-tables.h: regenerated.
18422
18423 2004-08-06  Geoff Norton <gnorton@customerdna.com>
18424         
18425         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
18426
18427 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
18428
18429         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
18430         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
18431         * domain-internals.h: icall declaration.
18432         * icall.c: icall registration.
18433         * object-internals.h: New fields in MonoAssembly for CAS.
18434
18435 2004-08-05  Duncan Mak  <duncan@ximian.com>
18436
18437         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
18438         CEE_LDELEM_ANY.
18439
18440 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18441
18442         * reflection.c: fix to deal with object[] arrays in custom ctors
18443         (bug #62550).
18444
18445 2004-08-05  Martin Baulig  <martin@ximian.com>
18446
18447         * class.c (mono_class_array_element_size): Added support for
18448         generic instances and correctly handle "recursive" types.
18449
18450 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
18451
18452         * assembly.c: Fix warnings.
18453
18454 2004-08-04  Martin Baulig  <martin@ximian.com>
18455
18456         * class.c
18457         (mono_type_get_name_recurse): Added `gboolean include_arity'
18458         argument specifying whether or not we should include the generic
18459         arity in the type name.
18460         (_mono_type_get_name): New static function.
18461         (mono_class_setup_vtable): If we're a generic instance, don't
18462         include the generic arity in the names of explicit method
18463         implementations.        
18464
18465 2004-08-03  Martin Baulig  <martin@ximian.com>
18466
18467         * class.c (mono_type_get_name_recurse): Enclose the generic type
18468         arguments in `<', '>'.
18469
18470 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18471
18472         * gc.c: make GC warning messages use the trace API, they are just
18473         noise to most of the users.
18474
18475 2004-08-03  Martin Baulig  <martin@ximian.com>
18476
18477         * debug-mono-symfile.c (read_string): Correctly read the string.
18478
18479 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
18480
18481         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
18482         
18483         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
18484         icalls.
18485         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
18486
18487 2004-07-30  Martin Baulig  <martin@ximian.com>
18488
18489         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
18490         Reflect latest symbol writer changes.   
18491
18492 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
18493
18494         * object.c: always create an object if null is passed
18495         to Invoke() where a valuetype is expected.
18496
18497 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
18498
18499         * marshal.c (mono_marshal_init): make managed
18500         signatures match native ones better for 64bits.
18501
18502 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18503
18504         * appdomain.c: hack to build correctly the private bin path on windows.
18505         Fixes bug #61991.
18506
18507 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
18508
18509         * assembly.c: Load mscorlib from the correct framework directory
18510           (mono/<version>/mscorlib.dll).
18511         * appdomain.h: Added prototypes for new functions.
18512         * internals.h: Added some prototypes.
18513         * domain.c: When initializing the runtime, get from the executable and
18514           the configuration files the runtime version that the app supports.
18515           Added support methods for reading app.exe.config. Added list of versions
18516           supported by the JIT. Added two new methods: mono_init_from_assembly,
18517           which initializes the runtime and determines the required version from
18518           the provided exe file, and mono_init_version, which initializes
18519           the runtime using the provided version.
18520         * icall.c: Get machine.config from version-specific directory.
18521         * reflection.c: When generating an image, embed the version number
18522           of the current runtime.
18523
18524 2004-07-28  Dick Porter  <dick@ximian.com>
18525
18526         * socket-io.c
18527         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
18528         returned sockaddr size before creating the remote address object.
18529         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
18530         61608.
18531
18532 2004-07-28  Dick Porter  <dick@ximian.com>
18533
18534         * locales.c (string_invariant_compare_char): Fix invariant char
18535         compares between upper and lower cases.  Fixes bug 61458.
18536
18537 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
18538         
18539         * marshal.c: actually cache stelem.ref wrappers.
18540         
18541 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
18542
18543         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
18544         sections and remove the mono_cli_rva_map () function.
18545
18546 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18547
18548         * debug-mono-symfile.c: fix one more endianess issue, from a patch
18549         by Geoff Norton (<gnorton@customerdna.com>).
18550
18551 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18552
18553         * class.c: fix class loads for pointer types (typeof(int) !=
18554         typeof(int*)).
18555
18556 2004-07-27  Martin Baulig  <martin@ximian.com>
18557
18558         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
18559         reading the debugging information from an external ".mdb" file.
18560
18561 2004-07-24  Martin Baulig  <martin@ximian.com>
18562
18563         * reflection.c (mono_image_get_type_info): Only write a class
18564         layout entry if we actually have a size or a packing size.
18565
18566 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
18567
18568         * reflection.c (type_get_fully_qualified_name): 
18569         insert cast to get type checking of ?: with non-gcc compilers
18570
18571 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
18572
18573         * rand.c: use g_getenv for both lookups of
18574         MONO_EGD_SOCKET
18575
18576 2004-07-17  Martin Baulig  <martin@ximian.com>
18577
18578         * reflection.c (mono_reflection_bind_generic_method_parameters):
18579         Set `gmethod->reflection_info'.
18580
18581 2004-07-17  Martin Baulig  <martin@ximian.com>
18582
18583         * class.c (mono_class_create_from_typedef): Insert the newly
18584         created class into the hash table before computing the interfaces
18585         since we could be called recursively.
18586
18587 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
18588
18589         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
18590         function to implement stelem.ref in managed code
18591         * class-internals.h, debug-helpers.c: a new wrapper type
18592         for the above.
18593
18594 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
18595
18596         * gc.c: allow GC handles to work even when no GC is compiled in.
18597         Fix part of bug #61134 (GetAddrOfPinnedObject).
18598
18599 2004-07-13  Peter Williams  <peter@newton.cx>
18600  
18601         * process.c (complete_path): Make sure we don't attempt to execute
18602         directories.
18603  
18604 2004-07-12  Geoff Norton <gnorton@customerdna.com>
18605
18606         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
18607           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
18608           and will add/subtract the hour if needed
18609
18610 2004-07-12  Martin Baulig  <martin@ximian.com>
18611
18612         * reflection.c (mono_field_get_object): If we have
18613         `field->generic_info', take the attributes from
18614         `field->generic_info->generic_type'.    
18615
18616 2004-07-12  Martin Baulig  <martin@ximian.com>
18617
18618         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
18619         This function must be called before initializing the runtime.
18620         (mono_debug_init_1): New function; call this after initializing
18621         the runtime, but before loading the assembly.  It tells the
18622         debugger to load corlib and the builtin types.
18623
18624         * mono-debug-debugger.c: Did some larger changes in the debugging
18625         code; support recursive class declarations, make sure we actually
18626         add all classes.
18627
18628 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18629
18630         * debug-helpers.c: undo my previous patch and fixed the real issue in
18631         ../mini/exceptions-x86.c
18632
18633 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18634
18635         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
18636         when no HOME env. variable was set and a NullRef was thrown in a .cctor
18637         called from other .cctors.
18638
18639 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
18640
18641         * loader.c: Removed the mono_loader_wine_init hack now that we are
18642         doing a managed version of Windows.Forms.
18643
18644 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
18645
18646         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
18647         threadpool.c, threads.c: remove static data from rootset.
18648
18649 2004-07-09  Dick Porter  <dick@ximian.com>
18650
18651         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
18652         Don't do any more processing if the matched length was 0.  It was
18653         increasing the size of the string before.  Fixes bug 61167.
18654
18655 2004-07-09  Dick Porter  <dick@ximian.com>
18656
18657         * socket-io.h:
18658         * socket-io.c
18659         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18660         Add support for SO_PEERCRED if its available.
18661
18662 2004-07-09  Peter Bartok <pbartok@novell.com>
18663         * loader.c: winelib.exe.so error message is now only displayed if
18664         MONO_DEBUG is set. To help us avoid questions when people are trying
18665         out the new Managed.Windows.Forms.
18666
18667 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
18668
18669         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
18670         for isinst and castclass wrappers.
18671
18672         * class-internals.h icall.c: Move registration and lookup of JIT icalls
18673         to libmetadata from the JIT, so they could be used by the marshalling
18674         code and the interpreter.
18675
18676         * marshal.c: Register marshalling related JIT icalls here instead of
18677         in mini.c. Use CEE_MONO_ICALL instead of the family of 
18678         CEE_MONO_PROC<x> opcodes to call marshalling functions.
18679
18680         * metadata.h: Remove unneeded marshalling conversions.
18681
18682         * opcodes.c: Update for new opcodes.
18683         
18684 2004-07-08  Martin Baulig  <martin@ximian.com>
18685
18686         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
18687         (mono_debug_get_domain_data): Make this function static.
18688
18689 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
18690
18691         * gc.c, object.h: add nice GC handle API for embedders.
18692
18693 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
18694
18695         * reflection.c: more changes for the new api
18696
18697         * object.c: When we reflect on a field w/ a constant value, it
18698         will not have a memory location, so we must access metadata. Also,
18699         allow easier reading of strings so that we can read them from
18700         the constant data.
18701
18702         * class.c (mono_class_layout_fields): no need for literal fields here.
18703
18704         * class-internals.h: api changes for const fields
18705
18706         * icall.c (ves_icall_get_enum_info): use new apis for const fields
18707
18708 2004-07-06  Martin Baulig  <martin@ximian.com>
18709
18710         * mono-debug.h: Increment version number to 44.
18711
18712         * mono-debug.c (mono_debug_add_wrapper): The second argument is
18713         now a gpointer, rewrote this whole method.
18714
18715         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
18716         function.  Add information about the wrapper in a new "misc table".
18717
18718         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
18719         for the new misc table.
18720
18721 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
18722
18723         * metadata-internals.h image.c: Add a cache for helper signatures.
18724
18725         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
18726
18727 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
18728
18729         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
18730         delegates from a delegate. Fixes #61033.
18731         
18732         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
18733         marshalling of stringbuilder arrays. Fixes #59900.
18734
18735 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
18736
18737         * icall.c: Add EnumBuilder:setup_enum_type icall.
18738
18739 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
18740
18741         * icall.c: Added a new icall for the property version of
18742         OffsetOfStringData.
18743
18744 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
18745
18746         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
18747         it has a constant size across platforms.
18748
18749         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
18750         stack trace.
18751
18752 2004-06-29  Martin Baulig  <martin@ximian.com>
18753
18754         * mono-debug.c (mono_debug_add_method): Protect the whole function
18755         in mono_debugger_lock(), not just parts of it.
18756
18757 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
18758
18759         * reflection.c: make sure padding bytes in heaps are zeroed.
18760
18761 2004-06-24  David Waite  <mass@akuma.org>
18762
18763         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
18764         image.c, loader.c, locales.c, marshal.c, metadata.c,
18765         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
18766         string-icalls.c, threads.c: change to C90-style comments from C99 /
18767         C++ -style
18768
18769 2004-06-24  Dick Porter  <dick@ximian.com>
18770
18771         * threads.c
18772         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
18773         return createdNew.  Fixes bug 60412.
18774
18775         * threads-types.h: 
18776         * icall.c: Add createdNew parameter to CreateMutex icall
18777
18778 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18779
18780         * reflection.c, object-internals.h: save default value in params.
18781
18782 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18783
18784         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
18785         no need to build a new path combining that with the application base.
18786         Fixes bug #60442.
18787
18788 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
18789
18790         * reflection.c: fixed minor standard compliance issues.
18791
18792 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
18793
18794         * reflection.c: fixed issue with encoding some custom attributes
18795         (arrays in properties and fields, bug #60411).
18796
18797 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18798
18799         * reflection.c: fix start address when copying the public key token.
18800
18801 2004-06-23  Martin Baulig  <martin@ximian.com>
18802
18803         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
18804         the `exc' object in a static object to put it into the GC's root set.
18805
18806 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
18807
18808         * reflection.c: make mono_reflection_setup_internal_class ()
18809         callable a second time to setup a new parent class.
18810
18811 2004-06-23  Dick Porter  <dick@ximian.com>
18812
18813         * threads.c: Check for WAIT_IO_COMPLETION return values.
18814
18815 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
18816
18817         * appdomain.c: Removed the g_free on the public key token. Now copy 
18818         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
18819         * assembly.c: Added public key token string value when loading 
18820         assemblies. Fix bug #60439.
18821         * icall.c: Added missing informations (like public key) in 
18822         GetReferencedAssemblies. Fix #60519.
18823         * image.h: Changed definition for public key token from const char*
18824         public_tok_value to guchar public_key_token [17];
18825         * reflection.c: Updated for changes to public key token.
18826
18827 2004-06-22  Lluis Sanchez Gual
18828
18829         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
18830         for the field in base classes.
18831
18832 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18833
18834         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
18835         mark headers as not supported, they are installed only for use by the
18836         debugger.
18837
18838 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
18839
18840         * *.c, *.h: avoid namespace pollution in public headers.
18841
18842 2004-06-21  Martin Baulig  <martin@ximian.com>
18843
18844         * exception.c (mono_get_exception_security): It's in
18845         "System.Security", not in "System".
18846
18847         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
18848         the exception classes.
18849
18850 2004-06-21  Martin Baulig  <martin@ximian.com>
18851
18852         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
18853         Protect the exception object from being finalized.
18854
18855 2004-06-21  Martin Baulig  <martin@ximian.com>
18856
18857         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
18858         public function.
18859
18860 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
18861
18862         * reflection.c: Load the assembly in mono_reflection_type_from_name,
18863         if it was not loaded before. Fix parts of #60439.
18864
18865 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
18866
18867         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
18868         code that was broken since Ben's change: wrappers are now
18869         dependent on the method signature only again.
18870
18871 2004-06-21  Martin Baulig  <martin@ximian.com>
18872
18873         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
18874         added interface support.
18875
18876 2004-06-21  Martin Baulig  <martin@ximian.com>
18877
18878         * class.c (mono_vtable_get_static_field_data): New public method.
18879
18880 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
18881
18882         * filewatcher.c : Windows build fix to be compliant with API changes.
18883
18884 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18885
18886         * class.h, class.c: more accessors.
18887         * metadata.h, metadata.c: prepare for hiding MonoType and
18888         MonoMethodSignature: people should use the accessors from now on
18889         outside of the tree.
18890
18891 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18892
18893         * *.c, *.h: more API cleanups.
18894
18895 2004-06-18  Jackson Harper  <jackson@ximian.com>
18896
18897         * assembly.c: Trace loading assemblies.
18898         * loader.c: Trace loading native libraries.
18899         * mono-config.c: Trace loading config files.
18900         
18901 2004-06-18  Dick Porter  <dick@ximian.com>
18902
18903         * locales.c: Tell ICU the lengths of strings, it can cope with
18904         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
18905
18906 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
18907
18908         * image.c: swapped name/filename;
18909
18910 2004-06-18  Martin Baulig  <martin@ximian.com>
18911
18912         * mono-debug-debugger.c (write_class): Write the parent class at
18913         the end of the header.
18914
18915 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18916
18917         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
18918
18919 2004-06-17  Raja R Harinath  <rharinath@novell.com>
18920
18921         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
18922         (bundle_obj): New conditional define.
18923         (BUILT_SOURCES): Remove.
18924         ($(bundle_srcs)): Make parallel-make safe.
18925         (libmonoruntime_la_LIBADD): Make unconditional.
18926         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
18927         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
18928
18929 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
18930
18931         * culture-info-tables.h: It was inconsistent with the latest
18932           supp info files.
18933
18934 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
18935
18936         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
18937         be loaded.
18938
18939         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
18940         with gcc 2.95.
18941
18942 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18943
18944         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
18945         cleaned up public header threads.h.
18946
18947 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18948
18949         * Makefile.am, *.c, *.h: more API cleanups.
18950
18951 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18952
18953         * Makefile.am: removed monosn from compilation.
18954         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
18955         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
18956         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
18957         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
18958         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
18959         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
18960
18961 2004-06-15  Jackson Harper  <jackson@ximian.com>
18962
18963         * assembly.c: Make locales lower case when searching the GAC for
18964         assemblies. gacutil will always make locales lowercase when
18965         installing so this effectively makes them case insensitive.
18966         
18967 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
18968
18969         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
18970         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
18971           parameter which allows to choose whether the wait can be interrupted or 
18972           not. Also added the method mono_monitor_enter(), which locks the monitor
18973           using an infinite wait and without allowing interruption.
18974           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
18975           interrupted.
18976         * object.h: Added new fields in MonoThread. suspend_event holds the event
18977           used to susped/resume the thread. synch_lock is the lock object to use for
18978           modifying the thread state.
18979         * threads.c: Use the new synch_lock object for locking, instead of "this",
18980           which can generate deadlocks.
18981           Moved thread state change in Thread.Sleep and Thread.Join from managed
18982           to unmanaged code. This avoids a deadlock when the thread was suspended
18983           just after acquiring the thread lock.
18984           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
18985           Implemented Thread.Suspend using an event instead of ThreadSuspend,
18986           which is not fully implemented in the io-layer.
18987         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
18988
18989 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
18990
18991         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
18992         threads-types.h: more API cleanups.
18993
18994 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18995
18996         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
18997         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
18998         threadpool.c, threads.c: first pass at the exported API cleanup.
18999
19000 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
19001
19002         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
19003
19004 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19005
19006         * icall.c: added internalGetHome.
19007
19008 2004-06-14  Dick Porter  <dick@ximian.com>
19009
19010         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
19011         possible to return successfully when '.' or '..' were the only
19012         entries in a directory, but were skipped.  The MonoIOStat was not
19013         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
19014         Fixes bug 59574.
19015
19016 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
19017
19018         * reflection.c: make binaries run on .Net 1.1 by default.
19019
19020 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
19021
19022         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
19023
19024 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
19025
19026         * marshal.c: keep track of struct size with explicit layout
19027         (bug #59979).
19028
19029 2004-06-12  Martin Baulig  <martin@ximian.com>
19030
19031         * mono-debug-debugger.c: Comment out a debugging g_message().
19032
19033 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
19034
19035         * reflection.c, reflection.h: do not free custom attrs that are cached.
19036         * icall.c: use braces to make code clearer.
19037
19038 2004-06-11  Martin Baulig  <martin@ximian.com>
19039
19040         * class.h (MonoInflatedField): New type.
19041         (MonoClassField): Replaced `MonoType *generic_type' with
19042         `MonoInflatedField *generic_info'.
19043
19044         * icall.c
19045         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
19046
19047 2004-06-11  Martin Baulig  <martin@ximian.com>
19048
19049         * reflection.c (mono_image_create_method_token): Correctly encode
19050         varargs methods.
19051
19052 2004-06-11  Martin Baulig  <martin@ximian.com>
19053
19054         * metadata.c (mono_metadata_parse_method_signature): When parsing
19055         a MethodDef which has VarArgs, also set sentinelpos if we don't
19056         have any parameters.
19057
19058 2004-06-11  Martin Baulig  <martin@ximian.com>
19059
19060         * verify.c (mono_method_verify): In CEE_CALL, use
19061         mono_method_get_signature() to get the method's signature, unless
19062         we're a PInvoke method.
19063
19064 2004-06-10  Jackson Harper  <jackson@ximian.com>
19065
19066         * assembly.c: Use <path>/lib/mono/gac for the extra paths
19067         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
19068         logical name as the supplied path is just a prefix to the gac not
19069         the direct path to it.
19070         
19071 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
19072
19073         * reflection.c: make the token for a created method match
19074         the token of the MethodBuilder it was created from
19075         (IKVM requires this behaviour now).
19076
19077 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
19078
19079         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
19080         reflection.c, socket-io.c: leak fixes.
19081
19082 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
19083
19084         * icall.c: handle sentinel pos in vararg methods in position different
19085         from 0.
19086
19087 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19088
19089         * culture-info-tables.h: freshly generated.
19090
19091 2004-06-09  Martin Baulig  <martin@ximian.com>
19092
19093         * loader.c (mono_get_method_constrained): Call `mono_class_init
19094         (constrained_class)'.   
19095
19096 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
19097
19098         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
19099         any methods. Fixes #59629.
19100
19101 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19102
19103         * culture-info-tables.h: reflecting locale-builder updates.
19104
19105 2004-06-08  Dick Porter  <dick@ximian.com>
19106
19107         * object.h:
19108         * locales.c: Fixed compile warnings, including a real bug in
19109         CompareInfo_internal_compare.
19110         
19111 2004-06-08  Dick Porter  <dick@ximian.com>
19112
19113         * locales.c
19114         (ves_icall_System_Globalization_CompareInfo_internal_index):
19115         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
19116         Double-check the resuls of usearches, because ICU currently
19117         ignores most of the collator settings here.  Fixes bug 59720.
19118         
19119 2004-06-08  Dick Porter  <dick@ximian.com>
19120
19121         * locales.c
19122         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
19123         Fix memory leak and segfault-causing typo.  No idea how this one
19124         lasted so long without being noticed.
19125
19126 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
19127
19128         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
19129         any methods. Fixes #59629.
19130
19131 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19132
19133         * assembly.c:
19134         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
19135         own the critical section before). Removed dead code (that's done
19136         in the preload hook).
19137
19138         (mono_assembly_load_with_partial_name): call the preload hook.
19139
19140 2004-06-08  Martin Baulig  <martin@ximian.com>
19141
19142         * metadata.c (mono_metadata_signature_alloc): Default
19143         `sentinelpos' to -1.
19144
19145         * reflection.c (mono_image_get_array_token): Likewise.
19146
19147 2004-06-08  Martin Baulig  <martin@ximian.com>
19148
19149         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
19150
19151         * metadata.c (mono_metadata_parse_method_signature): When parsing
19152         a MethodDef which has VarArgs, set sentinelpos.
19153
19154         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
19155         `gint16' since we're using -1 for non-varargs methods.
19156
19157         * reflection.c
19158         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
19159         (method_encode_signature): Added varargs support.
19160         (method_builder_encode_signature): Likewise.
19161         (mono_image_get_varargs_method_token): New static method.
19162         (mono_image_create_method_token): New public method; this is
19163         called via an icall instead of mono_image_create_token() when
19164         calling a varargs method.       
19165
19166 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
19167
19168         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
19169
19170 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19171
19172         * culture-info-tables.h : Reflecting the latest locale-builder that
19173           fixed empty array representation ({} to {0}).
19174
19175 2004-06-07  Jackson Harper  <jackson@ximian.com>
19176
19177         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
19178         looking up extra gac paths. This allows MONO_GAC_PATH to act
19179         exactly like a prefix.
19180         
19181 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
19182
19183         * reflection.c (mono_reflection_type_from_name): Make a copy of the
19184         type name before modifying it. Fixes #59405.
19185
19186 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19187
19188         * culture-info.h: added fields for "all datetime patterns".
19189         * locales.c: (  ves_icall_System_Globalization_CultureInfo
19190           _construct_datetime_format ()): fill xxx_patterns fields.
19191         * object.h: added fields for "all datetime patterns" to
19192           MonoDateTimeFormatInfo.
19193         * culture-info-tables.h: reflecting locale-builder updates.
19194
19195 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
19196
19197         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
19198         the event has no add and remove methods. Fixes #59629.
19199
19200 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
19201
19202         * object.c: Fixed possible integer overflow when allocating large
19203         strings.
19204
19205 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
19206
19207         * culture-info-tables.h: reflecting locale-builder updates.
19208
19209 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
19210
19211         * culture-info-tables.h: reflecting locale-builder updates.
19212
19213 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
19214
19215         * culture-info-tables.h: reflecting locale-builder updates.
19216
19217 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
19218
19219         * threads.c: Made Thread.Sleep abortable.
19220
19221 2004-06-02  Martin Baulig  <martin@ximian.com>
19222
19223         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
19224
19225         * debug-mono-symfile.h: Bumped symbol file version number to 37.
19226
19227 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
19228
19229         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
19230
19231 2004-05-30  Jackson Harper  <jackson@ximian.com>
19232
19233         * reflection.c: Do not hardcode assembly versions or public key
19234         tokens anymore. All of this except the corlib section was dead
19235         code anyways.
19236         
19237 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
19238
19239         * object.c (mono_runtime_invoke_array): Automatically create boxed
19240         objects for byref valuetypes if needed. Fixes #59300.
19241         
19242         * object.c (mono_method_return_message_restore): Handle 
19243         MONO_TYPE_OBJECT as well.
19244
19245 2004-05-28  Jackson Harper  <jackson@ximian.com>
19246
19247         * reflection.c: The modified type encoding was causing build
19248         problems. Reverted for now.
19249         
19250 2004-05-28  Jackson Harper  <jackson@ximian.com>
19251
19252         * reflection.c/h: Take an assembly ref so that we dont create
19253         fully qualified names when encoding types in the same assembly as
19254         the custom attribute being emitted.
19255         * appdomain.c: Increment version number.
19256         
19257 2004-05-26  Duncan Mak  <duncan@ximian.com>
19258
19259         * icall.c
19260         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
19261         Set the full version number (major, minor, build, revision).
19262
19263 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
19264
19265         * marshal.c (emit_struct_conv): increment src/dst after blit
19266         (mono_marshal_get_managed_wrapper,
19267         mono_marshal_get_native_wrapper): make sure we have marshalling
19268         info before marshalling params (info computation affects
19269         blittable)
19270
19271         * class.c (class_compute_field_layout): correctly deal with
19272         blittable
19273         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
19274         value types (as per what windows dows by default)
19275         (mono_class_setup_mono_type): System.ValueType is blittable
19276         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
19277         blittable
19278
19279         * marshal.c (mono_marshal_load_type_info): flag types  as
19280         non-blittable if the native layout doesn't match the managed
19281         layout
19282
19283 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19284
19285         * appdomain.c: don't add stuff in the private search path that is
19286         above the application base. If application base is not set, there's
19287         no private search path.
19288
19289 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
19290
19291         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
19292         byref struct arguments in native->managed marshalling.
19293
19294 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
19295
19296         * marshal.c (mono_marshal_get_runtime_invoke): correctly
19297         cache methods using signature (special case for methods
19298         that are value type or string class)
19299         
19300         * image.c (mono_image_close): clean up allocated GSList's
19301         in runtime_invoke_cache.
19302
19303 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19304
19305         * mono-config.c: set the correct path for mono_cfg_dir on windows when
19306         there's no MONO_CFG_DIR environment variable defined.
19307
19308 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19309
19310         * threads.c: windows version must be >= 0x0500 to include OpenThread.
19311
19312 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
19313
19314         * threadpool.c: Really wait for 500ms after the async call, even if the wait
19315           is interrumped.
19316         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
19317           before waiting for it, and call CloseHandle after the wait to unref it.
19318           This will make sure that handles are not disposed too early.
19319
19320 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19321
19322         * appdomain.c:
19323         * appdomain.h:
19324         * icall.c: removed
19325         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
19326         needed now.
19327
19328         * object.c: se the application_base only for the domain that runs
19329         Main. Fixes bug #59216,
19330
19331 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19332
19333         * appdomain.c:
19334         * object.c: only the domain in which Main is run have
19335         SetupInformation.ConfigurationFile set, so moved a few lines from
19336         appdomain.c to object.c.
19337
19338 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19339
19340         * appdomain.c: we tried to load [name].(dll|exe), but according
19341         to bug #57710, we must also try [culture]/[name].(dll|exe) and
19342         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
19343         There's a test case attached to bug #58922.
19344
19345 2004-05-27  Dick Porter  <dick@ximian.com>
19346
19347         * icall.c:
19348         * file-io.c: Implemented icalls for locking and unlocking regions
19349         in a file.
19350         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
19351         FALSE on error (fixes both compiler warning and real bug.)
19352
19353 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
19354
19355         * culture-info-tables.h: reflecting locale-builder updates.
19356
19357           (Added missing ChangeLog entry for 05/26)
19358
19359 2004-05-27  Jackson Harper  <jackson@ximian.com>
19360
19361         * locales.c: Fix some cut and paste errors.
19362         
19363 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19364
19365         * mono-config.c: set the correct path for config. directory on windows.
19366
19367 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19368
19369         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
19370           on win32.
19371
19372 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
19373
19374         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
19375         from pinvoke functions.
19376         
19377         * marshal.c (mono_ftnptr_to_delegate): Implement this.
19378
19379 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19380
19381         * culture-info-tables.h: reflecting locale-builder updates.
19382
19383 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
19384
19385         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
19386         #59086.
19387
19388 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
19389
19390         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
19391         * icall.c: Modified icalls for RNG.
19392         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
19393         Windows (CryptoAPI).
19394
19395 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
19396
19397         * locales.c: Fix build.
19398
19399 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19400
19401         * culture-info-tables.h: reflecting locale-builder updates.
19402
19403 2004-05-25  Jackson Harper  <jackson@ximian.com>
19404
19405         * locales.c: When creating the current culture use the $LANGs
19406         specific culture. So DateTimeFormat and NumberFormat entries are created.
19407         
19408 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
19409
19410         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
19411         a char array as parameter.
19412
19413 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
19414
19415         * image.c: In mono_image_open(), always use an absolute path name to
19416           look for already loaded images.
19417
19418 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
19419
19420         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
19421         missing in the windows build (like older cygwin include files).
19422
19423 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
19424
19425         * icall.c: Fixed check for possible integer overflow in Buffer_
19426         BlockCopy icall. Replaced comments style // by /* */.
19427
19428 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
19429
19430         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
19431         
19432         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
19433         check after MONO_VTADDR. Fixes pinvoke2.exe.
19434
19435         * marshal.h marshal.c metadata.h: Add beginnings of support for
19436         ftnptr -> delegate marshalling.
19437
19438 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
19439
19440         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
19441         * threads.c: Fix warnings.
19442
19443 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
19444
19445         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
19446         * icall.c: Registered icalls for Suspend and Resume.
19447         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
19448           Thread.Abort.
19449         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
19450         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
19451         * process.c: Use WaitForSingleObjectEx.
19452         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
19453           checkpoints.
19454         * threads.c, threads.h: Make use of new Ex wait methods. Improved
19455           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
19456           for Suspend and Resume. Added new mono_thread_stop, used for stoping
19457           background threads. Added basic support for Abort in Windows.
19458           Start new threads using a managed delegate invoke wrapper. This wrapper
19459           has an interruption checkpoint that is needed since an interruption
19460           can be requested before the thread leaves the unmanaged code that starts 
19461           the thread.
19462         * marshal.c: Added interruption checkpoint after every native call, and
19463           also before managed calls for wrappers called from unmanaged code to
19464           go into managed code.
19465         * object.h: Added new field in MonoThread to keep track of interruption
19466           requests.
19467
19468 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
19469
19470         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
19471         calls.
19472
19473 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19474
19475         * appdomain.c:
19476         * assembly.c:
19477         * gc.c:
19478         * locales.c:
19479         * mono-config.c:
19480         * rand.c: getenv -> g_getenv (windows!)
19481
19482         * process.c: complete_path is also used on non-windows platforms.
19483
19484 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19485
19486         * icall.c: new signature for Process_Start.
19487
19488         * process.[ch]: new signature for Process_Start. If we're on windows
19489         and UseShellExecute is false, we have to search for the program by
19490         ourselves if we don't get a full path.
19491
19492 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
19493
19494         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
19495         marshalling and call CleanUpNativeData if needed. Fixes #58646.
19496
19497 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19498
19499         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
19500         Fixes bug #58373.
19501
19502 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19503
19504         * process.c: use double quotes to quote program name and arguments on
19505         windows. Fixes bug #58575.
19506
19507 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19508
19509         * file-io.c: don't return "." and ".." when using windows Find*File.
19510
19511 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
19512
19513         * marshal.c: Don't pass wrappers to message init because method 
19514         addressed used to lookup metadata. part of remoting[2|3] fix.
19515
19516 2004-05-15  Jackson Harper  <jackson@ximian.com>
19517
19518         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
19519         path is essentially the same as MONO_PATH except that it points to
19520         GACs instead of lib directories.
19521         * loader.h: The user gac is gone so we dont need function to
19522         enable/disable it.
19523         * mono-config.c: user gac option is now gone.
19524         
19525 2004-05-15  Jackson Harper  <jackson@ximian.com>
19526
19527         * culture-info.h: Make defines more consistent, add calendar data
19528         to the culture info table.
19529         * culture-info-tables.h: Add basic calendar data. Basically
19530         everyone gets default gregorian until all the data is
19531         updated.
19532         * locales.c: Use the new consistent defines. Set calendar data for
19533         culture info objects.
19534         * object.h: add a field for calendar data to CultureInfo
19535         
19536 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
19537
19538         * image.c: image->runtime_invoke_cache is keyed on signatures now.
19539         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
19540         a signature.
19541         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
19542         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
19543         an extra param that is the pointer of the method to invoke. The IL for
19544         the invoke method is no longer specific to the method, but to the
19545         signature of the method. Thus, we can share the same code for multiple
19546         methods. This reduces the number of methods that have to be compiled.
19547
19548 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
19549
19550         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
19551
19552         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19553
19554         * icall.c: Optimize Buffer.BlockCopy.
19555
19556 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19557
19558         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
19559         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
19560         quote). Changed them to "MMMM yyyy".
19561
19562 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
19563
19564         * rand.c
19565         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
19566
19567 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
19568
19569         * reflection.h: Updated after changes to managed structures.
19570
19571         * appdomain.c: Bump corlib version.
19572
19573 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19574
19575         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
19576         windows.
19577
19578 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19579
19580         * Makefile.am: link to ../os/libmonoos.la on windows.
19581
19582         * assembly.c:
19583                 -If MONO_DEBUG, warn about non-existing directories in
19584                 MONO_PATH.
19585                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
19586                 compile time variable.
19587                 -Removed init_default_path and call mono_set_rootdir from
19588                 libmonoos.a instead (windows only).
19589
19590         * assembly.h: declare mono_assembly_getrootdir().
19591
19592         * domain.c:
19593         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
19594
19595         * loader.c: s/getenv/g_getenv/
19596
19597 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
19598
19599         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
19600
19601         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
19602
19603         * metadata.h: Add new marshalling conversions.
19604
19605         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
19606         function.
19607
19608         * reflection.c (mono_reflection_get_type): Lookup the type in all
19609         modules of a multi-module assembly. Fixes #58291.
19610
19611 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
19612
19613         * threads.c: Before aborting a background, set the StopRequested
19614         state.  This avoids throwing the Abort exception.
19615         In mono_thread_manage, don't continue with the shutdown until all
19616         aborted threads have actually stopped.
19617
19618 2004-05-10  Jackson Harper  <jackson@ximian.com>
19619
19620         * locales.c: Remove the modifier from culture names.
19621         
19622 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19623
19624         * Makefile.am: monosn is not installed any more. It has been deprecated
19625         in favor of sn.
19626
19627 2004-05-07  Jackson Harper  <jackson@ximian.com>
19628
19629         * locales.c
19630         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
19631         Fix array construction, add bailout if the length is 0.
19632
19633 2004-05-07  Dick Porter  <dick@ximian.com>
19634
19635         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
19636         machine doesn't have a DNS entry.  Patch by Urs Muff
19637         (umuff@quark.com), fixes bug 57928.
19638
19639 2004-05-06  Jackson Harper  <jackson@ximian.com>
19640
19641         * reflection.c: Handle null PublicTokens properly. alloc mem for
19642         assembly names culture so we dont crash when freeing it.
19643         
19644 2004-05-06  Jackson Harper  <jackson@ximian.com>
19645
19646         * assembly.c: Check the usergac when loading with partial names.
19647         
19648 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
19649
19650         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
19651         does nothing for now (not required for Linux/Windows) but the class
19652         library can call it (and a newer or modified runtime could need it).
19653         * icall.c: Registred icall.
19654
19655 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19656
19657         * loader.c: prints a message on module loading error we set MONO_DEBUG
19658         environment variable.
19659
19660 2004-05-05  Jackson Harper  <jackson@ximian.com>
19661
19662         * appdomain.c: Handle PublicKeyToken=null properly.
19663         
19664 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
19665
19666         * environment.c|h: Added icall ves_icall_System_Environment_
19667         GetOSVersionString to get the current OS version as a string.
19668         * icall.c: Registred icall.
19669
19670 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
19671
19672         * object.c: in mono_object_get_virtual_method(), take into account that
19673         non-virtual methods don't have a slot in the vtable. Check needed when
19674         the object is a proxy.
19675
19676 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
19677
19678         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
19679         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
19680
19681         * object.c (mono_class_compute_gc_descriptor): Fix warning.
19682
19683         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
19684         passed when a valuetype is expected.
19685
19686         * object.c (mono_unhandled_exception): Only set the exit code if the
19687         exception happens in the main thread. Fixes thread5.exe.
19688
19689         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
19690         invalid names. Fixes #58047.
19691
19692 2004-05-03  Jackson Harper  <jackson@ximian.com>
19693
19694         * assembly.c: This line was committed accidently and is unneeded.
19695         
19696 2004-05-03  Jackson Harper  <jackson@ximian.com>
19697
19698         * icall.c: Add new icall for Assembly::LoadWithPartialName
19699         * assembly.c/.h: new function that probes the GAC to load partial
19700         assembly names by Paolo Molaro.
19701         
19702 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19703
19704         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
19705         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
19706         (type_get_fully_qualified_name): Added PublicKeyToken when building a
19707         full type name.
19708
19709 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19710
19711         * appdomain.c: fixed check for 'neutral' culture and removed warning.
19712         * reflection.c: fix bug when parsing a full type name and Version is not
19713         the last thing in the string.
19714
19715 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
19716
19717         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
19718         crashes when it is freed.
19719
19720 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19721
19722         * assembly.c: print the compat warning to stderr.
19723
19724 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
19725
19726         * assembly.c (mono_assembly_load_references): Add a compatibility
19727         hack to run old applications that might be still referencing the
19728         3300-based assemblies, only do this for System.xxx.
19729
19730 2004-05-01  Jackson Harper  <jackson@ximian.com>
19731
19732         * appdomain.c: If the culture is neutral we set it to "".
19733         
19734 2004-04-29  Jackson Harper  <jackson@ximian.com>
19735
19736         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
19737
19738 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
19739  
19740         * string-icalls.c: added low overhead function for copying chars
19741         * icall.c: added needed icall for the above function
19742  
19743 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19744
19745         * icall.c: fix return value of get_global_assembly_cache.  Implemented
19746         Environment.GetLogicalDrives.
19747
19748 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
19749
19750         * rand.c: try and talk to egd or prngd
19751         for random bytes if opening devices fail.
19752
19753 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
19754
19755         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
19756         alignment for the type using the native alignment of its members 
19757         instead of using klass->min_align.
19758
19759         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
19760
19761 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19762
19763         * file-io.c:
19764         * socket-io.c: added check for sys/aio.h.
19765
19766 2004-04-28  Dick Porter  <dick@ximian.com>
19767
19768         * threads.c: Don't abort a thread thats already aborting, when
19769         terminating everything.
19770
19771 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19772
19773         * icall.c: added 2 new async calls for Socket.
19774
19775         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
19776         IO on *nix systems.
19777
19778         * threadpool.c: removed unused variable.
19779
19780 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
19781
19782         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
19783
19784 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
19785
19786         * locales.c: put back string_invariant_tolower () and
19787         string_invariant_toupper ().
19788
19789 2004-04-26 David Waite <mass@akuma.org>
19790
19791         * file-io.h:
19792         * socket-io.h:
19793         * threads.h:
19794         * unicode.h: remove comma from end of enumeration declarations
19795
19796 2004-04-26 David Waite <mass@akuma.org>
19797
19798         * debug-mono-symfile.h:
19799         * decimal.c:
19800         * mono_debug.h:
19801         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
19802
19803
19804 2004-04-26  Jackson Harper  <jackson@ximian.com>
19805
19806         * appdomain.c: Increment version number.
19807         
19808 2004-04-26  Jackson Harper  <jackson@ximian.com>
19809
19810         * appdomain.c: Set assembly references public token value when
19811         PublicKeyToken is specified, not the hash_value. Free public token
19812         values when free assembly name data. Previously the public key
19813         token was hex decoded, however we are using hex encoded public key
19814         tokens, so this is not neccasary.
19815         * assembly.c: Lookup assemblies in the gac if their public token
19816         value is set. Add function to allow enabling user gac
19817         lookups. Specify whether or not the assembly was loaded from the
19818         GAC. Compare full assembly names when checking the cache for
19819         assemblies (Temporarily disabled see comment in code). Remove
19820         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
19821         specifies trace-loader they get extra info to stdout on the
19822         loading of assemblies.
19823         * image.h: Add a field for an assembly references public token
19824         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
19825         whether an assembly has been loaded from the GAC.
19826         * image.c: Remove a corlib -> mscorlib name mapping.
19827         * loader.h: Add function to enable/disable the user gac.
19828         * mono-config.c: Check if the usergac is enabled in the config
19829         file.
19830         * icall.c: New icall to determine whether or not an assembly has
19831         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
19832         * tabldefs.h: Add constant for assemblyref flag that specifies a
19833         full public key is used instead of a public token.
19834         * reflection.c: Remove mscorlib -> corlib mappings. Set
19835         PublicTokenValue instead of hash value. This value is a hex
19836         string so it does not need to be expanded.
19837
19838 2004-04-26  Martin Baulig  <martin@ximian.com>
19839
19840         * mono-debug-debugger.c (mono_debugger_initialize): Set
19841         `mono_debugger_initialized' before calling mono_debug_lock().
19842
19843 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
19844
19845         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
19846           InternalToUpper/InternalToLower.
19847         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
19848           removed invariant culture shortcut.  This is now done in managed code.
19849         * locales.c: (string_invariant_toupper/tolower) removed.
19850
19851 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19852
19853         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
19854         Added Poll internal call.
19855
19856         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
19857         call for Poll. Select was too heavy for polling a single socket.
19858
19859         * threadpool.[ch]: added mono_threadpool_cleanup.
19860         * threads.c: use it. Don't use Thread_Abort on windows.
19861
19862 2004-04-23  Martin Baulig  <martin@ximian.com>
19863
19864         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
19865
19866 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
19867
19868         * icall.c: Registred new icalls for key pair protection and added an
19869         icall for Environment.GetFolderPath on Windows.
19870         * security.c|h: Added new icalls for key pair protection.
19871
19872 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19873
19874         * socket-io.c: don't display the non-supported family warning for known
19875         families. Now this is not displayed on windows when checking support
19876         for IPv4/IPv6.
19877
19878 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19879
19880         * class.c: don't display the layout warning for static fields.
19881
19882 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
19883
19884         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
19885         * locales.c, locales.h: Added new icalls for culture-specific
19886         Char.ToLower and Char.ToUpper.
19887
19888 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19889
19890         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
19891         by David Waite.
19892
19893 2004-04-20  Martin Baulig  <martin@ximian.com>
19894
19895         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
19896         of the type name before passing it to mono_reflection_type_from_name().
19897
19898 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
19899
19900         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
19901         encodings here. Fixes #56965.
19902
19903 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
19904
19905         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19906         fix test on strstr result not that I can see anything that
19907         relies on the result.
19908
19909 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
19910
19911         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
19912         Fixes #57081.
19913
19914         * marshal.c (mono_marshal_get_string_encoding): New helper function.
19915
19916         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
19917         function to determine which marshalling to use for strings. Fixes
19918         #56965.
19919
19920         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
19921
19922         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
19923
19924 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
19925
19926         * icall.c: #include mono-config.h
19927
19928 2004-04-15  Jackson Harper  <jackson@ximian.com>
19929
19930         * culture-info-tables.h: Fix date formats for en-US culture.
19931         
19932 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
19933
19934         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
19935         ThreadPool.SetMinThreads.
19936         * threadpool.c: Implemented ThreadPool.GetMinThreads and
19937         ThreadPool.SetMinThreads.
19938
19939 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
19940
19941         * mono-config.c: also load the .config file in the directory
19942         where the assembly was found.
19943
19944 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
19945
19946         * assembly.c: load per-assembly config files.
19947         * icall.c: decrapified code to get the config dir and moved to
19948         mono-config.c.
19949         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
19950         per-assembly config files. When doing a dll map lookup give precedence
19951         to the per-assembly data.
19952
19953 2004-04-14  Martin Baulig  <martin@ximian.com>
19954
19955         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
19956         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
19957         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
19958
19959         * mono-debugger-debugger.c: While the debugger is locked, remember
19960         whether the symbol tables have changes and send one single
19961         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
19962
19963 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
19964
19965         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
19966
19967         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
19968         function.
19969
19970         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
19971         account when marshalling string arrays. Fixes #56965.
19972
19973 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
19974
19975         * icall.c: Add new icalls mapping for security.
19976         * security.c|h: Add internal calls for WindowsIdentity,
19977         WindowsImpersonationContext and WindowsPrincipal.
19978
19979 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
19980
19981         * class.c: Added comment to ensure the System.MonoDummy class
19982         is removed when no longer necessary
19983
19984 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
19985
19986         * appdomain.c: Pass arguments to the bootstraping exceptions to
19987         minimize JITed methods at boot
19988
19989         * metadata.c (mono_exception_from_name_two_strings): Allow for the
19990         second string to be null.
19991
19992         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19993         Change the protocol to minimize the JIT methods at startup.  Now
19994         it Returns the internal codepage, if the value of "int_code_page"
19995         is 1 at entry, and we can not compute a suitable code page
19996         number, returns the code page as a string.
19997
19998 2004-04-13  Jackson Harper  <jackson@ximian.com>
19999
20000         * culture-info-tables.h: Fix number of decimal digits for all
20001         english locales.
20002
20003 2004-04-13  Jackson Harper  <jackson@ximian.com>
20004
20005         * icall.c: Clairfy out of sync error message. It is not always
20006         your corlib that is out of sync.
20007
20008 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
20009
20010         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
20011         properties when only the set accessor is overriden. Fixes #55874.
20012
20013 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
20014
20015         * assembly.c (mono_assembly_load_references): Make this thread safe.
20016         Fixes #56327.
20017
20018 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
20019
20020         * monosn.c: Add missing initialization calls.
20021
20022 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
20023
20024         * locales.c:
20025         ves_icall_System_Globalization_CultureInfo_construct_number_format
20026         Fix g_assert so it compiles on fussier compilers re int/ptr
20027         mismatch
20028
20029 2004-04-08  Dick Porter  <dick@ximian.com>
20030
20031         * socket-io.h:
20032         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
20033         53992.  Also rearrange the code so that the internal calls return
20034         an error value and exceptions are thrown from managed code.
20035
20036         * icall.c: Add type info to the socket icalls.
20037
20038 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20039
20040         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
20041         owes me a beer.
20042
20043 2004-04-07  Martin Baulig  <martin@ximian.com>
20044
20045         * class.c (mono_class_from_generic_parameter): Don't default
20046         `klass->parent' to `mono_defaults.object_type'.
20047
20048 2004-04-07  Martin Baulig  <martin@ximian.com>
20049
20050         * reflection.c (mono_reflection_initialize_generic_parameter): Set
20051         `param->pklass->reflection_info'.       
20052
20053 2004-04-07  Jackson Harper  <jackson@ximian.com>
20054
20055         * culture-info-tables.h: Fix date separator symbol.
20056         
20057 2004-04-07  Martin Baulig  <martin@ximian.com>
20058
20059         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
20060         from System.Type to System.MonoType.
20061
20062 2004-04-07  Martin Baulig  <martin@ximian.com>
20063
20064         * reflection.h
20065         (MonoReflectionGenericParam): Added `has_reference_type' and
20066         `has_value_type' fields.
20067
20068         * reflection.c (mono_image_get_generic_param_info): Encode the
20069         correct flags if we have the `class' or `struct' constraint.
20070
20071 2004-04-07  Martin Baulig  <martin@ximian.com>
20072
20073         * reflection.h
20074         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
20075
20076 2004-04-07  Jackson Harper  <jackson@ximian.com>
20077
20078         * appdomain.c: Revert extra patches, just wanted to bump the
20079         version number.
20080         
20081 2004-04-07  Jackson Harper  <jackson@ximian.com>
20082
20083         * Makefile.am: Add culture-info private headers.
20084         * icall.c: Add new icalls for contructing locales.
20085         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
20086         * locales.h: Declare new culture info construction methods.
20087         * object.h: Add new fields used to avoid the CultureMap to
20088         MonoCultureInfo.
20089         * culture-info.h: Definition of structs used in the culture info
20090         tables.
20091         * culture-info-tables.h: Autogenerated tables that contain culture
20092         info data. This file was generated with the locale-builder tool.
20093         * appdomain.c: Incement corlib version number.
20094         
20095 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
20096
20097         * appdomain.c: (mono_runtime_init) move mono_thread_init
20098         to before mono_object_new calls so critical sections
20099         are initialized before use.
20100
20101 2004-04-07  Martin Baulig  <martin@ximian.com>
20102
20103         * icall.c
20104         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
20105         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
20106         (ves_icall_MonoGenericParam_initialize): Removed.
20107         (monogenericparam_icalls): Removed.
20108         (generictypeparambuilder_icalls): Added new table for
20109         System.Reflection.Emit.GenericTypeParameterBuilder.
20110
20111         * reflection.c
20112         (mono_reflection_define_generic_parameter): Removed.
20113         (mono_reflection_initialize_generic_parameter): This is now called
20114         from GenericTypeParameterBuilder's .ctor.
20115
20116 2004-04-06  Martin Baulig  <martin@ximian.com>
20117
20118         * class.c (mono_class_init): Don't inflate nested classes in a
20119         generic instance.
20120         (mono_type_get_name_recurse): Include the generic arguments for
20121         generic instances and generic type declarations.
20122         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
20123         (_mono_class_get_instantiation_name): Removed.
20124         (mono_class_create_generic): Always use `gklass->name' as our name.
20125
20126         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
20127
20128         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
20129         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
20130         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
20131         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
20132         closed generic methods here.
20133
20134         * reflection.c
20135         (mono_reflection_generic_inst_get_nested_types): Removed.
20136         (inflate_mono_method): Copy the generic parameters from the
20137         MonoMethodHeader into out MonoGenericMethod.
20138
20139 2004-04-06  Martin Baulig  <martin@ximian.com>
20140
20141         * row-indexes.h
20142         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
20143
20144         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
20145
20146         * reflection.c (build_compressed_metadata): If we have any entries
20147         in the GenericParam, MethodSpec or GenericParamConstraint tables,
20148         set the header version to 1.1.
20149
20150 2004-04-06  Martin Baulig  <martin@ximian.com>
20151
20152         * class.c (mono_class_init): If we're a generic instance,
20153         initialize our nested classes, too.
20154         (_mono_class_get_instantiation_name): Deal with the new `!%d'
20155         suffix. 
20156
20157 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20158
20159         * process.c: quote the argument passed to the shell on windows.
20160
20161 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
20162
20163         * threads.c (mono_alloc_special_static_data): Allow this to be
20164         called during startup.
20165
20166 2004-04-02  Martin Baulig  <martin@ximian.com>
20167
20168         * icall.c
20169         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
20170
20171 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
20172
20173         * icall.c: Fix build.
20174
20175 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
20176
20177         * Makefile.am: Added security.c|h.
20178         * icall.c: Added icall for get_UserName;
20179         * security.c: New file for security related icalls. Added function
20180         get_UserName for System.Environment (fix #56144).
20181         * security.h: New. Header file for security.c
20182
20183 2004-04-02  Dick Porter  <dick@ximian.com>
20184
20185         * icall.c: Deleted the icalls that were obsoleted some time ago
20186         by the ICU string code, and which were mixed into the icall
20187         rearranging.  Fixes bug 55969.
20188
20189         * string-icalls.h: 
20190         * string-icalls.c: Deleted the code that those icalls reference.
20191
20192 2004-04-01  Martin Baulig  <martin@ximian.com>
20193
20194         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
20195
20196         * class.c (mono_class_from_generic_parameter): Don't set 
20197         TYPE_ATTRIBUTE_INTERFACE.
20198         (my_mono_class_from_generic_parameter): Likewise.
20199
20200 2004-04-01  Martin Baulig  <martin@ximian.com>
20201
20202         * loader.c (find_method): Added an optional `MonoClass *ic'
20203         argument to search in a specific interface.
20204         (mono_get_method_constrained): New public function.
20205
20206 2004-04-01  Martin Baulig  <martin@ximian.com>
20207
20208         * reflection.c (mono_image_get_generic_field_token): Use the
20209         `handleref' cache here.
20210
20211 2004-04-01  Martin Baulig  <martin@ximian.com>
20212
20213         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
20214
20215         * reflection.c (create_generic_typespec): Use the `typespec' hash
20216         here, not the `typeref' one.    
20217
20218 2004-04-01  Martin Baulig  <martin@ximian.com>
20219
20220         * class.c (mono_class_inflate_generic_type): Moved the
20221         functionality into a new static inflate_generic_type() which
20222         returns NULL if it didn't do anything.  Only increment the
20223         `mono_stats.inflated_type_count' if we actually inflated
20224         something.
20225         (mono_class_get_full): Check the classes type to see whether we
20226         need to inflate it; also inflate MONO_TYPE_(M)VAR.
20227
20228 2004-04-01  Jackson Harper  <jackson@ximian.com>
20229
20230         * reflection.c: Set culture for assembly references.
20231         
20232 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
20233
20234         * reflection.[ch], icall.[ch], Fix support for pinning variables.
20235
20236 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20237
20238         * assembly.c:
20239         (do_mono_assembly_open): the critical section also covers
20240         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
20241
20242 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20243
20244         * threads.c:
20245         (mono_manage_threads): abort the background threads when finishing.
20246         Fixes bug #47232.
20247
20248 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20249
20250         * gc.c: only close the done_event handle if there was no timeout.
20251         C-ified comments.
20252
20253 2004-03-30  Martin Baulig  <martin@ximian.com>
20254
20255         * icall.c (icall_entries): It's called "System.Activator", not
20256         "System.Activation".    
20257
20258 2004-03-30  Martin Baulig  <martin@ximian.com>
20259
20260         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
20261         (mono_class_create_from_typespec): Likewise.
20262
20263 2004-03-30  Martin Baulig  <martin@ximian.com>
20264
20265         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
20266         `has_ctor_constraint' and `initialized'.
20267
20268 2004-03-30  Martin Baulig  <martin@ximian.com>
20269
20270         * reflection.c (encode_new_constraint): New static function to add
20271         the constructor constraint attribute to a type parameter.
20272         (encode_constraints): Call encode_new_constraint() if necessary.
20273
20274         * reflection.h
20275         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
20276
20277         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
20278         
20279 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
20280
20281         * reflection.c, icall.c: add support for pinning variables. 
20282
20283 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
20284
20285         * marshal.c (mono_marshal_get_managed_wrapper):
20286         init bool local with zero rather than null.
20287
20288 2004-03-29  Martin Baulig  <martin@ximian.com>
20289
20290         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
20291         the "official" behavior here.
20292         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
20293
20294 2004-03-29  Martin Baulig  <martin@ximian.com>
20295
20296         * icall.c: Reflect latest API changes.
20297
20298 2004-03-29  Martin Baulig  <martin@ximian.com>
20299
20300         * loader.c (mono_get_method_from_token): Also call
20301         mono_metadata_load_generic_params () for abstract and interface
20302         methods; replace the type arguments in the method signature with
20303         the ones which are loaded from the metadata.
20304
20305 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
20306
20307         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
20308         of the lock is not the current thread. MS.NET don't do it, in spite of
20309         what the documentation says. See bug #56157.
20310
20311 2004-03-28  Martin Baulig  <martin@ximian.com>
20312
20313         * class.c (mono_class_init): Don't call init_properties() and
20314         init_events() for generic instances; set `prop->parent' when
20315         inflating properties.
20316
20317         * reflection.c (mono_generic_inst_get_object): Call
20318         `mono_class_init (ginst->klass)'.
20319         (mono_type_get_object): Only create a MonoGenericInst if your
20320         generic type is a TypeBuilder.
20321         (do_mono_reflection_bind_generic_parameters): Only set
20322         `ginst->is_dynamic' if our generic type is a TypeBuilder.
20323
20324 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
20325
20326         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
20327         Fixes #56091.
20328
20329 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20330
20331         * icall.c: added Kill_internal icall.
20332         * process.[ch]: added Kill_internal icall.
20333
20334 2004-03-25  Martin Baulig  <martin@ximian.com>
20335
20336         * class.h (MonoStats): Added `generic_instance_count',
20337         `inflated_method_count', `inflated_type_count' and
20338         `generics_metadata_size'.       
20339
20340 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20341
20342         * reflection.c: no warnings now.
20343
20344 2004-03-25  Martin Baulig  <martin@ximian.com>
20345
20346         * class.c (mono_class_get_full): New public function; does a
20347         mono_class_get(), but also takes a `MonoGenericContext *'.
20348
20349         * loader.c (mono_field_from_memberref): Renamed to
20350         `field_from_memberref', made static and added `MonoGenericContext *'
20351         argument.
20352         (mono_field_from_token): Added `MonoGenericInst *' argument.
20353         (method_from_memberef): Likewise.
20354         (mono_get_method_from_token): Likewise.
20355         (mono_get_method_full): New public function; does a
20356         mono_get_method(), but also takes a `MonoGenericContext *'.
20357
20358         * verify.c (mono_method_verify): Get the method's generic context
20359         and pass it to mono_field_from_token(), mono_get_method_full() and
20360         mono_class_get_full().
20361
20362 2004-03-25  Martin Baulig  <martin@ximian.com>
20363
20364         * class.c (mono_class_inflate_generic_type): Take a
20365         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
20366         `MonoGenericMethod *'.
20367
20368 2004-03-25  Martin Baulig  <martin@ximian.com>
20369
20370         * loader.h (MonoMethodInflated): Store the MonoGenericContext
20371         instead of the MonoGenericMethod here.
20372
20373 2004-03-25  Martin Baulig  <martin@ximian.com>
20374
20375         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
20376         each time we create a new MonoGenericInst, we also create a new
20377         context which points back to us.
20378
20379         * class.c (inflate_method): Use `ginst->context' instead of
20380         creating a new context.
20381
20382         * loader.c (method_from_memberref): Use
20383         `klass->generic_inst->context' instead of creating a new context.
20384
20385 2004-03-25  Martin Baulig  <martin@ximian.com>
20386
20387         * class.h (MonoGenericContext): New struct.
20388         (MonoGenericMethod): Removed `generic_inst'.
20389
20390         * class.c (mono_class_inflate_generic_method): Take a
20391         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
20392
20393 2004-03-25  Martin Baulig  <martin@ximian.com>
20394
20395         * loader.h (MonoMethodInflated): New typedef.
20396
20397         * metadata.h (MonoMethodSignature): Removed `gen_method', make
20398         `generic_param_count' consume just 30 bits, added `is_inflated'
20399         and `has_type_parameters' flags (one bit each).
20400
20401         * class.c (mono_class_inflate_generic_method): Create a
20402         MonoMethodInflated instead of a MonoMethodNormal and set
20403         `is_inflated' in the method signature.
20404
20405         * class.h (MonoGenericMethod): Removed `generic_method'.
20406
20407 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
20408
20409         * image.c: Make sure the name of a MonoImage is always an absolute path.
20410           This fixes bug #54415.
20411
20412 2004-03-24  Martin Baulig  <martin@ximian.com>
20413
20414         * class.c (mono_class_setup_vtable): If we're a generic instance,
20415         use our generic type's vtable size.
20416
20417 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
20418
20419         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
20420         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
20421         problems.
20422
20423 2004-03-23  Martin Baulig  <martin@ximian.com>
20424
20425         * class.h (MonoDynamicGenericInst): Added `int count_events' and
20426         `MonoEvent *events'.
20427
20428         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
20429         (typebuilder_icalls): Added "get_event_info"; calls
20430         mono_reflection_event_builder_get_event_info(). 
20431
20432         * reflection.c (mono_reflection_generic_inst_initialize): Added
20433         `MonoArray *events'.
20434         (mono_reflection_event_builder_get_event_info): New function.
20435
20436 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
20437
20438         * object.h: add mono_type_initialization_init
20439
20440         * object.c (mono_runtime_class_init): 
20441         implement class constructor synchronization rules
20442         to cope with threading issues.  
20443         add mono_type_initialization_init
20444
20445         * appdomain.c (mono_runtime_init): call 
20446         mono_type_initialization_init
20447
20448         * class.h: removing initializing field from MonoVTable
20449
20450 2004-03-23  Martin Baulig  <martin@ximian.com>
20451
20452         * class.c (my_mono_class_from_generic_parameter): Use
20453         `param->name' if it's not NULL. 
20454
20455 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
20456
20457         * class.c: do not insert non-virtual methods in the vtable.
20458         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
20459         that means the method is non-virtual. This never would have
20460         happened before.
20461
20462 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
20463
20464         * profiler.c: Added lock for accessing coverage_hash.
20465
20466 2004-03-22  Martin Baulig  <martin@ximian.com>
20467
20468         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
20469         `method->method->signature->generic_param_count != 0' to make it
20470         work for interface methods.
20471
20472 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20473
20474         * process.c: quote the string passed to the shell using g_shell_quote.
20475
20476 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20477
20478         * threads.c:
20479         (mono_threads_manage): don't remove the finalizer thread and self
20480         from the threads hash table so that mono_thread_manage can be called
20481         more than once.
20482
20483 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20484
20485         * process.c: quote the arguments when UseShellExecute is true. Fixes
20486         bug #55790.
20487
20488 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20489
20490         * threads.c: set mono_thread_detach as a cleanup routine for every
20491         thread. This way it's always executed upon thread termination, either
20492         aborted or finished normally. No more xsp hangs!
20493
20494 2004-03-17  Martin Baulig  <martin@ximian.com>
20495
20496         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
20497         `int count_nested' and a `MonoType **nested'.
20498
20499         * reflection.c (mono_reflection_bind_generic_parameters): Moved
20500         most of the functionality into a new static
20501         do_mono_reflection_bind_generic_parameters() and don't take a
20502         `MonoType *nested_in' argument any more.  Don't compute nested
20503         types here.
20504         (mono_reflection_generic_inst_get_nested_types): New public method
20505         to get nested types.
20506
20507         * class.c (mono_class_create_generic): Set `klass->nested_in' if
20508         we're a nested class.
20509
20510         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
20511         mono_reflection_generic_inst_get_nested_types() to compute the
20512         nested types.
20513
20514 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
20515
20516         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
20517         descriptive error message under windows.
20518         
20519 2004-03-17  Martin Baulig  <martin@ximian.com>
20520
20521         * class.c (dup_type): Added `const MonoType *original' argument;
20522         copy the attrs from the original type.
20523
20524 2004-03-17  Martin Baulig  <martin@ximian.com>
20525
20526         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
20527         `m->generic_inst_cache' here.
20528
20529 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
20530
20531         * exception.h exception.c: Add stack_overflow_exception.
20532
20533 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20534
20535         * threadpool.c:
20536         (overlapped_callback): call SetEvent *after* invoking the callback.
20537         No need to call CloseHandle.
20538
20539 2004-03-16  Martin Baulig  <martin@ximian.com>
20540
20541         * reflection.c (mono_image_get_fieldref_token): Take a
20542         `MonoReflectionField *' instead of a `MonoClassField *' and a
20543         `MonoClass *'; store the `MonoReflectionField *' in the hash.
20544
20545 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20546
20547         * appdomain.c: don't add the culture to the filename we're looking for
20548         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
20549
20550 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20551
20552         * locales.c: don't ignore symbols when doing case insensitive compares.
20553         Thanks Dick! Fixes bug #54046.
20554
20555         * threads.c: surround 'threads' usage with enter/leave in
20556         mono_thread_manage.
20557
20558 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
20559
20560         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
20561         implicitly marshalled as [Out]. Fixes #55450.
20562
20563         (mono_marshal_get_runtime_invoke): Zero out the result if there is
20564         an exception.
20565
20566 2004-03-16  Martin Baulig  <martin@ximian.com>
20567
20568         * class.c (mono_class_from_generic_parameter): Use the actual
20569         parameter name. 
20570
20571 2004-03-16  Martin Baulig  <martin@ximian.com>
20572
20573         * reflection.c (type_get_signature_size): New static function.
20574         Compues the size of the type in a method signature.
20575         (method_get_signature_size): New static function; calls
20576         type_get_signature_size() to compute the actual size of the
20577         method's signature.
20578         (method_encode_signature): Use method_get_signature_size() to get
20579         the signature's size rather than using `nparams * 10'.
20580
20581 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20582
20583         * file-io.h: define here WapiOverlapped on windows. I don't want the
20584         regular OVERLAPPED one.
20585
20586         * file-io.c:
20587         * threadpool.c: somehow, BindIoCompletionCallback is not found.
20588         Disabling AIO on windows.
20589
20590 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20591
20592         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
20593         bug #55385.
20594
20595 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20596
20597         * appdomain.c: upgraded corlib version.
20598
20599         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
20600         and BeginWrite. Allow opening files for asynchrnous operations.
20601
20602         * file-io.h: new struct that maps FileStreamAsyncResult.
20603         * icall.c: added new icalls.
20604         * process.[ch]: support setting child process environment variables
20605         and use the SHELL or COMSPEC when UseShellExecute is true.
20606
20607         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
20608         callback for async. IO is here and also BindHandle.
20609
20610         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
20611         from here.
20612
20613 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
20614
20615         * reflection.c (create_custom_attr): Allow len == 0.
20616
20617         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
20618         computation on big-endian machines.
20619
20620 2004-03-13  Martin Baulig  <martin@ximian.com>
20621
20622         * class.h (MonoGenericInst): Added `int count_ifaces'.
20623
20624         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
20625         `ginst->count_ifaces' instead `klass->interface_count' since we
20626         may get called before the vtable is created.
20627
20628         * loader.c (mono_method_get_param_names): If we're a generic
20629         instance, return and don't initialize the class.
20630
20631         * reflection.c (mono_reflection_setup_generic_class): Don't call
20632         ensure_runtime_vtable().
20633         (mono_reflection_bind_generic_parameters): Set
20634         `ginst->count_ifaces'.
20635
20636 2004-03-11  Jackson Harper <jackson@ximian.com>
20637
20638         * icall.c:
20639         * unicode.c:
20640         * unicode.h: Remove unused System.Char icalls.
20641         
20642 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
20643
20644         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
20645         code when we P/Invoke the first library in Windows.Forms, instead
20646         of when we first open the assembly.
20647
20648         * assembly.c: Drop the lookup from here.
20649
20650 2004-03-10  Martin Baulig  <martin@ximian.com>
20651
20652         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
20653         class for properties, fields and events.  Finally fixes #54945.
20654
20655 2004-03-10  Martin Baulig  <martin@ximian.com>
20656
20657         * metadata.c (mono_metadata_class_equal): New static function;
20658         checks whether two generic instances or two generic parameters are
20659         equal.
20660         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
20661         compare classes.        
20662
20663 2004-03-10  Martin Baulig  <martin@ximian.com>
20664
20665         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
20666
20667         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
20668         argument and write it into the `reflection_info' field.
20669
20670         * icall.c
20671         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
20672         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
20673
20674 2004-03-09  Jackson Harper  <jackson@ximian.com>
20675
20676         * char-conversions.h: use 8 bits for numeric data its all we need
20677         * icall.c: numeric data is only 8 bits now.
20678
20679 2004-03-09  Martin Baulig  <martin@ximian.com>
20680
20681         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
20682
20683         * class.c (init_properties, init_events): Initialize the new
20684         `parent' field.
20685
20686         * reflection.c (typebuilder_setup_properties): Likewise.
20687         (typebuilder_setup_events): Likewise.
20688
20689         * reflection.h (MonoEventInfo): Replaced `parent with
20690         `declaring_type' and `reflected_type'.
20691
20692         * icall.c (ves_icall_get_property_info): Distinguish between
20693         declaring and reflected type.
20694         (ves_icall_get_event_info): Likewise.
20695
20696 2004-03-09  Martin Baulig  <martin@ximian.com>
20697
20698         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
20699         (ves_icall_Type_GetField): Correctly set field->klass.
20700
20701 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
20702
20703         * loader.h: Fix warning.
20704
20705 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
20706
20707         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
20708         library routine if present.  Notice that it will still continue
20709         executing even if its missing, for those working on the Gtk#
20710         edition of Windows.Forms.
20711
20712         * assembly.c (do_mono_assembly_open): If loading the
20713         System.Windows.Forms call mono_loader_wini_init.
20714
20715 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
20716
20717         * class.h: Added MonoRemoteClass struct.
20718         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
20719         function for MonoStrings.
20720         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
20721         Added internal call for getting the proxy type.
20722         * marshal.c: Get the type of transparent proxies from its remote_class.
20723         Added methods that generate the IL for type checks and casts:
20724         mono_marshal_get_isinst, mono_marshal_get_castclass, 
20725         mono_marshal_get_proxy_cancast.
20726         * marshal.h: Declaration of the previous new methods.
20727         * object.c: Added new moethods for creating and updating MonoRemoteClass
20728         instances: mono_remote_class, mono_upgrade_remote_class, 
20729         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
20730         * verify.c: FIx transparent_proxy_fields layout.
20731         * appdomain.c: Bump corlib version.
20732
20733 2004-03-04  Jackson Harper  <jackson@ximian.com>
20734
20735         * icall.c: Add icall to access char conversion tables.
20736         * char-conversions.h: Character conversion tables.
20737         * Makefile.am: Add char-conversions.h private header file.
20738         
20739 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
20740
20741         * appdomain.c (unload_thread_main): Increase unloading timeout to
20742         10 sec as a temporary workaround for Nant problems.
20743
20744 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
20745
20746         * gc.c: Add checks for GC_enable and GC_disable.
20747
20748         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
20749         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
20750         (bug #54988).
20751         
20752 2004-02-27  Martin Baulig  <martin@ximian.com>
20753
20754         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20755         `MonoReflectionType *' instead of a `MonoType *'.
20756
20757 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
20758
20759         * gc.c (run_finalize): Avoid finalizing the object representing the
20760         finalizer thread.
20761         (finalizer_thread): Fix warning.
20762
20763 2004-02-25  Martin Baulig  <martin@ximian.com>
20764
20765         * class.c (_mono_class_get_instantiation_name): Added `int offset'
20766         argument for nested types.
20767         (mono_class_create_generic): Added support for nested generictypes.
20768
20769         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
20770         `GList *nested'.
20771
20772         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
20773
20774         * reflection.c (method_encode_signature): Increase the minimum
20775         value of `size' from 10 to 11.
20776         (mono_reflection_bind_generic_parameters): Take `int type_argc'
20777         and `MonoType **types' arguments instead of the `MonoArray
20778         *types'; added `MonoType *nested_in'.  Recursively instantiate
20779         nested classes. 
20780
20781 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
20782
20783         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
20784         stack_overflow_ex members which are used by exception handling.
20785
20786         * appdomain.c (mono_runtime_init): Initialize the new members.
20787
20788         * gc.c (mono_gc_enable): New helper function.
20789         * gc.c (mono_gc_disable): New helper function.
20790
20791 2004-02-23  Martin Baulig  <martin@ximian.com>
20792
20793         * icall.c: I must have been really stupid - make it actually work
20794         this time ;-)
20795
20796 2004-02-23  Martin Baulig  <martin@ximian.com>
20797
20798         * loader.c (method_from_memberref): Only inflate the method if
20799         it's in another klass.
20800
20801 2004-02-23  Martin Baulig  <martin@ximian.com>
20802
20803         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
20804         (mono_class_init): If we're a generic instance and an interface,
20805         compute `class->interface_id'; also create `class->interfaces'
20806         here and inflate them.
20807
20808         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
20809         `ginst->is_open'.
20810         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
20811
20812         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
20813
20814 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
20815
20816         * reflection.c (method_encode_code): Improved the error message
20817         generated by the exception.
20818
20819 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20820
20821         * icall.c: Martin did not do what he said in the ChangeLog for
20822         2004-02-18, but put back the changes for properties and events.
20823         Commenting those changes out again and adding comment to bug #54518.
20824         
20825         * process.c: removed warning.
20826
20827 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
20828
20829         * marshal.c (emit_struct_conv): Print an error message instead of
20830         asserting when a type does not have the StructLayout attribute.
20831
20832 2004-02-20  Martin Baulig  <martin@ximian.com>
20833
20834         * reflection.c (mono_type_get_object): Also use the cache for
20835         generic instances.
20836         (mono_reflection_bind_generic_parameters): Always compute
20837         `ginst->ifaces'.        
20838
20839 2004-02-20  Martin Baulig  <martin@ximian.com>
20840
20841         * class.h (MonoGenericMethod): Removed `klass'.
20842
20843         * class.c (mono_class_inflate_generic_method): Added `MonoClass
20844         *klass' argument.
20845
20846 2004-02-20  Martin Baulig  <martin@ximian.com>
20847
20848         * reflection.c (method_encode_methodspec): Actually use the
20849         uninflated signature for the memberref.
20850
20851 2004-02-20  Martin Baulig  <martin@ximian.com>
20852
20853         * class.h (MonoGenericMethod): Removed `declaring'.
20854
20855         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
20856         is NULL, compute it here.
20857
20858 2004-02-20  Martin Baulig  <martin@ximian.com>
20859
20860         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
20861
20862         * metadata.c (mono_metadata_generic_inst_hash): New method.
20863         (mono_metadata_generic_inst_equal): New method.
20864
20865         * reflection.c (mono_reflection_bind_generic_parameters): Use the
20866         `klass->image->generic_inst_cache' cache to avoid creating
20867         duplicate MonoGenericInst's.
20868
20869         * class.c (mono_class_inflate_generic_type): Use the cache.
20870
20871 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
20872
20873         * object.c: fixed gc descriptor calculation for embedded valuetypes.
20874
20875 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20876
20877         * icall.c: added Socket.WSAIoctl icall.
20878
20879         * socket-io.[ch]: implemented
20880         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
20881
20882 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
20883
20884         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
20885
20886 2004-02-18  Urs C Muff  <umuff@quark.com>
20887
20888         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
20889         this work on PPC and other big-endian architectures.
20890
20891         * debug-mono-symfile.h: Prepended the names of all the `guint32'
20892         fields with an underscore to make sure they're only accessed by
20893         the read32() macro.
20894
20895 2004-02-18  Martin Baulig  <martin@ximian.com>
20896
20897         * icall.c: Put the klass->refclass changes back for methods and
20898         fields, but not for properties and events.  We're currently not
20899         distinguishing between DeclaringType and ReflectedType for
20900         properties and events, that's what caused the regressions.
20901
20902 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20903
20904         * object.c:
20905         (mono_async_result_new): the handle can be NULL.
20906
20907         * threadpool.c: Use an event instead of a semaphore, don't initialize
20908         it until needed. This saves quite a few semaphores from being created
20909         when using the threadpool.
20910
20911 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
20912
20913         * object.c (mono_string_is_interned_lookup): Fix interning of long
20914         strings. Fixes #54473.
20915
20916         * domain.c (ldstr_equal): Optimize if the two strings are equal.
20917
20918         * icall.c: Revert the klass->refclass changes since they introduce
20919         regressions (bug #54518).
20920
20921 2004-02-18  Martin Baulig  <martin@ximian.com>
20922
20923         * class.c (mono_class_init): If we're a generic instance and don't
20924         come from a TypeBuilder, inflate our members here.
20925         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
20926         (mono_class_create_generic): New public method.
20927         (mono_class_initialize_generic): Removed.
20928         (get_instantiation_name): Renamed to
20929         _mono_class_get_instantiation_name() and made it public.
20930
20931 2004-02-18  Martin Baulig  <martin@ximian.com>
20932
20933         * class.c (mono_class_inflate_generic_type): Clear the new
20934         instance's `nginst->klass' when inflating a generic instance.
20935         (mono_class_is_subclass_of): Added (basic) support for generic
20936         instances.
20937
20938 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
20939
20940         * appdomain.h, domain.c: use a MonoCodeManager instead of a
20941         MonoMempool to hold compiled native code.
20942
20943 2004-02-17  Martin Baulig  <martin@ximian.com>
20944
20945         * class.h (MonoDynamicGenericInst): Added `count_properties' and
20946         `properties'.
20947
20948         * reflection.c (mono_reflection_generic_inst_initialize): Added
20949         `MonoArray *properties' argument.
20950
20951         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
20952
20953 2004-02-17  Martin Baulig  <martin@ximian.com>
20954
20955         * icall.c (ves_icall_Type_GetFields): Renamed to
20956         ves_icall_Type_GetFields_internal() and added a
20957         `MonoReflectionType *rtype' argument; pass it to
20958         mono_field_get_object() to set the field's "reflected" type.
20959         (ves_icall_Type_GetConstructors): Likewise.
20960         (ves_icall_Type_GetEvents): Likewise.
20961         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
20962         argument; pass it to mono_method_get_object() to set the method's
20963         "reflected" type.       
20964
20965 2004-02-17  Martin Baulig  <martin@ximian.com>
20966
20967         * class.h (MonoDynamicGenericInst): New type.
20968         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
20969
20970         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
20971         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
20972         (ves_icall_MonoGenericInst_GetFields): New interncall.
20973
20974         * class.c (mono_class_from_generic): Don't call
20975         mono_class_initialize_generic() if this is a dynamic instance;
20976         ie. it's being created from a TypeBuilder.
20977         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
20978         `class->byval_arg.type'.
20979
20980         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
20981         to `inflate_method' and made static.
20982         (mono_reflection_inflate_field): Removed.
20983         (mono_reflection_generic_inst_initialize): New public method.
20984
20985         * reflection.h (MonoReflectionGenericInst): Removed `methods',
20986         `ctors' and `fields'; added `initialized'.
20987
20988 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
20989
20990         * debug-helpers.c (mono_method_full_name): Fix output for empty
20991         namespaces.
20992
20993 2004-02-12  Martin Baulig  <martin@ximian.com>
20994
20995         * class.h (MonoClassField): Added `MonoType *generic_type'.
20996
20997         * reflection.c (mono_image_get_fieldref_token): Added support for
20998         instantiated generic types.
20999         (field_encode_inflated_field): Removed.
21000         (mono_image_get_inflated_field_token): Removed.
21001         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
21002
21003         * reflection.h (MonoReflectionInflatedField): Removed.
21004
21005 2004-02-12  Martin Baulig  <martin@ximian.com>
21006
21007         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
21008         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
21009
21010         * reflection.c (mono_image_get_methodspec_token): Take a
21011         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
21012         (mono_image_create_token): Check whether we have a
21013         `method->signature->gen_method' and call
21014         mono_image_get_methodspec_token() if appropriate.
21015         (inflated_method_get_object): Removed.
21016         (mono_reflection_bind_generic_method_parameters): Return a
21017         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
21018         (mono_reflection_inflate_method_or_ctor): Likewise.
21019
21020         * reflection.h (MonoReflectionInflatedMethod): Removed.
21021
21022 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
21023
21024         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
21025         for custom valuetype marshalling.
21026
21027         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
21028
21029 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21030
21031         * icall.c: fixed WSAGetLastError_internal name.
21032
21033 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
21034
21035         * threads.c (mono_thread_attach): Allow this to be called multiple
21036         times for a thread.
21037         
21038         * threads.c (build_wait_tids): Do not wait for ourselves.
21039
21040         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
21041         appdomain list is empty.
21042
21043         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
21044         memory returned by mono_string_builder_to_utf16, since it points into
21045         managed memory. Thanks to Bernie Solomon for noticing this.
21046
21047         * icall.c: Add AppDomainSetup icalls.
21048
21049         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
21050
21051         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
21052         types.
21053
21054         * reflection.c (reflection_methodbuilder_to_mono_method): Save
21055         custom attributes to the method_aux struct. Also fix array indexes etc.
21056
21057         * loader.c (mono_method_get_param_names): Make dynamic case work again.
21058         
21059 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
21060
21061         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
21062         (both static and runtime) and reduce startup time.
21063
21064 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
21065
21066         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
21067         AsAny marshalling conversion instead of crashing.
21068
21069         * marshal.c: Fix warnings.
21070
21071 2004-02-09  Martin Baulig  <martin@ximian.com>
21072
21073         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
21074
21075         * reflection.h (MonoReflectionInflatedMethod): Removed the
21076         `declaring' field, it's now in the unmanaged MonoGenericMethod.
21077
21078         * reflection.c (method_encode_methodspec): Removed the `method'
21079         argument; we get it from `gmethod->declaring'.
21080         (inflated_method_get_object): Removed the `declaring' argument.
21081
21082 2004-02-09  Martin Baulig  <martin@ximian.com>
21083
21084         * class.h (MonoGenericMethod): New type.
21085         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
21086         `generic_method'.
21087
21088         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
21089         a `MonoGenericMethod *gen_method' one.
21090
21091         * class.c (mono_class_inflate_generic_type): Take an additional
21092         `MonoGenericMethod * argument.  This is only non-NULL if we're
21093         inflating types for a generic method.   
21094         (mono_class_inflate_generic_signature): Renamed to
21095         inflate_generic_signature() and made static; take a
21096         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
21097         (inflate_generic_header): Take a `MonoGenericMethod *' argument
21098         instead of a `MonoGenericInst *' one.
21099         (mono_class_inflate_generic_method): Likewise.
21100
21101         * reflection.c (encode_generic_method_sig): Take a
21102         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
21103         (method_encode_methodspec): Likewise.
21104         (inflated_method_get_object): Likewise. 
21105
21106         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
21107         field with a `MonoGenericMethod *gmethod' one.  
21108
21109 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
21110
21111         * class.h (mono_class_has_parent): add parens to expansion
21112         so you can ! this.
21113
21114 2004-02-08  Martin Baulig  <martin@ximian.com>
21115
21116         * image.h (MonoImage): Removed `generics_cache'.
21117
21118         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
21119         instead of a `MonoType *' argument; removed the `inflate_methods'
21120         argument.  Don't inflate methods here.
21121
21122         * loader.c (find_method): If it's a generic instance, call
21123         mono_class_init() on the `sclass->generic_inst->generic_type'.
21124
21125         * metadata.c (mono_type_size): Make this work on uninitialized
21126         generic instances; call it on the `ginst->generic_type's class.
21127
21128         * reflection.c (mono_reflection_bind_generic_parameters): Call
21129         mono_class_from_generic() to create the `ginst->klass'.
21130
21131 2004-02-08  Martin Baulig  <martin@ximian.com>
21132
21133         * class.h (MonoClass): Changed type of `generic_inst' from
21134         `MonoType *' to `MonoGenericInst *'.
21135
21136 2004-02-08  Martin Baulig  <martin@ximian.com>
21137
21138         * icall.c (ves_icall_Type_BindGenericParameters): Just call
21139         mono_type_get_object(), this is now creating a `MonoGenericInst'
21140         for MONO_TYPE_GENERICINST.
21141         (ves_icall_MonoGenericInst_GetParentType): Likewise.
21142         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
21143
21144         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
21145         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
21146         (inflated_method_get_object): Added `MonoClass *refclass' argument.
21147         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
21148         and reflected type.
21149
21150         * reflection.h (MonoReflectionInflatedMethod): Removed
21151         `declaring_type' and `reflected_type'.
21152
21153 2004-02-08  Martin Baulig  <martin@ximian.com>
21154
21155         * class.h (MonoGenericInst): Added `MonoType *parent' and
21156         `MonoType **ifaces'.
21157
21158         * reflection.h (MonoReflectionGenericInst): Removed `klass',
21159         `parent' and `interfaces'.
21160
21161         * reflection.c (mono_reflection_bind_generic_parameters): Take a
21162         `MonoType *' argument and return a `MonoType *'.
21163
21164         * icall.c
21165         (ves_icall_MonoGenericInst_GetParentType): New interncall.
21166         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
21167
21168 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
21169
21170         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
21171         valuetype marshalling.
21172
21173 2004-02-06  Martin Baulig  <martin@ximian.com>
21174
21175         * class.c
21176         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
21177         (my_mono_class_from_generic_parameter): Likewise.
21178
21179 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
21180
21181         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
21182         contents of the symbol files lazily.
21183
21184         * object.h (MonoThread): Add 'name' and 'name_len' fields.
21185
21186         * threads.h threads.c icall.c: New icalls for getting and setting the
21187         threads name.
21188
21189 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
21190
21191         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
21192         Raise an exception when the domain is not found.
21193
21194 2004-02-03  Martin Baulig  <martin@ximian.com>
21195
21196         * reflection.c (mono_image_get_methodspec_token): Use the
21197         uninflated signature; fixes gen-33.
21198
21199 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
21200
21201         * gc.c threads.c: Make the finalizer thread a normal managed thread so
21202         the finalizer code can use thread functionality.
21203
21204         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
21205         the finalizer thread.
21206
21207         * threads.c: Make some functions more robust.
21208
21209         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
21210
21211         * metadata.h: Add new marshalling conventions.
21212
21213         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
21214         stringbuilder marshalling. Fixes #53700.
21215
21216         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
21217
21218         * reflection.c (mono_image_get_type_info): Save declarative security
21219         info.
21220
21221         * reflection.c (mono_image_get_field_info): Handle uninitialized 
21222         unmanaged fields as well.
21223
21224         * appdomain.c: Bump corlib version.
21225
21226 2004-02-01  Martin Baulig  <martin@ximian.com>
21227
21228         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
21229         method type arguments.  
21230
21231 2004-01-30  Duncan Mak  <duncan@ximian.com>
21232
21233         * marshal.h: Add prototype for
21234         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
21235         and
21236         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
21237         fix the build.
21238
21239 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
21240
21241         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
21242         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
21243
21244 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
21245
21246         * marshal.c (mono_marshal_get_native_wrapper): Add support for
21247         custom marshalling of valuetypes.
21248
21249         * marshal.c: Fix some warnings.
21250
21251 2004-01-29  Martin Baulig  <martin@ximian.com>
21252
21253         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
21254         for generic method parameters.
21255
21256         * reflection.c (method_encode_methodspec): Write the uninflated
21257         signature into the methodspec table.
21258         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
21259         is always the uninflated method.
21260         (reflection_methodbuilder_to_mono_method): Copy the generic
21261         parameters from the MethodBuilder into `header->gen_params'.
21262
21263 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
21264
21265         * class.c (mono_class_from_generic_parameter): Fix warning.
21266
21267 2004-01-27  Martin Baulig  <martin@ximian.com>
21268
21269         * class.c (mono_class_from_generic_parameter): Don't create
21270         `klass->methods' here.  
21271
21272 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
21273
21274         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
21275         extension since it does not work with libraries named lib<FOO>.dll.so.
21276
21277 2004-01-25  Martin Baulig  <martin@ximian.com>
21278
21279         * class.c (mono_class_inflate_generic_type): Added support for
21280         MONO_TYPE_GENERICINST.
21281
21282         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
21283         inflate methods on open constructed types.      
21284
21285 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21286
21287         * object.c: fire ProcessExit event in the root AppDomain after running
21288         Main. Fixes bug #53299.
21289
21290 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
21291
21292         * socket-io.c: include the new socket-wrappers.h header.
21293         Use the wrappers instead of the unix socket functions to make the code
21294         more clear.
21295
21296 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
21297
21298         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
21299
21300         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
21301         Fixes #22532.
21302
21303 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
21304
21305         * reflection.c (mono_image_create_pefile): Handle the case when the
21306         entry point is not a MethodBuilder.
21307
21308         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
21309         field to ReflectionMethod since it is not allways a builder.
21310
21311         * reflection.c (type_get_fully_qualified_name): New helper function to
21312         return the fully qualified name of a type.
21313
21314         * reflection.c (encode_marshal_blob): Always emit the fully qualified
21315         type name for custom marshallers.
21316
21317         * reflection.c (mono_marshal_spec_from_builder): Ditto.
21318
21319         * class.c (mono_class_setup_vtable): If a parent class already 
21320         implements an interface, use the implementing methods from that class.
21321         Fixes #53148.
21322
21323 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21324
21325         * threadpool.c: just return instead of ExitThread to allow for thread
21326         clean up earlier.
21327
21328 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
21329
21330         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
21331         when closing resource modules.
21332
21333         * reflection.c (mono_image_create_pefile): Handle the case when the
21334         entry point is not a MethodBuilder.
21335
21336         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
21337         field to ReflectionMethod since it is not allways a builder.
21338
21339 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21340
21341         * marshal.c (mono_marshal_get_managed_wrapper): 
21342         mono_marshal_alloc takes native int so CONV_I
21343         the arg for 64bits.
21344
21345 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
21346
21347         * reflection.c (fixup_cattrs): New function to fixup the methoddef
21348         tokens in the cattr table. Fixes #53108.
21349
21350 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21351
21352         * loader.c: don't trim ".dll" before looking up in the config file.
21353         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
21354
21355 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
21356
21357         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
21358         Return the module which contains the resource as well.
21359         (ves_icall_System_Reflection_Module_Close): New icall.
21360
21361         * appdomain.c: Bump corlib version number.
21362
21363         * image.c (mono_image_addref): New public function.
21364
21365         * assembly.c: Call mono_image_addref.
21366
21367         * reflection.c (mono_module_get_object): Increase reference count of 
21368         the image.
21369
21370         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
21371         Fixes #22532.
21372
21373         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
21374         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
21375         proper exceptions on DllImport problems.
21376
21377 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
21378
21379         * class.c, metadata.c: eliminate CSIZE macro.
21380
21381 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
21382
21383         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
21384         * object.h: Added async_callback field in MonoAsyncResult.
21385         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
21386         * verify.c: Added async_callback in MonoAsyncResult layout.
21387
21388 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
21389
21390         * reflection.c (mono_reflection_get_custom_attrs): Add support
21391         for Modules.
21392
21393 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
21394
21395         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
21396         marshalling.
21397         (mono_marshal_method_from_wrapper): Add null pointer check.
21398
21399 2004-01-16  Martin Baulig  <martin@ximian.com>
21400
21401         * debug-mono-symfile.h: Set version number to 36 and reflect
21402         latest symbol writer changes.
21403
21404 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
21405
21406         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
21407         multi-dimensional arrays.
21408         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
21409         (mono_class_from_mono_type): Use bounded_array_class_get.
21410         
21411         * class.c (mono_bounded_array_class_get): New function which takes
21412         a 'bounded' bool argument to distinguish vectors from one dimensional
21413         arrays.
21414
21415         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
21416         bounded_array_class_get if the array has bounds.
21417
21418         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21419         Search modules loaded using AssemblyBuilder:AddModule as well.
21420
21421 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21422
21423         * appdomain.c: increased corlib version.
21424         * filewatcher.c: removed g_print.
21425         * icall.c:
21426         (get_property_info): only allocate what is actually requested.
21427         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
21428
21429 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21430
21431         * Makefile.am: added filewatcher.[ch]
21432         * filewatcher.[ch]: FileSystemWatcher runtime support.
21433         * icall.c: added new FSW icalls.
21434
21435 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
21436
21437         * string-icalls.c: fix stringbuilder regression as suggested by
21438         Iain McCoy <iain@mccoy.id.au>.
21439
21440 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
21441
21442         * process.c (process_read_stringtable_block): Recognize '007f' as
21443         a language neutral stringtable block.
21444
21445 2004-01-12  Patrik Torstensson
21446
21447         * object.h (MonoStringBuilder) : Changed layout to support our
21448         new stringbuilder class.
21449         * marshal.c: Change marshalling to support the new layout of 
21450         string builder.
21451         * appdomain.c: increased version number because new layout of
21452         string builder.
21453
21454 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
21455
21456         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
21457         assembly name as an string instead of an AssemblyName, since it is
21458         easier to extract info from it.
21459
21460         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
21461         the culture subdirectories too. Fixes #52231.
21462
21463 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21464
21465         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
21466         It takes 2 new parameters with an optional name for the method to look
21467         for and case ignoring info.
21468
21469         * threadpool.c: removed unused variable.
21470
21471 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21472
21473         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
21474         It takes 2 new parameters with an optional name for the property to look
21475         for and case ignoring info.
21476         Fixes bug #52753.
21477
21478 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
21479
21480         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
21481         Fix #52451.
21482
21483 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21484
21485         * appdomain.c:
21486         * assembly.c: escape the uri before passing it to g_filename_from_uri.
21487         Fixes bug #52630.
21488
21489 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
21490
21491         * reflection.c: Add support for more than one unmanaged resource.
21492
21493         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
21494         in field->def_value, as done in all other cases.
21495
21496         * reflection.c (mono_reflection_get_custom_attrs): Add support for
21497         TypeBuilders.
21498
21499         * reflection.c (mono_reflection_create_runtime_class): Remove 
21500         errorneous assignment to klass->element_class, since it is already
21501         done in mono_reflection_setup_internal_class.
21502
21503 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21504
21505         * gc.c: added missing LeaveCriticalSection.
21506         * icall.c: indented a couple of lines.
21507         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
21508         if we call EndInvoke inside a callback. Fixes bug #52601.
21509
21510 2004-01-07  Martin Baulig  <martin@ximian.com>
21511
21512         * mono-debug-debugger.h
21513         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
21514
21515 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
21516
21517         * appdomain.c: Use messages in NotImplementedException.
21518
21519         * exception.c (mono_get_exception_not_implemented): Now this takes
21520         a message argument.
21521
21522         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
21523         exception instead of g_asserting an aborting when something is not
21524         implemented.
21525
21526         Add some inline docs.
21527
21528 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
21529
21530         * reflection.h: Update after changes to object layout.
21531
21532         * reflection.c: Implement saving of unmanaged aka win32 resources.
21533
21534         * appdomain.c: Bump version number.
21535
21536         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
21537         Handle missing domains gracefully.
21538
21539 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
21540
21541         * file-io.c : On Windows, there are much more invalid_path_chars.
21542
21543 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
21544
21545         * class.h, object.c: prepare for GetType () speedup.
21546
21547 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
21548
21549         * profiler.c: workaround for --profile null reference exception on
21550           cygwin. Patch by Patrik Torstensson.
21551
21552 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
21553
21554         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
21555         make work for unaligned access.
21556
21557 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
21558
21559         * class.c: small cleanup (class->fields [i] -> field).
21560         * image.c: check address of metadata is valid.
21561
21562 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
21563
21564         * assembly.h assembly.c (mono_assembly_loaded): New public function to
21565         search the list of loaded assemblies.
21566
21567         * reflection.c (mono_reflection_type_from_name): Use 
21568         mono_assembly_loaded instead of mono_image_loaded.
21569
21570         * reflection.c: Fix warnings.
21571
21572 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
21573
21574         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
21575         is dynamic. This is needed since an assembly can contain both dynamic and
21576         non-dynamic images.
21577
21578         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
21579         assembly->dynamic.
21580
21581         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
21582
21583         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
21584         to store modules loaded using AddModule.
21585
21586         * reflection.c (mono_image_fill_file_table): Generalize this so it works
21587         on Modules.
21588
21589         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
21590
21591         * reflection.c (mono_image_fill_export_table_from_module): New function to
21592         fill out the EXPORTEDTYPES table from a module.
21593
21594         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
21595         into a separate function. Also handle loaded non-dynamic modules.
21596
21597         * reflection.c (mono_image_basic_init): Fix memory allocation.
21598
21599         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21600
21601         * assembly.c (mono_assembly_load_references): Make this public.
21602
21603 2003-12-19  Martin Baulig  <martin@ximian.com>
21604
21605         * class.c (mono_class_initialize_generic): Made this static, take
21606         a `MonoGenericInst *' instead of a `MonoClass *'.
21607         (mono_class_from_generic): Call mono_class_initialize_generic()
21608         unless we're already initialized or being called from
21609         do_mono_metadata_parse_generic_inst().
21610
21611         * class.h (MonoGenericInst): Added `initialized' and
21612         `init_pending' flags.
21613
21614         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
21615         `mono_class_init (gklass)' or mono_class_initialize_generic()
21616         here; set `generic_inst->init_pending' while parsing the
21617         `type_argv'.
21618
21619 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
21620
21621         * locales.c: include string.h for memxxx prototypes
21622
21623 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
21624
21625         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
21626         constructor when accessing literal fields.
21627
21628 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
21629
21630         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21631
21632         * reflection.c (assembly_add_resource_manifest): New function to fill
21633         the MANIFESTRESOURCE table.
21634
21635         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
21636
21637         * reflection.h: Update to changes in class layout.
21638
21639         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
21640         Reenable call to mono_runtime_is_shutting_down ().
21641
21642         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
21643         determine if the runtime is shutting down.
21644
21645 2003-12-16  Jackson Harper <jackson@ximian.com>
21646
21647         * icall.c: comment out call to mono_runtime_is_shutting_down to
21648         fix build.
21649         
21650 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
21651
21652         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
21653         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
21654
21655 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
21656
21657         * reflection.c: move definition of swap_with_size
21658         to before its first call
21659
21660 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
21661
21662         * appdomain.c (mono_runtime_is_shutting_down): New public function.
21663
21664         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
21665         icall.
21666
21667         * object.c: Fix warnings.
21668
21669         * icall.c (ves_icall_Type_Get...): Only consider inherited static
21670         members if FlattenHierarchy is set.
21671
21672         * reflection.c (mono_image_add_decl_security): New function to emit
21673         declarative security.
21674
21675         * reflection.h reflection.c: Add support for declarative security.
21676
21677         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
21678         
21679 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
21680
21681         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
21682         
21683         * appdomain.c verify.c: Moved corlib version checking into its own
21684         function in appdomain.c since it needs to create vtables etc.
21685
21686 2003-12-13  Patrik Torstensson <p@rxc.se>
21687
21688         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
21689         instead of unwrapped server.
21690
21691 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
21692
21693         * verify.c (check_corlib): Fix field index.
21694
21695 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
21696
21697         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
21698         GetGacPath icall.
21699
21700 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
21701
21702         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
21703         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
21704         cope with sizeof(size_t) != sizeof(guint32).
21705
21706 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21707
21708         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
21709         in case of failure.
21710
21711 2003-12-10  Mark Crichton <crichton@gimp.org>
21712
21713         * icall.c: removed the GetNonZeroBytes.  We now handle this case
21714         in managed code.
21715
21716         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
21717
21718 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
21719
21720         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
21721         marked as deleted.
21722
21723 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
21724
21725         * verify.c (check_corlib): Handle the case when the version field is 
21726         initialized by a static constructor.
21727
21728 2003-12-08  Patrik Torstensson  <p@rxc.se>
21729
21730     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
21731
21732 2003-12-08  Martin Baulig  <martin@ximian.com>
21733
21734         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
21735         a MonoReflectionGenericParameter, also take the parameter index
21736         and name as arguments.
21737         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
21738         (ves_icall_MonoGenericParam_initialize): New interncall.
21739         (ves_icall_Type_make_byref_type): New interncall.
21740
21741         * reflection.h (MonoReflectionGenericParam): Derive from
21742         MonoReflectionType, not just from MonoObject.  Added `refobj' and
21743         `index' fields.
21744
21745         * reflection.c (mono_reflection_define_generic_parameter): Create
21746         and return a new MonoReflectionGenericParam; don't initialize the
21747         constraints here.
21748         (mono_reflection_initialize_generic_parameter): New public method;
21749         initializes the constraints and creates the `param->pklass'.
21750
21751 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
21752
21753         * reflection.h reflection.c: Use the new fields 'num_types', 
21754         'num_fields' and 'num_methods' to track the number of types etc.
21755
21756         * verify.c (check_corlib): Check corlib version number.
21757
21758 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
21759
21760         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
21761         function works on all methods.
21762
21763 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
21764
21765         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
21766         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
21767         the custom_type_info flag of the transparent proxy.
21768         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
21769         objects that supports IRemotingTypeInfo.
21770         * object.h: Added custom_type_info field in transparent proxy.
21771
21772 2003-12-06  Martin Baulig  <martin@ximian.com>
21773
21774         * class.c (mono_class_create_from_generic): Removed.
21775         (mono_class_from_generic): Check `ginst->klass' before doing
21776         anything else.  This is important to fully support "recursive"
21777         generic types.
21778
21779         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
21780         empty `generic_inst->klass' before doing anything else.
21781
21782 2003-12-06  Dick Porter  <dick@ximian.com>
21783
21784         * verify.c: 
21785         * object.h:
21786         * icall.c:
21787         * locales.c: Use C structs to access class fields.  Don't do a
21788         conversion between MonoString and UChar because both are
21789         platform-endian UTF-16.  Compare now takes startindex and count
21790         parameters.  Add a char overload for IndexOf.  Speed up the
21791         invariant string IndexOf.
21792
21793 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
21794
21795         * Makefile.am (monosn_LDADD): Fix parallel build.
21796
21797 2003-12-04  Martin Baulig  <martin@ximian.com>
21798
21799         * icall.c
21800         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21801         (ves_icall_Type_make_array_type): New interncall.       
21802
21803 2003-12-04  Martin Baulig  <martin@ximian.com>
21804
21805         * locales.c: also change it in the !HAVE_ICU case.
21806
21807 2003-12-04  Dick Porter  <dick@ximian.com>
21808
21809         * icall.c:
21810         * locales.c: construct_compareinfo is now in CompareInfo, not
21811         CultureInfo.
21812
21813 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
21814
21815         * image.c (mono_image_load_file_for_image): Cache loaded images in the
21816         image->files array.
21817
21818         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
21819         table as well.
21820
21821         * assembly.c (mono_assembly_load_references): Only load references
21822         once.
21823
21824         * class.c (mono_class_from_name): Avoid linear search of the 
21825         EXPORTEDTYPE table.
21826
21827         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
21828
21829 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
21830
21831         * image.h (MonoImage): Add 'field_cache' field.
21832
21833         * loader.c (mono_field_from_token): Cache field lookups.
21834         
21835         * reflection.c (mono_module_get_object): Fix name property.
21836
21837         * icall.c (ves_icall_get_enum_info): Update after changes to 
21838         mono_metadata_get_constant_index ().
21839
21840         * icall.c: Get rid of get_type_info icall, use a separate icall for
21841         each type property to avoid needless memory allocations. Fixes #51514.
21842
21843         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
21844         to avoid needless binary searches.
21845
21846         * class.c (class_compute_field_layout): Move the initialization of
21847         field->def_value to mono_class_vtable ().
21848
21849         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
21850         non-corlib types.
21851
21852         * object.c (mono_object_allocate): Make it inline.
21853
21854         * object.c (mono_object_allocate_spec): Make it inline.
21855         
21856 2003-12-02  Dick Porter  <dick@ximian.com>
21857
21858         * locales.c (create_NumberFormat): NumberFormatInfo construction.
21859         Patch by Mohammad DAMT (mdamt@cdl2000.com).
21860
21861 2003-12-01  Dick Porter  <dick@ximian.com>
21862
21863         * threads.c: Fix signature and call in CreateMutex and
21864         CreateEvent.
21865
21866 2003-12-01  Dick Porter  <dick@ximian.com>
21867
21868         * icall.c: 
21869         * locales.c: Implement string compares and searching
21870
21871         * object.h: Add extra Thread field
21872
21873 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
21874
21875         * reflection.c (fixup_method): Add support for MonoCMethod.
21876
21877 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
21878
21879         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
21880
21881         * reflection.c (assembly_name_to_aname): Allow extra characters in
21882         assembly names. Fixes #51468.
21883
21884 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
21885
21886         * exception.c (mono_exception_from_name_domain): New helper function.
21887
21888         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
21889         exception object in the correct domain.
21890
21891         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
21892         formatting + make a copy a the input data.
21893
21894         * loader.c (mono_get_method_from_token): Methods which contain
21895         native code do not have entries in the ImplMap.
21896
21897         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
21898         Thanks to Gonzalo for spotting this.
21899         
21900         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
21901         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
21902
21903         * assembly.h (mono_assembly_load_from): Split the second part of 
21904         assembly loading into a new public function.
21905
21906         * exception.h (mono_get_exception_bad_image_format): New function.
21907
21908 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
21909
21910         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21911         Enumerate all modules inside a dynamic assembly. Fixes #51293.
21912         
21913         * icall.c: Add new icall for creating dynamic methods.
21914
21915         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
21916
21917         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
21918
21919         * reflection.c (mono_reflection_create_dynamic_method): New icall to
21920         create a dynamic method.
21921
21922         * reflection.c (resolve_object): New helper function.
21923
21924         * reflection.c: Generalize ReflectionMethodBuilder and the functions
21925         which manipulate it so they can also work on dynamic methods.
21926
21927         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
21928         creating the MonoReflectionMethodAux structure if it is not needed.
21929         
21930         * reflection.h verify.c: Update after changes to object layout.
21931
21932         * reflection.c (method_builder_encode_signature): Fix compilation on
21933         gcc 2.95.x.
21934
21935 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
21936
21937         * appdomain.h: Added support for context static fields. Added static_data
21938           field to MonoAppContext and renamed thread_static_fields to a more
21939           generic special_static_fields in MonoAppDomain, since it can now contain
21940           context static fields.
21941         * domain.c: Updated hashtable name.
21942         * object.c: Replaced field_is_thread_static() for a more generic
21943           field_is_special_static() which also checks for context static attribute.
21944           In mono_class_vtable(), added support for static context fields.
21945         * threads.c: Changed methods that manage thread static fields to more
21946           generic methods so they can be reused both for thread and context static
21947           data.
21948         * threads.h: Declared some new methods.
21949
21950 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
21951
21952         * reflection.h: Update after changes to the managed types.
21953
21954         * reflection.c (encode_custom_modifiers): New helper function.
21955
21956         * reflection.c (method_encode_signature): Emit custom modifiers.
21957
21958         * reflection.c (field_encode_signature): Emit custom modifiers.
21959
21960 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
21961
21962         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
21963
21964         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
21965         implementation.
21966
21967         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
21968         icall.
21969
21970         * object.c (mono_field_get_value_object): New function.
21971
21972         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
21973         specific.
21974
21975 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
21976
21977         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
21978         return a preallocated out-of-memory exception instance.
21979
21980         * object.c (out_of_memory): Use the new function.
21981
21982         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
21983         flag is before the custom modifiers. Fixes #49802.
21984
21985 2003-11-16  Martin Baulig  <martin@ximian.com>
21986
21987         * class.c (mono_class_is_open_constructed_type): Implemented the
21988         MONO_TYPE_GENERICINST case.
21989
21990 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
21991
21992         * assembly.c (mono_assembly_fill_assembly_name): New function to
21993         fill out the MonoAssemblyName structure.
21994         (mono_assembly_open): Use the new function.
21995
21996         * icall.c (fill_reflection_assembly_name): New helper function.
21997
21998         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
21999         new function.
22000
22001         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
22002
22003 2003-11-15  Martin Baulig  <martin@ximian.com>
22004
22005         * class.c (mono_class_is_open_constructed_type): New public
22006         function; checks whether a type is an open constructed type,
22007         ie. whether it still contains type parameters.
22008         (mono_class_inflate_generic_type): If we're a type parameter and
22009         the inflated type is also a MONO_TYPE_(M)VAR, return the original
22010         type.
22011
22012         * class.h (MonoGenericInst): Added `guint32 is_open'.
22013
22014         * loader.c (method_from_methodspec): Check whether we're an open
22015         or closed constructed type and set `ginst->is_open'.
22016
22017         * reflection.c (mono_reflection_bind_generic_parameters): Check
22018         whether we're an open or closed constructed type and set
22019         `ginst->is_open'.
22020         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
22021         from open constructed types.
22022
22023 2003-11-15  Martin Baulig  <martin@ximian.com>
22024
22025         * reflection.c (mono_reflection_bind_generic_parameters): If we're
22026         a generic instance (instead of a generic type declaration) with
22027         unbound generic parameters, bind them to our actual types.
22028
22029 2003-11-14  Martin Baulig  <martin@ximian.com>
22030
22031         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
22032
22033         * reflection.c (mono_reflection_bind_generic_parameters): If we're
22034         an interface type, populate `res->interfaces' with instantiated
22035         versions of all the interfaces we inherit.
22036
22037 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
22038
22039         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
22040         when MONO_PATH is set but doesn't contain the install dir.
22041
22042 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22043
22044         * icall.c:
22045         (ves_icall_Type_GetInterfaces): don't return an interface twice when
22046         it's also implemented in base classes. Fixes bug #50927.
22047
22048 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
22049
22050         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
22051         if this method is called from a finalizer. Fixes #50913.
22052
22053 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
22054
22055         * threads.c: Implement VolatileRead/VolatileWrite
22056
22057         * icall.c: Add new icalls for VolatileRead/VolatileWrite
22058
22059 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
22060
22061         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
22062         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
22063         2.95.3.
22064
22065         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
22066         from Peter Ross (pro@missioncriticalit.com).
22067         
22068 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
22069
22070         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
22071
22072 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
22073
22074         * assembly.c (mono_assembly_load_references): Disable check because it
22075         triggers on older corlibs which lots of people have.
22076
22077 2003-11-12  Jackson Harper  <jackson@ximian.com>
22078
22079         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
22080         load corlib.dll if mscorlib.dll is not found.
22081         * assembly.h: Remove corlib name define.
22082         * class.c:
22083         * domain.c:
22084         * image.c: Change corlib name to mscorlib.
22085         
22086 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
22087
22088         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
22089
22090 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
22091
22092         * appdomain.h: Added loader_optimization here to sync with the C#
22093         code, and add disallow_binding_redirects field.
22094
22095 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
22096
22097         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
22098
22099         * reflection.c (mono_image_build_metadata): Fix crash on modules
22100         with no types.
22101
22102         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
22103
22104         * icall.c (ves_icall_get_method_info): Return callingConvention as
22105         well.
22106
22107         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
22108         namespaces from the EXPORTEDTYPE table as well.
22109
22110         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
22111         from all modules inside the assembly.
22112         
22113 2003-11-11  Martin Baulig  <martin@ximian.com>
22114
22115         * reflection.c (mono_reflection_bind_generic_parameters): Make
22116         this work for interfaces.
22117
22118 2003-11-11  Martin Baulig  <martin@ximian.com>
22119
22120         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
22121
22122 2003-11-11  Martin Baulig  <martin@ximian.com>
22123
22124         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
22125         "MonoInflatedMethod" and "MonoInflatedCtor".
22126
22127 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
22128
22129         * reflection.c (resolution_scope_from_image): Use the assembly table
22130         from the manifest module, since other modules don't have it.
22131
22132         * debug-helpers.c (mono_type_full_name): New helper function.
22133
22134         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
22135
22136         * image.c (mono_image_load_file_for_image): New public function which
22137         is a replacement for the load_file_for_image in class.c.
22138
22139         * assembly.c (mono_assembly_load_module): A wrapper for the function
22140         above which does assembly association and reference loading too.
22141
22142         * class.c (mono_class_from_name): Call mono_assembly_load_module.
22143
22144 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22145
22146         * appdomain.c: not all of the attributes for the full assembly name
22147         are required and the order doesn't matter. Fixes bug #50787.
22148
22149 2003-11-10  Dick Porter  <dick@ximian.com>
22150
22151         * locales.c: Use platform-endian UTF16
22152
22153 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
22154
22155         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
22156         
22157 2003-11-10  Martin Baulig  <martin@ximian.com>
22158
22159         * metadata.c
22160         (mono_metadata_load_generic_params): Make this actually work.
22161
22162         * reflection.c (mono_reflection_bind_generic_parameters): If our
22163         parent is a generic instance, pass all the `types' to it, no
22164         matter whether it has the same number of type parameters or not.
22165
22166 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
22167
22168         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
22169
22170         * assembly.c (mono_assembly_load_references): Move the image<->assembly
22171         assignment code to this function so it gets called recursively for all
22172         modules.
22173
22174         * image.c (load_modules): Remove the assembly assignment since it is
22175         now done by mono_assembly_load_references.
22176         
22177         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
22178         Add 'module' argument.
22179         (mono_module_get_types): New helper function.
22180         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
22181
22182 2003-11-08  Martin Baulig  <martin@ximian.com>
22183
22184         * class.c (mono_class_inflate_generic_method): Interface method
22185         don't have a header.
22186
22187         * reflection.c (mono_image_get_methodspec_token): Take an
22188         additional `MonoGenericInst *' argument instead of reading it from
22189         the header; this is necessary to support interfaces.
22190         (mono_image_create_token): Pass the `MonoGenericInst *' from the
22191         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
22192         (inflated_method_get_object): Take an additional `MonoGenericInst *'
22193         argument.
22194
22195         * reflection.h (MonoReflectionInflatedMethod): Added
22196         `MonoGenericInst *ginst'.
22197
22198 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
22199
22200         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
22201
22202 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
22203
22204         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
22205
22206 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
22207
22208         * reflection.c 
22209         (reflection_methodbuilder_from_method_builder):
22210         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
22211         initialize a ReflectionMethodBuilder structure.
22212         (mono_image_get_methodbuilder_token):
22213         (mono_image_get_ctorbuilder_token): New functions to emit memberref
22214         tokens which point to types in another module inside the same assembly.
22215
22216         * reflection.c: Use the new helper functions.
22217         
22218         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
22219
22220         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
22221         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
22222
22223         * reflection.c (resolution_scope_from_image): Emit a moduleref if
22224         neccesary.
22225
22226         * reflection.c (mono_image_build_metadata): Emit metadata only for the
22227         current module. Emit the manifest only for the main module.
22228
22229         * reflection.c (mono_image_create_token): Add assertion when a 
22230         memberref needs to be created.
22231
22232         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
22233
22234         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
22235         larger buffer for the custom attribute blob. Fixes #50637.
22236         
22237 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22238
22239         * threadpool.c: notify listener on async processing handles after
22240         invoking the async callback. Thanks to Zoltan.
22241
22242 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
22243
22244         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
22245         avoid code duplication.
22246
22247         * reflection.h (MonoDynamicImage): New type which is currently unused,
22248         but will be used through the ref.emit code in place of 
22249         MonoDynamicAssembly.
22250
22251         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
22252         object layout.
22253
22254         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
22255         a MonoDynamicImage instead of just a MonoImage.
22256         
22257         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
22258         icalls to ModuleBuilder but keep their semantics, so they will work
22259         with moduleb->assemblyb. This will change later.
22260         
22261 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
22262
22263         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
22264         object layout.
22265
22266         * reflection.c (mono_image_build_metadata): Avoid creation of a default
22267         main module, since it is now done by the managed code.
22268
22269 2003-11-03  Martin Baulig  <martin@ximian.com>
22270
22271         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
22272         `ginst->klass' here.
22273         (method_encode_methodspec): Don't use the `ginst->generic_method's
22274         klass if it's a generic instance, use `ginst->klass' in this case.
22275
22276 2003-11-03  Martin Baulig  <martin@ximian.com>
22277
22278         * reflection.c (mono_image_get_generic_method_param_info):
22279         Removed, use mono_image_get_generic_param_info() instead.
22280         (mono_image_get_type_info): Write the GenericParam table before
22281         the Method table.  This is neccessary because in the GenericParam
22282         table, type parameters of the class (ie. '!0' etc.) must come
22283         before the ones from its generic methods (ie. '!!0' etc).
22284
22285 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
22286
22287         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
22288
22289 2003-11-02  Martin Baulig  <martin@ximian.com>
22290
22291         * reflection.c (create_generic_typespec): Take a
22292         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
22293         the generic parameters from it.
22294
22295 2003-11-02  Martin Baulig  <martin@ximian.com>
22296
22297         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
22298         instead of a `MonoClassField *' since we just need the type.
22299         (create_generic_typespec): New static function.  Creates a
22300         TypeSpec token for a generic type declaration.
22301         (mono_image_get_generic_field_token): New static function.
22302         (mono_image_create_token): If we're a FieldBuilder in a generic
22303         type declaration, call mono_image_get_generic_field_token() to get
22304         the token.
22305
22306 2003-11-02  Martin Baulig  <martin@ximian.com>
22307
22308         * reflection.h
22309         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
22310         `MonoReflectionGenericInst *declaring_type' and
22311         `MonoReflectionGenericInst *reflected_type' fields.
22312
22313         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
22314         `MonoReflectionGenericInst *declaring_type' and a
22315         `MonoReflectionGenericInst *reflected_type' argument instead of a
22316         single `MonoReflectionGenericInst *type' one.  Set
22317         `res->declaring_type' and `res->reflected_type' from them.
22318         (mono_reflection_inflate_field): Likewise.      
22319
22320 2003-11-02  Martin Baulig  <martin@ximian.com>
22321
22322         * class.c (mono_class_setup_vtable): Don't store generic methods
22323         in the vtable.  
22324
22325 2003-11-02  Martin Baulig  <martin@ximian.com>
22326
22327         * reflection.h (MonoReflectionGenericInst): Added
22328         `MonoReflectionType *declaring_type'.
22329
22330         * reflection.c (mono_reflection_bind_generic_parameters): Use
22331         `if (tb->parent)' instead of `klass->parent'.
22332
22333 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
22334
22335         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
22336         with an empty ASSEMBLY table.
22337
22338         * reflection.c (mono_image_build_metadata): Avoid using the same loop
22339         variable in the inner and outer loops.
22340
22341 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
22342
22343         * metadata.h (mono_metadata_make_token): Put parentheses around macro
22344         argument.
22345
22346         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
22347         
22348         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
22349         icalls. Instead, do everything in managed code. This is needed since
22350         it is hard to restore the original domain etc. in unmanaged code in the
22351         presence of undeniable exceptions.
22352
22353         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
22354         New icalls to push and pop appdomain refs.
22355
22356 2003-10-31  Martin Baulig  <martin@ximian.com>
22357
22358         * class.c (inflate_generic_type): Renamed to
22359         mono_class_inflate_generic_type() and made it public.
22360
22361         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
22362         New interncall.
22363
22364         * loader.c (mono_field_from_memberref): Also set the retklass for
22365         typespecs.
22366
22367         * fielder.c (mono_image_get_inflated_field_token): New static
22368         method; creates a metadata token for an inflated field.
22369         (mono_image_create_token, fixup_method): Added support for
22370         "MonoInflatedField".
22371         (fieldbuilder_to_mono_class_field): New static function.
22372         (mono_reflection_inflate_field): New public function.
22373
22374         * reflection.h
22375         (MonoReflectionGenericInst): Added `MonoArray *fields'.
22376         (MonoReflectionInflatedField): New typedef.     
22377
22378 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
22379
22380         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
22381         for Solaris and other platforms without s6_addr16
22382
22383 2003-10-30  Martin Baulig  <martin@ximian.com>
22384
22385         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
22386         argument instead of two.
22387         (mono_class_inflate_generic_signature): Likewise.
22388         (inflate_generic_header): Likewise.
22389         (mono_class_inflate_generic_method): Likewise.  In addition, if
22390         `ginst->klass' is set, it becomes the new `method->klass'.
22391
22392         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
22393         field.
22394
22395         * reflection.c (encode_generic_method_sig): Write a 0xa as the
22396         first byte. [FIXME]
22397         (method_encode_methodspec): If we have generic parameters, create
22398         a MethodSpec instead of a MethodRef.
22399         (fixup_method): Added support for "MonoInflatedMethod" and
22400         "MonoInflatedCtor".
22401         (mono_image_create_token): Added support for "MonoInflatedMethod"
22402         and "MonoInflatedCtor".
22403         (inflated_method_get_object): New static function; returns a
22404         managed "System.Reflection.MonoInflatedMethod" object.
22405         (mono_reflection_bind_generic_method_parameters): Return a
22406         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
22407         (mono_reflection_inflate_method_or_ctor): Likewise.
22408         (mono_image_get_generic_method_param_info): Initialize unused
22409         fields to zero.
22410         (mono_image_get_generic_param_info): Likewise.
22411
22412         * reflection.h (MonoReflectionInflatedMethod): New public
22413         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
22414         "S.R.MonoInflatedCtor" classes.
22415
22416         * loader.c (method_from_memberref): If we're a TypeSpec and it
22417         resolves to a generic instance, inflate the method.
22418
22419 2003-10-28  Dick Porter  <dick@ximian.com>
22420
22421         * object.c (mono_runtime_run_main): Convert command-line arguments
22422         into utf8, falling back to the user's locale encoding to do so.
22423
22424 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
22425
22426         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
22427         at this time.
22428
22429         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
22430
22431         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
22432         up icalls at method definition time. Partially fixes #33569.
22433
22434 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
22435
22436         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
22437         marshalling of arrays. Fixes #50116.
22438
22439         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
22440
22441         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
22442         points to a vtable in the dying appdomain.
22443
22444         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
22445         listeners into unmanaged code inside the lock.
22446
22447         * object.c (mono_class_vtable): Turn off typed allocation in non-root
22448         domains and add some comments.
22449
22450 2003-10-25  Martin Baulig  <martin@ximian.com>
22451
22452         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
22453
22454         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
22455
22456         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
22457         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
22458         currently parsing.  Create the generic class and store it in
22459         `generic_inst->klass' before parsing the type arguments.  This is
22460         required to support "recursive" definitions; see mcs/tests/gen-23.cs
22461         for an example.
22462         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
22463         to support recursive typespec entries.
22464
22465         * class.c (mono_class_setup_parent): If our parent is a generic
22466         instance, we may get called before it has its name set.
22467         (mono_class_from_generic): Splitted into
22468         mono_class_create_from_generic() and mono_class_initialize_generic().
22469
22470 2003-10-25  Martin Baulig  <martin@ximian.com>
22471
22472         * icall.c (ves_icall_Type_BindGenericParameters): Return a
22473         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
22474         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
22475         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
22476
22477         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
22478         (create_typespec): Likewise.
22479         (mono_reflection_bind_generic_parameters): Return a
22480         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
22481         (mono_reflection_inflate_method_or_ctor): New public function.
22482
22483         * reflection.h (MonoReflectionGenericInst): New typedef.        
22484
22485 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
22486
22487         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
22488         inside the domain lock. Fixes #49993.
22489         
22490         * object.c (mono_class_vtable): When typed allocation is used, 
22491         allocate vtables in the GC heap instead of in the mempool, since the
22492         vtables contain GC descriptors which are used by the collector even
22493         after the domain owning the mempool is unloaded.
22494
22495         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
22496
22497         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
22498         reflect what it does. Also invalidate mempools instead of freeing
22499         them if a define is set.
22500
22501         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
22502         of the appdomain.
22503         
22504         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
22505         hold the finalizable objects in this domain.
22506
22507         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
22508         appdomain.
22509
22510         * appdomain.c (mono_domain_set): New function to set the current
22511         appdomain, but only if it is not being unloaded.
22512
22513         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
22514         appdomain which is being unloaded.
22515         
22516         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
22517         unloading of the root appdomain.
22518
22519         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
22520         icall to execute a method in another appdomain. Intended as a 
22521         replacement for InternalSetDomain, which can confuse the code 
22522         generation in the JIT.
22523
22524         * appdomain.c (mono_domain_is_unloading): New function to determine
22525         whenever an appdomain is unloading.
22526
22527         * appdomain.c (mono_domain_unload): New function to correctly unload
22528         an appdomain.
22529
22530         * assembly.c (mono_assembly_load_references): Check that an assembly
22531         does not references itself.
22532
22533         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
22534         domain manually, it asks the finalizer thread to do it, then waits for
22535         the result. Also added a timeout.
22536
22537         * icall.c: Register the new icalls.
22538
22539         * threads.h threads.c: Export the mono_gc_stop_world and 
22540         mono_gc_start_world functions.
22541         
22542         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
22543         function to fill out the mempool with 0x2a.
22544
22545 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
22546
22547         * reflection.h (MonoReflectionMethodAux): New structure to store
22548         information which is rarely used, thus is not in the MonoMethod
22549         structure.
22550
22551         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
22552         store the aux info.
22553
22554         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
22555         and marshalling info into the aux structure.
22556
22557         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
22558         from the aux structure.
22559
22560         * loader.c (mono_method_get_param_names): Retrieve the param names from
22561         the aux structure.
22562         
22563 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
22564
22565         * exception.h exception.c: Add AppDomainUnloadedException && fix 
22566         warning.
22567
22568 2003-10-21  Dick Porter  <dick@ximian.com>
22569
22570         * socket-io.c
22571         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
22572         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
22573
22574 2003-10-21  Martin Baulig  <martin@ximian.com>
22575
22576         * reflection.c (mono_reflection_bind_generic_parameters):
22577         `klass->parent' is NULL for interfaces.
22578
22579 2003-10-21  Martin Baulig  <martin@ximian.com>
22580
22581         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22582
22583 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
22584
22585         * exception.c (mono_exception_from_name_msg): New helper function for
22586         creating exceptions and initializing their message field.
22587
22588         * exception.c: Simplify functions using the new helper.
22589
22590         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
22591         New function.
22592
22593         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
22594         mono_raise_exception, since otherwise gcc doesn't generate the function
22595         epilog for raise_exception, confusing the stack unwinding in the JIT.
22596         Fixes #45043.
22597
22598         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
22599         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
22600         Fixes #49499.
22601
22602 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22603
22604         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
22605         utf8.
22606
22607 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
22608
22609         * icall.c: Removed GetUninitializedObject method because
22610           AllocateUninitializedClassInstance does the same.
22611
22612 2003-10-18  Martin Baulig  <martin@ximian.com>
22613
22614         * class.c (inflate_generic_signature): Renamed to
22615         mono_class_inflate_generic_signature() and made it public.
22616         (my_mono_class_from_generic_parameter): New static function; if we
22617         don't already have the generic parameter's MonoClass, create a
22618         very simple one which is just used internally in the runtime and
22619         not passed back to managed code.
22620
22621         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
22622
22623         * metadata.h (MonoMethodSignature): Moved the
22624         `MonoGenericParam *gen_params' to the MonoMethodHeader.
22625         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
22626
22627         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
22628         ves_icall_MonoMethod_GetGenericArguments(); this is now an
22629         interncall on the MonoMethod class, not on MethodInfo.
22630         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
22631         calling mono_reflection_bind_generic_method_parameters() directly.
22632
22633         * loader.c (mono_method_get_signature): If this is a MethodSpec;
22634         return the already computed `method->signature'.
22635         (method_from_methodspec): New static function to load a method
22636         from a MethodSpec entry.
22637         (mono_get_method_from_token): Call the new method_from_methodspec()
22638         for MethodSpec tokens.  
22639         (mono_get_method_from_token): If we're a generic method, load the
22640         type parameters.
22641
22642         * reflection.c (mono_image_get_memberref_token): Allow
22643         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
22644         table.
22645         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
22646         (mono_image_create_token): First check whether it's a generic
22647         method (so we'd need to create a MethodSpec), then do the other
22648         two alternatives.
22649         (mono_reflection_bind_generic_method_parameters): Return a
22650         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
22651         called directly from the interncall.
22652
22653 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
22654
22655         * reflection.c (load_public_key): Move loading of the public key
22656         into managed code.
22657
22658         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
22659
22660         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
22661         fields.
22662
22663         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
22664         culture, hash_alg and public_key. Fixes #49555.
22665
22666 2003-10-17  Martin Baulig  <martin@ximian.com>
22667
22668         * class.h (MonoGenericInst): Moved this declaration here and added
22669         `MonoMethod *generic_method'.
22670
22671         * icall.c
22672         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
22673         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
22674
22675         * metadata.c (mono_metadata_type_equal): Two types of
22676         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
22677         index; ie. don't compare the address of the `MonoGenericParam'
22678         structure.
22679         (mono_metadata_load_generic_params): Removed the `MonoMethod
22680         *method' argument.
22681
22682         * metadata.h (MonoGenericInst): Moved declaration to class.h.
22683         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
22684
22685         * reflection.c (method_encode_signature): Encode the number of
22686         generic parameters.
22687         (encode_generic_method_sig): New static function.
22688         (method_encode_methodspec): New static function; creates an entry
22689         in the MethodSpec table for a generic method.
22690         (mono_image_get_methodspec_token): New static function.
22691         (mono_image_create_token): Call mono_image_get_methodspec_token()
22692         for generic methods.
22693         (mono_reflection_bind_generic_method_parameters): New public
22694         function.  Instantiates a generic method.
22695
22696 2003-10-16  Martin Baulig  <martin@ximian.com>
22697
22698         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
22699         *gen_params' here from MonoMethodHeader.
22700
22701         * metadata.c (mono_metadata_parse_method_signature): If we have
22702         generic parameters, initialize `method->gen_params' and then set
22703         the correct `type->data.generic_param' in all the parameters.
22704
22705 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
22706
22707         * threads.c (mono_threads_get_default_stacksize): New function to 
22708         return the default stacksize.
22709
22710         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
22711         termination of the finalizer thread, since the previous method had
22712         race conditions. Fixes #49628.
22713
22714         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
22715         as for the other managed threads.
22716
22717 2003-10-16  Martin Baulig  <martin@ximian.com>
22718
22719         * class.c (inflate_generic_signature): Copy `generic_param_count'
22720         and `gen_params'.
22721
22722         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
22723         New interncall.
22724
22725         * metadata.c (mono_metadata_parse_method_signature): Actually set
22726         the `method->generic_param_count' here.
22727         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
22728
22729 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
22730
22731         * object.h: Add a new field to TypedRef to simplify the implementation
22732         of the REFANY opcodes in the JIT.
22733
22734         * icall.c: Make use of the new field.
22735
22736         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
22737         dynamically.
22738
22739 2003-10-15  Martin Baulig  <martin@ximian.com>
22740
22741         * class.c (mono_class_from_gen_param): Renamed to
22742         mono_class_from_generic_parameter() and moved most of the
22743         functionality from mono_reflection_define_generic_parameter()
22744         here; ie. we create a "real" class here.
22745         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
22746         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
22747         previously been called.
22748
22749         * class.h (MonoGenericParam): Moved the declaration of this struct
22750         here from metadata.h and added `MonoMethod *method'.
22751
22752         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
22753         interncall.
22754
22755         * loader.c (mono_get_method_from_token): If we have any generic
22756         parameters, call mono_metadata_load_generic_params() to read them
22757         from the MONO_TABLE_GENERICPAR.
22758
22759         * metadata.c (mono_metadata_load_generic_params): Added
22760         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
22761
22762         * metadata.h (MonoMethodSignature): Replaced
22763         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
22764         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
22765
22766         * reflection.c (mono_reflection_define_generic_parameter): Moved
22767         most of the functionality into the new
22768         mono_class_from_generic_parameter(); set the `method' field if
22769         we're a method parameter.       
22770
22771 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
22772
22773         * marshal.c (emit_struct_conv): if native size is 0
22774         emit no code.
22775
22776 2003-10-14  Martin Baulig  <martin@ximian.com>
22777
22778         * icall.c: The generics API has changed in the spec since it was
22779         added to System.Type; these modifications make it match the spec
22780         again.
22781         (ves_icall_Type_GetGenericParameters): Renamed to
22782         `ves_icall_Type_GetGenericArguments'.
22783         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
22784         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
22785         `ves_icall_MonoType_get_HasGenericArguments'.
22786         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
22787         `ves_icall_MonoType_get_IsGenericParameter'.
22788         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
22789         this is no interncall anymore.
22790         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
22791         `ves_icall_TypeBuilder_get_IsGenericParameter'.
22792
22793 2003-10-14  Martin Baulig  <martin@ximian.com>
22794
22795         * reflection.c (mono_reflection_bind_generic_parameters): Also
22796         inflate generic methods if we're reading the class from IL.
22797
22798 2003-10-13  Martin Baulig  <martin@ximian.com>
22799
22800         * reflection.c (mono_reflection_define_generic_parameter): This
22801         method isn't called directly from the icall anymore; take a
22802         `MonoReflectionAssemblyBuilder *' so we can use this for type and
22803         method generic parameters.
22804         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
22805         (method_builder_encode_signature): Encode generic parameters.
22806         (mono_image_get_method_info): Write generic params to the
22807         MONO_TABLE_GENERICPARAM table.
22808
22809         * reflection.h (MonoReflectionMethodBuilder): Added
22810         `MonoArray *generic_params'.
22811
22812         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
22813
22814         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
22815         wrapper for mono_reflection_define_generic_parameter().
22816         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
22817
22818 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
22819
22820         * marshal.h: Add missing function to fix build.
22821
22822         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
22823         the SetLastError pinvoke attribute.
22824
22825         * marshal.c (mono_marshal_set_last_error): New helper function called
22826         by the generated code.
22827         
22828         * marshal.c (mono_mb_emit_branch): New helper function.
22829
22830         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
22831
22832         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
22833         classes as parameters and return values of delegates. Fixes #29256. 
22834
22835 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
22836
22837         * locales.c: use gint32 in non HAVE_ICU case
22838
22839 2003-10-11  Martin Baulig  <martin@ximian.com>
22840
22841         * mono-debug.c (mono_debug_add_method): Added a workaround for
22842         bug #48591.
22843
22844 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
22845
22846         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
22847         delegates passed to native code must use the STDCALL calling 
22848         convention. Fixes #35987.
22849
22850 2003-10-10  Martin Baulig  <martin@ximian.com>
22851
22852         * class.c (inflate_generic_type): If we're inflating for a generic
22853         type instance (and not for a generic method), return
22854         MONO_TYPE_MVAR unchanged.
22855
22856 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22857
22858         * string-icalls.c: Join ignores null strings in the source array.
22859         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
22860         * threads.c: GetAvailableTheads is slightly more accurate.
22861
22862 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
22863
22864         * threads.h threads.c : add mono_threads_set_default_stacksize
22865         and pass default to CreateThread calls.
22866
22867 2003-10-09  Dick Porter  <dick@ximian.com>
22868
22869         * icall.c:
22870         * locales.h:
22871         * locales.c: Internal calls for constructing CultureInfo and
22872         related objects from libicu (if its available.)
22873
22874 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
22875
22876         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
22877
22878 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22879
22880         * threadpool.c: added an argument to async_invoke_thread that is the
22881         item to process, pass the MonoAsyncResult to the thread start function
22882         when creating a new thread. This way we don't need to acquire any lock
22883         when we're creating a new thread. Readded a semaphore for faster
22884         response times (instead of that Sleep i added).
22885
22886 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
22887
22888         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
22889         get daylight change dates better on Windows, fix handling
22890         of platforms without tm_gmtoff.
22891
22892 2003-10-06  Martin Baulig  <martin@ximian.com>
22893
22894         * class.c (inflate_generic_method): Renamed to
22895         mono_class_inflate_generic_method() and made public.
22896         (mono_class_init): Don't inflate the generic methods here.
22897         (mono_class_from_generic): Added `gboolean inflate_methods'
22898         argument.  Inflate the methods here.
22899
22900         * loader.c (mono_method_get_param_names): Ignore instances of
22901         generic types for the moment.
22902
22903         * reflection.c (fixup_method): Added support for inflated methods.
22904         (mono_image_create_token): Use mono_image_get_methodref_token()
22905         for inflated methods.
22906         (mono_custom_attrs_from_param): Ignore instances of generic types
22907         for the moment.
22908         (mono_reflection_bind_generic_parameters): New public function.
22909         Moved all the functionality from
22910         ves_icall_Type_BindGenericParameters() here and added support for
22911         dynamic types.
22912         (mono_reflection_define_generic_parameter): Initialize
22913         `klass->methods' here.
22914
22915         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
22916         functionality into mono_reflection_define_generic_parameter().
22917         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
22918         TypeBuilder, return that TypeBuilder.
22919
22920 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22921
22922         * appdomain.c: removed mono_delegate_semaphore.
22923
22924         * threadpool.c:
22925         (mono_thread_pool_add): moved hash table creation inside and the thread 
22926         creation outside of the critical region.
22927         (mono_thread_pool_finish): removed obsolete code.
22928         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
22929         continue or exit the thread depending on the queue.
22930
22931 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
22932
22933         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
22934         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
22935         handle more bool marshalling options
22936
22937 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
22938
22939         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
22940         arrays of structs. Also add a more descriptive error message when
22941         a structure member is marshalled as LPArray.
22942
22943 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
22944
22945         * marshal.c (mono_marshal_get_native_wrapper): Add support for
22946         marshalling arrays of complex types. Fixes #29098. Also remove an
22947         usused and incomplete function.
22948
22949 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22950
22951         * gc.c: report heap_size - free_bytes as total memory allocated
22952         (bug#49362).
22953
22954 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
22955
22956         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
22957         fix timezone handling problems on Windows.
22958         
22959         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
22960         asserts when the year is outside the range handled by ms the functions.
22961
22962         * class.c (setup_interface_offsets): If the class is an interface,
22963         fill out its interface_offsets slot.
22964
22965 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22966
22967         * threadpool.c: mark threadpool threads as background.
22968
22969 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
22970
22971         * decimal.c - define DECINLINE to nothing if not using GCC
22972
22973 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
22974
22975         * assembly.c: More refcount fixes.
22976
22977 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22978
22979         * string-icalls.c: if we're not trimming, return the same string.
22980         When not splitting, don't create a new string.
22981
22982 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22983
22984         * image.c:
22985         (mono_image_open): increment the ref_count inside the critical section.
22986
22987 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
22988
22989         * image.c (mono_image_open): Fix reference counting bug.
22990
22991 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
22992
22993         * marshal.c (mono_marshal_type_size) struct alignment changed for 
22994         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
22995         64bits. Avoid leak in mono_marshal_get_native_wrapper when
22996         mono_lookup_pinvoke_call throws.        
22997
22998 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
22999
23000         * reflection.c (mono_reflection_parse_type): Fix #49114.
23001
23002         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
23003         temporary workaround for cygwin header problem.
23004
23005         * object.c (mono_object_isinst): Synchronize this with the code
23006         generated by the JIT for casts.
23007
23008 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
23009
23010         * reflection.c (encode_type): Fix #38332.
23011
23012 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
23013
23014         * marshal.c (mono_marshal_method_from_wrapper): New function to return
23015         the original method from the wrapper method.
23016
23017 2003-09-25  Martin Baulig  <martin@ximian.com>
23018
23019         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
23020         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
23021         (ves_icall_Type_get_IsGenericInstance): New interncall.
23022
23023 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
23024
23025         * object.c: fix cast warning in big endian code.
23026
23027 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
23028
23029         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
23030         
23031 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23032
23033         * assembly.c: don't call check_env from mono_assembly_load. It's
23034         already done once in mono_assemblies_init and may cause headaches when
23035         multiple threads are loading assemblies.
23036
23037 2003-09-19  Martin Baulig  <martin@ximian.com>
23038
23039         * reflection.c (mono_reflection_define_generic_parameter): Don't
23040         allocate `klass->methods', set `klass->flags' to
23041         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
23042
23043 2003-09-18  Martin Baulig  <martin@ximian.com>
23044
23045         * class.c (mono_class_init): Don't create `class->methods' if it's
23046         already initialized.
23047
23048         * metadata.c (mono_metadata_load_generic_params): Make this
23049         actually work.
23050
23051         * reflection.c (mono_reflection_define_generic_parameter): Set
23052         parent class and interfaces from the constraints.
23053
23054         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
23055         to keep this struct in sync with the declaration in TypeBuilder.cs.
23056
23057 2003-09-17  Martin Baulig  <martin@ximian.com>
23058
23059         * metadata.h (MonoType): Replaced the data's `int type_param'
23060         field with `MonoGenericParam *generic_param'.
23061         (MonoGenericParam): Added `MonoClass *klass'.
23062
23063         * class.c (mono_class_from_gen_param): Removed the
23064         `MonoImage *image' and `int type_num' arguments.
23065
23066         * metadata.c (mono_metadata_parse_generic_param): New static
23067         method; creates a MonoGenericParam which just contains the index.
23068         (do_mono_metadata_parse_type): Call
23069         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
23070         MONO_TYPE_MVAR.
23071
23072         * reflection.c (mono_image_typedef_or_ref): Generic type
23073         parameters may be in the same assembly, but never use a typedef
23074         for them.
23075         (mono_reflection_define_generic_parameter): We're now creating a
23076         "real" class for the type parameter; it's now safe to call
23077         mono_class_from_mono_type() on the class'es type, it'll do the
23078         right thing.
23079
23080 2003-09-16  Martin Baulig  <martin@ximian.com>
23081
23082         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
23083         `symfile->range_entry_size' and `symfile->class_entry_size' here;
23084         the `symfile' data structure must be fully initialized before it
23085         gets added to the table.
23086
23087 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
23088
23089         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
23090
23091         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
23092         class init trampolines.
23093
23094 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
23095
23096         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
23097         to the built-in profiler to turn off time and allocation profiling
23098         respectively.
23099
23100 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
23101
23102         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
23103         g_direct_equal.
23104
23105         * debug-helpers.c (mono_method_full_name): Print the wrapper type
23106         in human readable form.
23107
23108 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
23109
23110         * reflection.c icall.c: Fixed warnings.
23111
23112         * image.c (load_class_names): Use a temporary hash table to hold the
23113         namespaces in order to avoid doing many string comparisons.
23114
23115         * image.h: Fix typo.
23116
23117         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
23118         Pass NULL instead of g_direct_equal to the GHashTable constructor 
23119         since the NULL case is short-circuited inside g_hash_table_lookup, 
23120         leading to better performance.  
23121
23122         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
23123         obtain the first custom attribute for a given index. Depends on the
23124         CustomAttribute table being sorted by the parent field.
23125
23126         * reflection.c (mono_custom_attrs_from_index): Use the new function 
23127         for better performance.
23128
23129 2003-09-07  Martin Baulig  <martin@ximian.com>
23130
23131         * class.c (mono_class_init): If we're a generic instance, inflate
23132         all our methods instead of loading them from the image.
23133         (mono_class_from_generic): Set `class->methods = gklass->methods'.
23134
23135 2003-09-07  Martin Baulig  <martin@ximian.com>
23136
23137         * mono-debug-debugger.c: Added support for constructors.
23138
23139 2003-09-06  Martin Baulig  <martin@ximian.com>
23140
23141         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
23142         New interncall.
23143
23144         * reflection.c (mono_reflection_setup_generic_class): Call
23145         ensure_runtime_vtable() to create the vtable.
23146
23147 2003-09-05  Martin Baulig  <martin@ximian.com>
23148
23149         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
23150         MONO_TYPE_MVAR.
23151
23152 2003-09-04  Martin Baulig  <martin@ximian.com>
23153
23154         * reflection.c (mono_reflection_define_generic_parameter): Generic
23155         parameters start with zero.
23156
23157 2003-09-04  Martin Baulig  <martin@ximian.com>
23158
23159         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
23160
23161         * reflection.h (MonoReflectionGenericParam): New typedef.
23162         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
23163         the generic parameters from the managed TypeBuilder.
23164
23165         * reflection.c (mono_reflection_define_generic_parameter): New function.
23166         (mono_reflection_create_runtime_class): Encode generic parameters.
23167         (mono_reflection_setup_generic_class): New function; this is
23168         called after adding adding all generic params to the TypeBuilder.
23169         (encode_type): Added MONO_TYPE_VAR.
23170
23171 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
23172
23173         * class.h class.c (mono_class_needs_cctor_run): Moved this method
23174         here from the JIT.
23175
23176         * assembly.h assembly.c: Moved the AOT loading code into an assembly
23177         load hook.
23178
23179 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
23180
23181         * reflection.h reflection.c class.h class.c: Delete duplicate 
23182         definition of mono_type_get_name () from reflection.c and export the
23183         one in class.c.
23184
23185         * class.c: Class loading fixes from Bernie Solomon 
23186         (bernard@ugsolutions.com).
23187
23188         * reflection.c: Endianness fixes from Bernie Solomon 
23189         (bernard@ugsolutions.com).
23190         
23191 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
23192
23193         * assembly.h assembly.c: Define a file format version for AOT
23194         libraries.
23195         
23196         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
23197
23198         * appdomain.h (MonoJitInfo): New field to determine whenever the
23199         code is domain neutral.
23200         
23201 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
23202
23203         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
23204
23205 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
23206
23207         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
23208         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
23209         Avoid caching the result since strings must be domain specific. Fixes
23210         #48050.
23211
23212 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
23213
23214         * marshal.c (mono_marshal_init): Make this callable multiple times
23215         since it is hard to find a correct place to call it.
23216
23217         * object.c (mono_runtime_class_init): Execute static constructors in
23218         the correct appdomain.
23219
23220         * image.c (build_guid_table): Handle the case when multiple images have
23221         the same GUID.
23222
23223 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23224
23225         * icall.c: added a couple of icalls for System.Web.
23226
23227 2003-08-28  Martin Baulig  <martin@ximian.com>
23228
23229         * icall.c (ves_icall_Type_BindGenericParameters): Use
23230         `klass->generic_inst' instead of `&klass->byval_arg' in the
23231         mono_type_get_object() call.  The returned type must be
23232         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
23233
23234 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
23235
23236         * NOTES: New file.
23237
23238         * object.c (mono_class_proxy_vtable): Make it thread safe.
23239
23240         * pedump.c: Fix warning.
23241
23242         * object.c appdomain.h: Get rid of metadata_section. 
23243         It is no longer needed and it was causing deadlocks with domain->lock.
23244
23245         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
23246
23247 2003-08-26  Martin Baulig  <martin@ximian.com>
23248
23249         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
23250
23251 2003-08-26  Martin Baulig  <martin@ximian.com>
23252
23253         * pedump.c (main): Call mono_metadata_init(),
23254         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
23255         and mono_loader_init().
23256
23257 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
23258
23259         * loader.h: Add missing include to fix build.
23260
23261         * image.h: mono_image_load_references is no more.
23262
23263         * assembly.c: Reworked assembly loading to make it really thread safe.
23264         After these changes, the assembly returned by mono_assembly_open is
23265         fully initialized, i.e. all its references assemblies are loaded.
23266
23267         * assembly.c (mono_image_load_references): Renamed to 
23268         mono_assembly_load_references, and made private, since clients no
23269         longer need to call it.
23270
23271         * class.c: Removed calls to mono_assembly_load_references, since it was
23272         a source of deadlocks.
23273
23274         * loader.h loader.c class.h class.c: Protect data structures using a 
23275         new lock, the loader lock.
23276
23277         * class.c (mono_class_setup_vtable): Create temporary hash tables and
23278         GPtrArrays only when needed.
23279
23280         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
23281         into empty structures by mcs. Fixes pinvoke7.cs.
23282         
23283         * domain.c (mono_init): Call a new initialization function.
23284
23285         * appdomain.c (mono_runtime_init): Call the new initializer function
23286         of the marshal module.
23287
23288         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
23289         inserted into empty structures by mcs. Fixes pinvoke7.cs.
23290
23291         * marshal.h marshal.c: Added locks around the wrapper caches to make
23292         this module thread safe.
23293
23294         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
23295         this argument. Fixes pinvoke1.exe.
23296
23297 2003-08-25  Lluis Sanchez <lluis@ximian.com>
23298
23299         * object.h: Added call_type field to MonoMethodMessage and the corresponding
23300         enumeration of values. Removed fields to store remote call output values in
23301         MonoAsyncResult. Not needed any more.
23302         * object.c: Initialize call_type and async_result fields in mono_message_init.
23303         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
23304         dispatching the message.
23305         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
23306         async call to finish. To do it use a message with EndInvoke call type.
23307
23308 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
23309
23310         * loader.h loader.c (mono_method_hash_marhal_info): New function which
23311         determines whenever a method has marshalling info.
23312
23313 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23314
23315         * assembly.c: fix the build on windows.
23316
23317 2003-08-22 Lluis Sanchez <lluis@ximian.com>
23318
23319         * object.cs: Fixed bug #47785.
23320
23321 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
23322
23323         * string-icalls.c (StringReplace): If their are no occurances of
23324         the old string found return a reference to the supplied
23325         string. This saves some memory and matches MS behavoir.
23326         
23327 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23328
23329         * socket-io.c: fixed compilation for systems that define AF_INET6
23330         and don't define SOL_IP/SOL_IPV6.
23331
23332 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
23333
23334         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
23335         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
23336
23337         * rawbuffer.c rawbuffer.h: Make this module thread safe.
23338
23339         * domain.c: Make this module thread safe.
23340
23341         * domain.c (mono_init): Call new initialization function.
23342
23343         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
23344         reference types too. Fixes #38812.
23345
23346         * image.c (mono_image_init): Fixed warnings.
23347
23348         * class.c (mono_class_from_typeref): Handle assembly load failure
23349         correctly.
23350
23351         * appdomain.c (add_assemblies_to_domain): Handle the case when
23352         the references of an assembly are not yet loaded.
23353
23354         * metadata.c image.c assembly.c: Moved initialization of global
23355         variables to a separate function called at startup since lazy 
23356         initialization of these variables is not thread safe.
23357         
23358         * image.c assembly.c: Made this module thread safe by adding locks in 
23359         the appropriate places.
23360
23361         * domain.c (mono_init): Call the new initialization functions of the
23362         three modules.
23363
23364 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
23365
23366         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
23367           make a direct call. It is proxy's work to make the call asynchronous.
23368           mono_delegate_end_invoke(): If the targe is a proxy, just collect
23369           the return values.
23370         * object.cs: mono_method_call_message_new(): read AsyncResult and
23371           state object from parameters list, if this info is requested.
23372         * object.h: Added fields to store remote call output values in
23373           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
23374
23375 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23376
23377         * object.h: add needed fields to MonoThread.
23378         * threads.c, threads.h: allow registering a function to cleanup data
23379         allocated per thread by the JIT.
23380
23381 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23382
23383         * loader.h: portability fix by Bernie Solomon
23384         * <bernard@ugsolutions.com>.
23385
23386 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
23387
23388         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
23389         return a MonoArray. This simplifies the code and also ensures that
23390         the cache allways contains an object reference as a value.
23391
23392         * icall.c (ves_icall_get_parameter_info): Simplified using the new
23393         function.
23394
23395 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23396
23397         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
23398         fixes a problem with byte ordering when getting the address family for
23399         a socket.
23400
23401 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
23402
23403         * .cvsignore: Added monosn.
23404
23405         * reflection.h reflection.c loader.c: Added support for parameter
23406         marshalling to dynamically created types. Fixes #47295.
23407
23408 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
23409
23410         * rand.c: remove useless warnings.
23411
23412 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23413
23414         * class.c: implemented ldtoken for methods and fieldrefs.
23415
23416 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23417
23418         * threadpool.c: when mono_async_invoke was called, no one took care of
23419         monitoring the queue. So if the method invoked took some time and we
23420         got new async invoke requests after 500 ms (the thread created waited
23421         that long in WaitForSingleObject), the new async invoke was not called
23422         until the previous one finished.
23423
23424         This is fixed now. Thanks to Totte for helping with it.
23425
23426 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23427
23428         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
23429
23430 2003-08-11  Martin Baulig  <martin@ximian.com>
23431
23432         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
23433
23434 2003-08-06  Martin Baulig  <martin@ximian.com>
23435
23436         * mono-debug-debugger.c: Added support for static fields,
23437         properties and methods.
23438
23439 2003-08-06  Martin Baulig  <martin@ximian.com>
23440
23441         * mono-debug-debugger.c: Don't store the MonoString's vtable to
23442         make this work for applications with multiple application domains.
23443
23444 2003-08-04  Martin Baulig  <martin@ximian.com>
23445
23446         * mono-debug-debugger.c: Completely reworked the type support; the
23447         most important thing is that we're now just using one single
23448         `MonoType' instance per type.
23449
23450 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
23451
23452         * mono-endian.h, mono-endian.c, icall.c: Added icall
23453         ves_icall_System_Double_AssertEndianity to assert double word endianity
23454         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
23455
23456 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23457
23458         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
23459         support, icalls and fixes.
23460
23461 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
23462
23463         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
23464         classes that are a punctuation character in .NET is not the same a
23465         g_unichar_ispunct.
23466
23467 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23468
23469         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
23470
23471 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
23472
23473         * icall.c: Add new MemCopy internalcall.
23474         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
23475         Simplified code; It is not necessary to handle all the cases here,
23476         as the C# code takes care of it.  Only handle the case of the name
23477         resource embedded into the assembly.
23478
23479         Changed signature to return the data pointer and the size of the
23480         data. 
23481
23482 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
23483
23484         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
23485         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
23486
23487 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
23488
23489         * socket-io.c: ignore EINTR error in select.
23490
23491 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
23492
23493         * class.h, class.c: removed unused subclasses field in MonoClass.
23494
23495 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
23496
23497         * icall.c: improve fix of get_base_definition(). If the parent class
23498           doesn't have the mehod, look at the parent of the parent.
23499         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
23500           to check if a parameter is an in or out parameter
23501           (PARAM_ATTRIBUTE_IN is not set by default).
23502           mono_method_return_message_restore(): Use mono_class_value_size to
23503           get the size of a value type. mono_type_stack_size (parameterType)
23504           does not return the correct value if parameterType is byRef.
23505           mono_load_remote_field(), mono_load_remote_field_new(),
23506           mono_store_remote_field(), mono_store_remote_field_new():
23507           raise exception if the remote call returns an exception.
23508
23509 2003-07-28  Martin Baulig  <martin@ximian.com>
23510
23511         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
23512         method.  This is a wrapper around mono_runtime_invoke() which
23513         boxes the instance object if neccessary.
23514
23515 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23516
23517         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
23518         metadata.h, row-indexes.h, verify.c: first cut of generics support.
23519
23520 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23521
23522         * icall.c: disable mcs bug workaround.
23523
23524 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
23525
23526         * object.c (mono_runtime_class_init): Take the metadata_section
23527         mutex before obtaining the domain mutex.
23528
23529         * appdomain.h: Added definition of metadata_section mutex here. 
23530
23531         * object.c: define metadata_mutex here.
23532
23533 2003-07-24  Ravi Pratap  <ravi@ximian.com>
23534
23535         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
23536         fixed.
23537
23538 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
23539
23540         * reflection.c: Fix bug #46669
23541
23542 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23543
23544         * exception.c:
23545         * exception.h:
23546         * icall.c:
23547         * object.h: fill in the type name for TypeLoadException.
23548
23549 2003-07-23  Ravi Pratap  <ravi@ximian.com>
23550
23551         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
23552         relationship between TypeBuilders while compiling corlib) and bug
23553         45993 (Array types returned from the runtime while compiling
23554         corlib were from the loaded corlib).
23555
23556 2003-07-22  Martin Baulig  <martin@ximian.com>
23557
23558         * mono-debug-debugger.c: Reworked the type support a bit more;
23559         distinguish between types and classes.
23560
23561 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
23562
23563         * icall.c: add IsArrayImpl icall.
23564
23565 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
23566
23567         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
23568         initializing real_size only once. Also fix bug #46602.
23569
23570 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
23571
23572         * object.c: Renamed mono_metadata_section to metadata_section.
23573
23574 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
23575
23576         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
23577           empty array if the type is an array. Fixed.
23578           ves_icall_MonoMethod_get_base_definition: if the base method
23579           is abstract, get the MethodInfo from the list of methods of
23580           the class.
23581         * reflection.c: ParameterInfo.PositionImpl should be zero-based
23582           and it was 1-based. Fixed in mono_param_get_objects.
23583
23584 2003-07-20  Martin Baulig  <martin@ximian.com>
23585
23586         * mono-debug.h: Set version number to 31.
23587         (mono_debug_init): Added `MonoDomain *' argument.
23588
23589         * mono-debug-debugger.c: Reworked the type support; explicitly
23590         tell the debugger about builtin types; pass the `klass' address to
23591         the debugger.
23592
23593 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
23594
23595         * image.c: Allow new metadata tables to be loaded without a
23596         warning. Also update the warning message to give the new constant value.
23597                 
23598 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
23599
23600         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
23601         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
23602         array type representation changes.
23603
23604 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23605
23606         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
23607         on Environment.Exit () call.
23608
23609 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23610
23611         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
23612         requires a matching corlib.
23613
23614 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
23615
23616         * Changelog: My editor decided to add a CR to each line. Sorry about that.
23617           Committed again without the CRs.
23618         
23619 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
23620
23621         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
23622           getting it from the "this" socket instance. Did not work
23623           if the socket is a subclass of Socket.
23624           Also fixed bug #35371.
23625
23626 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23627
23628         * metadata.c: fixed size for TypedByRef.
23629         * loader.c: when searching for a method, consider the vararg amrker.
23630         * unicode.c, decimal.c: constify some arrays.
23631
23632 2003-07-15  Dick Porter  <dick@ximian.com>
23633
23634         * socket-io.c: Fixed compilation for gcc < 3.2.
23635
23636         Fixed compilation for machines that don't have AF_INET6 (thanks to
23637         Bernie Solomon <bernard@ugsolutions.com> for that part.)
23638
23639         Fixed compile warnings.
23640         
23641         Fixed formatting and line endings.
23642
23643 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
23644
23645         * socket-io.h:
23646         * socket-io.c: Added IPv6 support.
23647
23648 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
23649
23650         * class.c (mono_class_is_assignable_from): New function to implement
23651         the is_assignable_from logic. Used by mono_object_isinst, 
23652         Type::IsAssignableFrom () and the interpreter.
23653
23654         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
23655         Object, even interfaces.
23656         
23657         * object.c (mono_object_isinst): Implement in terms of 
23658         is_assignable_from.
23659
23660         * icall.c (ves_icall_type_is_assignable_from): New icall.
23661
23662 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
23663
23664         * domain.c (foreach_domain): fix compiler warning.
23665
23666 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
23667
23668         * image.c (load_metadata_ptrs): use g_strndup because strndup is
23669         not available on all plattforms
23670
23671 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
23672
23673         * image.h image.c: Store the metadata version string in MonoImage.
23674         * icall.c: New icall to retrieve the image version.
23675         * reflection.c (create_dynamic_image): Fill in the image version field
23676         * reflection.c (build_compressed_metadata): Use the image version
23677         from the image structure.
23678
23679 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23680
23681         * appdomain.c: modified comment.
23682         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
23683         That will be its last iteration when mono_gc_cleanup is called from
23684         mono_runtime_cleanup and before the domain is unloaded.
23685
23686         Fixes bug #45962.
23687
23688 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
23689
23690         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
23691         attributes.
23692
23693 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23694
23695         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
23696         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
23697         Bernie Solomon <bernard@ugsolutions.com>.
23698
23699 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23700
23701         * object.c, object.h: provide mono_object_new_fast() for faster
23702         allocation in some special cases.
23703
23704 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
23705
23706         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
23707         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
23708
23709 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
23710
23711         * threadpool.c: fix leaks.
23712
23713 2003-07-01  Dick Porter  <dick@ximian.com>
23714
23715         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
23716         using MonoGHashTables.  Fixes threadpool bug posted to list.
23717
23718 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
23719
23720         * image.h, image.c: added support to load an assembly from a byte array.
23721         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
23722         assembly bundle support.
23723
23724 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
23725
23726         * threadpool.c (mono_thread_pool_add): keep a reference to the
23727         AsyncResult to prevent GC
23728
23729 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23730
23731         * class.c: leak fix.
23732
23733 2003-06-25  Dick Porter  <dick@ximian.com>
23734
23735         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
23736         for the async object, the WaitHandle object will close the handle.
23737         Fixes bug 45321.
23738
23739 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23740
23741         * class.c: in mono_array_class_get (), lookup from the hash with the
23742         same type we insert: this works around a bug in
23743         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
23744         lluis. The real fix will have to wait for after the release.
23745
23746 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23747
23748         * icall.c: fix memory leak when getting type members.
23749
23750 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
23751
23752         * reflection.c: added more pubtoken special cases.
23753
23754 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
23755
23756         * class.c: handle field offset correctly when class size
23757         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
23758
23759 2003-06-20  Martin Baulig  <martin@ximian.com>
23760
23761         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
23762         *image' field.
23763
23764 2003-06-20  Martin Baulig  <martin@ximian.com>
23765
23766         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
23767
23768 2003-06-20  Martin Baulig  <martin@ximian.com>
23769
23770         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
23771         just distinguish between variables in registers and variables at
23772         an offset relative to a register.
23773
23774 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23775
23776         * icall.c: #ifdef out latest changes until mcs is fixed.
23777
23778 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23779
23780         * icall.c: return members in metadata order.
23781
23782 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23783
23784         * icall.c: avoid infinite loop in GetTimeZoneData.
23785
23786 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
23787
23788         * icall.c: added Marshal.Prelink/All icalls.
23789
23790 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
23791
23792         * object.c, object.h: fix warnings and do some overflow checking
23793         when creating arrays.
23794
23795 2003-06-17  Dick Porter  <dick@ximian.com>
23796
23797         * file-io.h:
23798         * file-io.c: File attributes need to be tweaked slightly when
23799         passed from the managed to the w32 world.
23800
23801 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23802         * profiler.h profiler-private.h profiler.c: Rework last patch
23803         based on suggestion by Paolo.
23804         
23805 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23806
23807         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
23808         instruction level coverage data collection.
23809         * profiler.h profiler.c (: Added new callback function which can be
23810         used by the profiler to limit which functions should have coverage
23811         instrumentation.
23812         * profiler.c (mono_profiler_load): Call g_module_build_path to
23813         generate the file name of the profiler library.
23814
23815 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23816
23817         * profiler.c, profiler.h, profiler-private.h: added basic block 
23818         coverage profiling API.
23819
23820 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
23821
23822         * reflection.c (mono_reflection_create_runtime_class): Add support
23823         for events in dynamically generated code.
23824
23825         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
23826         not allocated.
23827
23828 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23829
23830         * icall.c: when getting timezone info, return reasonable values if we
23831         can't get the actual data.
23832
23833 2003-06-14  Dick Porter  <dick@ximian.com>
23834
23835         * threads.c (start_wrapper): Remove the reference to the thread
23836         object in the TLS data, so the thread object can be finalized.
23837         This won't be reached if the thread threw an uncaught exception,
23838         so those thread handles will stay referenced :-( (This is due to
23839         missing support for scanning thread-specific data in the Boehm GC
23840         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
23841
23842 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
23843
23844         * reflection.c: ensure streams and tables are first allocated with
23845         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
23846
23847 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23848
23849         * icall.c: fixed GetElementType for byrefs (bug# 44792).
23850
23851 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
23852
23853         * reflection.c (mono_reflection_create_runtime_class): Add support for
23854         properties to dynamically created classes.
23855         * reflection.c: Fix a few places where non-MonoObjects were inserted
23856         into the tokens hashtable.
23857
23858 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23859
23860         * object.c: some support to handle out of memory exceptions.
23861
23862 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
23863
23864         * marshal.c (mono_marshal_get_native_wrapper): support reference
23865         return types
23866
23867 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23868
23869         * object.h, object.c: more portability stuff from Bernie Solomon.
23870         Unexport mono_object_allocate(). Added mono_object_unbox ().
23871         Set exitcode when an unhandled exception is thrown.
23872
23873 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
23874
23875         * marshal.c (mono_marshal_get_native_wrapper): use custom
23876         marshaler for return types.
23877
23878 2003-06-10  Dick Porter  <dick@ximian.com>
23879
23880         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
23881         ip_mreq is available
23882
23883 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
23884
23885         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
23886         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
23887         by Bernie Solomon <bernard@ugsolutions.com>.
23888
23889 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
23890
23891         * gc.c (mono_gc_init): Avoid error message on shutdown when
23892         GC_DONT_GC=1 is used.
23893
23894         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
23895         New icall to return the GUID of a module.
23896
23897 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23898
23899         * class.c: ensure instance size always includes the parent's size
23900         even whem class size is set explicitly (fixes bug#44294).
23901
23902 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23903
23904         * profiler.h, profiler.c: made the simple profiler thread-safe,
23905         get more accurate timing info. Allow the loading of an
23906         externally-developed profiler module.
23907
23908 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
23909
23910         * marshal.c (mono_marshal_get_native_wrapper): improved
23911         class/byref arguments.
23912         (mono_marshal_get_native_wrapper): better string marshaling support.
23913
23914 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
23915
23916         * class.c: ensure .pack and .size are handled correctly and
23917         simplified layout of static fields.
23918
23919 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
23920
23921         * appdomain.c
23922         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
23923
23924         * loader.c (mono_lookup_pinvoke_call): look for modules in the
23925         current directory (fix bug 44008)
23926
23927 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
23928
23929         * marshal.c (mono_marshal_get_native_wrapper): started support for
23930         custom marshalers.
23931         (mono_delegate_to_ftnptr): consider marshalling specifications
23932
23933 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23934
23935         * reflection.c, reflection.h: emit custom marshal info.
23936
23937 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23938
23939         * object.c: free the GError.
23940         * icall.c: added CloseEvent_internal.
23941         * threads.[ch]:
23942         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
23943         call.
23944
23945 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
23946
23947         * loader.c (mono_method_get_signature): Add support for dynamic
23948         assemblies.
23949
23950 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23951
23952         * reflection.c: fixed bug #43905.
23953
23954 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23955
23956         * class.c, domain.c, icall.c, metadata.h, object.h: support for
23957         handling TypedReference and ArgIterator.
23958         * loader.c, loader.h: added function to get signature at call site.
23959
23960 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23961
23962         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
23963         data readonly. Buglets and warning fixes. Some MethodSpec support.
23964
23965 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23966
23967         * class.h, class.c, object.c: remove relative numbering support.
23968
23969 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
23970
23971         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
23972         free the string, until we get a chance to fix Gtk#
23973
23974 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23975
23976         * marshal.c: revert last patch.
23977
23978 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23979
23980         * icall.c: updates for new mono_class_vtable() not calling
23981         the type constructor anymore.
23982
23983 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23984
23985         * object.h, object.c: separate vtable creation from type
23986         initialization. Make running the .cctor thread safe.
23987
23988 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
23989
23990         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
23991
23992 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
23993
23994         * loader.c (mono_get_method): consider calling convention
23995
23996 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
23997
23998         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
23999         to return the invisible global type for a module.
24000
24001         * reflection.c (mono_image_build_metadata): Emit global fields too.
24002
24003 2003-05-20  Peter Williams  <peterw@ximian.com>
24004
24005         * loader.c (mono_lookup_internal_call): Add a few newlines.
24006
24007 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
24008
24009         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
24010         literal strings.
24011
24012         * appdomain.c (set_domain_search_path): Recalculate search path when
24013         AppDomainSetup.PrivateBinPath changes.
24014
24015         * object.c (mono_class_compute_gc_descriptor): It turns out some
24016         parts of the class libs (like System.Thread) holds pointers to
24017         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
24018         to treat native int a pointer type here.
24019         
24020 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
24021
24022         * appdomain.h, domain.c: add hashtable for jump target resolution.
24023
24024 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
24025
24026         * reflection.h reflection.c icall.c: Added new icalls 
24027         GetManifestResourceInfoInternal, GetModulesInternal and support
24028         infrastructure.
24029
24030 2003-05-16  Dick Porter  <dick@ximian.com>
24031
24032         * icall.c:
24033         * file-io.h:
24034         * file-io.c: Implement System.IO.MonoIO::GetTempPath
24035
24036 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
24037
24038         * object.c: mono_store_remote_field: little fix to previous patch.
24039
24040 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
24041
24042         * class.c: add constructors to array classes.
24043         * icall.c: special case array construction for InternalInvoke (),
24044
24045 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
24046
24047         * class.h class.c reflection.c object.c: Added support for field
24048         defaults in dynamically generated classes.
24049
24050 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
24051
24052         * reflection.c: properly encode charset for ddlimport.
24053
24054 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
24055
24056         * threads.c: allow compiling without GC.
24057
24058 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
24059
24060         * appdomain.h, object.c, object.h, threads.c, threads.h: added
24061         handling of thread static data.
24062
24063 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24064
24065         * reflection.h, reflection.c: added mono_custom_attrs_free ().
24066
24067 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
24068
24069         * class.c (mono_array_class_get): always set the serializable flags
24070         (mono_array_class_get): always set the SEALED attribute for array types
24071
24072 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
24073
24074         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
24075         attributes (fix for bug 42021).
24076
24077 2003-05-12  Dick Porter  <dick@ximian.com>
24078
24079         * gc.c: Don't run finalizers when the finalizer thread is
24080         finishing up, because the default domain has already been
24081         destroyed.
24082
24083 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
24084
24085         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
24086         value is null, we should throw an exception.   This is slightly
24087         different than the other conventions used for the constructor.
24088
24089 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24090
24091         * socket-io.c: fixed windows build.
24092
24093 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24094
24095         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
24096
24097 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
24098
24099         * object.c (mono_string_new_wrapper): Compatibility fix for MS
24100         compilers.
24101
24102 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
24103
24104         * class.c (mono_class_layout_fields): Add experimental GC aware
24105         auto layout facility. Requires class library changes to work correctly.
24106
24107         (mono_class_setup_vtable): Avoid overriding explicit interface
24108         method implementations. Fixes iface3.exe test.
24109
24110         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
24111         object reference.
24112         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
24113         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
24114
24115         * metadata.h: Add new type classification macro which determines
24116         whenever the type holds an object reference.
24117
24118 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
24119
24120         * marshal.c (mono_marshal_get_native_wrapper): cleanups
24121
24122 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
24123
24124         * gc.c (finalizer_thread): Work around a GC bug.
24125
24126 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
24127
24128         * marshal.c (emit_struct_conv): allow unions
24129
24130         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
24131
24132 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
24133
24134         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
24135
24136 2003-05-06  Martin Baulig  <martin@ximian.com>
24137
24138         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
24139
24140 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24141
24142         * socket-io.c:
24143         (Select_internal): allow NULLs, don't create arrays if not needed.
24144         Coupled with Socket.cs changes.
24145
24146         * threadpool.c:
24147         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
24148         register a finalizer for it that will close the semaphore handle. This
24149         fixes the leak and make Lupus' test run with > 4080 loops.
24150
24151 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
24152
24153         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
24154         Jerome Laban (bug #42287)
24155
24156 2003-05-02  Martin Baulig  <martin@ximian.com>
24157
24158         * debug-mono-symfile.h
24159         (MonoSymbolFile): Moved declaration into mono-debug.h.
24160         (MonoDebugMethodJitInfo): Likewise.
24161         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
24162         argument.
24163         (_mono_debug_address_from_il_offset): Take a
24164         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
24165
24166         * mono-debug.h
24167         (MonoDebugDomainData): New struct.
24168         (mono_debug_get_domain_data): New function.
24169         (mono_debug_add_method): Take an additional `MonoDomain *'
24170         argument.
24171         (mono_debug_source_location_from_address): Likewise.
24172         (mono_debug_il_offset_from_address): Likewise.
24173         (mono_debug_address_from_il_offset): Likewise.
24174
24175 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
24176
24177         * reflection.c: one more check for null type in custom attrs.
24178
24179 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24180
24181         * reflection.c: avoid warning (comparison is always false due to limited
24182         range of data type).
24183
24184 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24185
24186         * icall.c: throw an exception in Type.GetField if the argument 'name'
24187         is NULL.
24188
24189 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
24190
24191         * reflection.c: fixed handling of enums in named arguments to custom
24192         attributes (bug #42123).
24193
24194 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
24195
24196         * reflection.c: use the right array element type and handle
24197         a null for a Type argument, too.
24198
24199 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
24200
24201         * reflection.c: handle arrays as arguments to custom attributes.
24202
24203 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
24204
24205         * reflection.c: handle a string value in a custom attr
24206         ctor that takes an object.
24207
24208 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
24209
24210         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
24211         (fix bug #42063)
24212
24213 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
24214
24215         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
24216
24217 2003-04-27  Martin Baulig  <martin@ximian.com>
24218
24219         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
24220         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
24221         MONO_DEBUGGER_EVENT_BREAKPOINT.
24222         (mono_breakpoint_trampoline_code): Removed.
24223         (mono_debugger_event_handler): The last argument is now a
24224         `guint32'.
24225         (mono_debugger_insert_breakpoint_full): Removed the
24226         `use_trampoline' argument.
24227         (mono_debugger_method_has_breakpoint): Likewise.
24228         (mono_debugger_trampoline_breakpoint_callback): Renamed to
24229         mono_debugger_breakpoint_callback(); take the method and
24230         breakpoint number as arguments.
24231
24232 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24233
24234         * metadata.c: fix off by one when loading parameters attributes.
24235
24236 2003-04-24  Martin Baulig  <martin@ximian.com>
24237
24238         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
24239
24240 2003-04-24  Martin Baulig  <martin@ximian.com>
24241
24242         * mono-debug-debugger.c: Moved all code which interacts with the
24243         Mono Debugger here.
24244
24245         * debug-mono-symfile.c: This code now just deals with the symbol
24246         file itself, the debugger code is now in mono-debug-debugger.c.
24247
24248 2003-04-23  Martin Baulig  <martin@ximian.com>
24249
24250         * mono-debug.c (mono_debug_source_location_from_il_offset):
24251         New method; like mono_debug_source_location_from_address(), but
24252         takes an IL offset instead of a machine address.
24253
24254 2003-04-23  Martin Baulig  <martin@ximian.com>
24255
24256         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
24257         `line' field; this is now computed by the debugger.
24258
24259 2003-04-23  Martin Baulig  <martin@ximian.com>
24260
24261         * mono-debug.[ch]: New files.  This is the new debugging interface.
24262
24263         * mono-debug-debugger.[ch]: New files.  Moved all code which
24264         interacts with the Mono Debugger here.
24265
24266 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
24267
24268         * domain.c (mono_init): initialize mono_defaults.monitor_class
24269
24270 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
24271
24272         * reflection.c (method_encode_code): Add a spicy exception to help
24273         future compiler authors.
24274
24275 2003-04-21  Martin Baulig  <martin@ximian.com>
24276
24277         * icall.c
24278         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24279         Make this work with relative pathnames; g_filename_to_uri() needs
24280         an absolute filename.
24281
24282 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
24283
24284         * icall.c: Track name changes in Object and ValueType.
24285
24286 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
24287
24288         * metadata.c (mono_type_stack_size): size should be a multiple of
24289         sizeof (gpointer)
24290
24291 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24292
24293         * gc.c:
24294         (internal_domain_finalize): moved into mono_domain_finalize. No need
24295         to create another thread because the finalizers will be run in the
24296         finalizer thread.
24297         
24298         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
24299         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
24300         to be run (MS does this too).
24301
24302 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
24303
24304         * object.c (mono_class_compute_gc_descriptor): Update comment.
24305
24306         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
24307
24308         * image.h: Add synchronized wrapper cache.
24309
24310         * image.c (do_mono_image_open): Initialize cache.
24311
24312         * reflection.c (create_dynamic_mono_image): Initialize cache.
24313
24314 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24315
24316         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
24317         ves_icall_System_Buffer_ByteLengthInternal.
24318
24319 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
24320
24321         * reflection.c: setup klass->nested_in earlier. Allow
24322         a dash in the assembly name.
24323
24324 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
24325
24326         * metadata.c (mono_type_to_unmanaged): dont access
24327         type->data.klass for MONO_TYPE_OBJECT
24328         (mono_type_to_unmanaged): consider System.Delegate class
24329
24330 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
24331
24332         * class.c: just setup supertypes in the proper place instead of
24333         initializing the full element class for arrays.
24334
24335 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
24336
24337         * class.c: ensure the element class of arrays is initialized.
24338         Setup the supertype info for array classes, too.
24339
24340 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
24341
24342         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
24343
24344 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24345
24346         * Makefile.am: re-added -m option when running cygpath. This way,
24347         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
24348         separator.
24349         * mono-config.c: same codepath for locating mono config file for WIN32
24350         and the rest.
24351         * assembly.c: if mono_assembly_setrootdir is called, don't override
24352         the value set.
24353
24354 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24355
24356         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
24357         MONO_ASSEMBLIES variable.
24358
24359 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
24360
24361         * icall.c: added Assembly::GetNamespaces() icall.
24362
24363 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24364
24365         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
24366
24367 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
24368
24369         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
24370         * object.c: fixed bug in the construction of vtable for proxies
24371
24372 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
24373
24374         * object.c (mono_array_new): Mark mono_array_new as an icall.
24375
24376 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24377
24378         * class.c: fixed test for public method when overriding interfaces.
24379         Closes bug #40970.
24380
24381 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24382
24383         * appdomain.h, domain.c: added mono_domain_foreach() to
24384         be able to access the currently loaded appdomains.
24385         * object.c: make string interning work across sppdomains.
24386         Mark some functions for use as icalls.
24387
24388 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
24389
24390         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
24391
24392         * reflection.h reflection.c: Allocate long living data using 
24393         GC_MALLOC_ATOMIC so the collector does not need to scan it.
24394
24395         * reflection.c: Double the allocation size in streams instead of
24396         increasing it, to prevent unneccesary copying on large assemblies.
24397         
24398         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
24399         creation if the assembly does not have the Run flag set.
24400
24401 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24402
24403         * class.h: avoid the C++ keywords in header files (Jerome Laban
24404         spotted and fixed this).
24405
24406 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24407
24408         * object.c:
24409         (mono_unhandled_exception): fill in the arguments for the
24410         UnhandledException event. Only trigger that event for the default
24411         domain (as MS does).
24412
24413 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
24414
24415         * object.c: Improve typed allocation stuff based on suggestions from
24416         Paolo. Also turn it on if the GC library supports it.
24417
24418 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
24419
24420         * object.c object.h class.h: Added experimental typed allocation
24421         facility using the interfaces in gc_gcj.h.
24422
24423         * os/gc_wrapper.h: Added new include files.
24424         
24425 2003-04-03  Martin Baulig  <martin@ximian.com>
24426
24427         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
24428         which is not yet enabled by default.
24429
24430         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
24431         functions.
24432         (mono_gc_lock, mono_gc_unlock): New static functions.
24433
24434         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
24435         functions; stop/start the world for the garbage collector.  This
24436         is using the windows API; we need to complete the SuspendThread()/
24437         ResumeThread() implementation in the io-layer to make this work on Unix.
24438         (mono_gc_push_all_stacks): New public function; tells the garbage
24439         collector about the stack pointers from all managed threads.
24440
24441 2003-04-03  Martin Baulig  <martin@ximian.com>
24442
24443         * object.h (MonoThread): Added `gpointer stack_ptr'.
24444
24445         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
24446
24447 2003-04-03  Martin Baulig  <martin@ximian.com>
24448
24449         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
24450
24451 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
24452
24453         * reflection.c (typebuilder_setup_fields): Initialize field.first and
24454         field.last.
24455
24456 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
24457
24458         * loader.c (mono_lookup_internal_call): Report the corlib that is
24459         out of sync.
24460
24461 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
24462
24463         * icall.c (ves_icall_type_GetTypeCode): fixed check for
24464         System.DBNull (it's class not valuetype).
24465
24466 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
24467
24468         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
24469         if the array method was already assigned a token (fixes bug#40646).
24470
24471 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
24472
24473         * reflection.c (mono_reflection_get_type): Attempt type resolve even
24474         if no assembly is given.
24475
24476 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
24477
24478         * metadata.h: Added the new tables.
24479
24480         * row-indexes.h: Added definitions for new tables.
24481
24482         * metadata.c: Add schemas for new tables, and add support for
24483         computing the sizes of them.
24484
24485         * class.c: Update for handling the new type cases.
24486
24487 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
24488
24489         * metadata.h (MONO_TYPE_IS_VOID): new macro
24490
24491 2003-03-31  Martin Baulig  <martin@ximian.com>
24492
24493         * threads.h (MonoThreadCallbacks): Added `thread_created'.
24494
24495         * threads.c (mono_thread_new_init): Call `thread_created' in the
24496         mono_thread_callbacks.
24497
24498 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
24499
24500         * loader.h: added marshalbyrefobject_class to mono_defaults
24501         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
24502         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
24503           generation of output parameters.
24504           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
24505         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
24506           contextbound and the target object belongs to the context of the caller.
24507         * object.h: added context and unwrapped_server variables in MonoRealProxy.
24508         * object.c: Implemented support for interfaces and abstract classes
24509           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
24510           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
24511
24512 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
24513
24514         * class.h class.c (mono_class_is_subclass_of): New function.
24515         
24516         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
24517         routines for most common case (calls from ArrayList::ToArray).
24518
24519         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
24520         routine so programs which call Environment::Exit() can be profiled.
24521
24522         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
24523         Added MONO_ARCH_SAVE_REGS.
24524
24525         * icall.c (ves_icall_type_is_subtype_of): Use new function.
24526
24527 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
24528
24529         * blob.h: Add a couple of new MonoType types definitions.
24530
24531         * tabledefs.h: Add a couple of new call convs.
24532
24533 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
24534
24535         * reflection.h (MonoReflectionDynamicAssembly): track changes in
24536         the layout of the class.
24537
24538         * reflection.c (alloc_table): double the size on overflow to avoid
24539         unnecessary copying.
24540
24541         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
24542         avoid filling out metadata tables and blobs. Also set mb->ilgen to
24543         null so it can be garbage collected.
24544         
24545 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
24546
24547         * reflection.c (mono_reflection_get_type): Return the resolved type
24548         only if it is in the assembly we searched.
24549
24550         * reflection.c (ensure_runtime_vtable): Initialize method slots.
24551
24552         * class.c (mono_class_setup_vtable): Set the slot of the overriding
24553         method.
24554
24555 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24556
24557         * appdomain.c:
24558         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
24559         the right one is 'file:///blah', but MS allows it.
24560         * assembly.c:
24561         (mono_assembly_open): allow 'file://blah'
24562
24563         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
24564
24565 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
24566
24567         * socket-io.c: fixes bug #40310.
24568
24569 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
24570
24571         * reflection.c (mono_reflection_parse_type): handle deeply nested
24572         types correctly.
24573
24574         * reflection.c (mono_image_create_token): Use unique token values
24575         since they will be put into a hash table.
24576
24577         * class.c (mono_class_setup_vtable): If a method occurs in more than
24578         one place in the vtable, and it gets overriden, then change the
24579         other occurances too.
24580
24581         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
24582         object as return type.
24583
24584 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24585
24586         * icall.c: Deleted "ToString" implementation for double and float
24587         because they are full implemented in managed code.
24588
24589 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24590
24591         * reflection.c, reflection.h: implemented and exported functions
24592         to retrieve info about custom attributes.
24593
24594 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24595
24596         * appdomain.c: moved Uri handling to assembly.c
24597         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
24598         work when using a file Uri in *nix and windows.
24599
24600         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
24601         GetReferencedAssemblies.
24602
24603 2003-03-18  Dick Porter  <dick@ximian.com>
24604
24605         * icall.c: Rename a couple of internal calls
24606
24607         * threads.c: Set the thread state to Stopped when a thread exits.
24608         Fixes bug 39377.
24609
24610 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
24611
24612         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
24613         New icall.
24614
24615         * object.c (mono_class_vtable): fix warning.
24616
24617 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
24618
24619         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
24620
24621         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
24622         memory.
24623         (method_encode_clauses): Create exception info structures in the right
24624         order.
24625         (mono_reflection_setup_internal_class): Initialize supertypes field.
24626
24627         * class.c object.c: Handle interfaces which implement other interfaces 
24628         correctly.
24629
24630         * class.h class.c: Move the supertypes array initialization code into 
24631         a separate function so it can be used for dynamic types too. Also call
24632         it earlier, in mono_class_init(), since it can be used before the
24633         type is initialized.
24634
24635 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24636
24637         * Makefile.am:
24638         * assembly.c:
24639         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
24640
24641         * appdomain.c:
24642         * appdomain.h:
24643         * marshal.c:
24644         * object.c: remove warnings.
24645
24646 2003-03-13  Martin Baulig  <martin@ximian.com>
24647
24648         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
24649         (MonoDebugLexicalBlockEntry): New types.
24650
24651         * debug-mono-symfile.c
24652         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
24653
24654 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24655
24656         * process.c: ret can be any non-zero value accroding to MS doc.
24657
24658 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
24659
24660         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
24661         fixing a warning for a miss-used prototype, would have cause
24662         random memory corruption.
24663
24664 2003-03-07  Martin Baulig  <martin@ximian.com>
24665
24666         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
24667         getting really annoying ....
24668
24669 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
24670
24671         * reflection.c (fixup_method): added support for array methods.
24672
24673 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24674
24675         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
24676         (pointed out by Michael Adams).
24677
24678 2003-03-04  Dick Porter  <dick@ximian.com>
24679
24680         * icall.c: Temporarily reverted the Double and Single ToString()
24681         change, because it broke nunit.
24682
24683 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
24684
24685         * object.h, threads.h: make include files compatible with C++
24686         (patch by Jerome Laban <jlaban@wanadoo.fr>).
24687
24688 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24689
24690         * icall.c: Erased ToString helper functions for Double and Single.
24691         Now, that implementations ar all in managed code (Double and Single
24692         Formatters).
24693
24694 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
24695
24696         * appdomain.c: Added method for initializing the default context of
24697         a domain. Added internal call for getting the default context.
24698         * appdomain.h: Added context variable in MonoDomain struct.
24699         * domain.c: mono_domain_set also sets the default context of the domain
24700         * icall.c: Mapped internal method InternalGetDefaultContext.
24701         * object.c: mono_object_get_virtual_method returns always a remoting
24702         wrapper if the object is a transparent proxy.
24703         mono_runtime_invoke_array: when creating an object by calling the
24704         constructor, if the created object is a proxy, then the constructor should
24705         be called using the a remoting wrapper.
24706
24707 2003-03-03  Dick Porter  <dick@ximian.com>
24708
24709         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
24710         variable so it compiles on solaris.  Problem spotted by
24711         Christopher Taylor <ct@cs.clemson.edu>
24712
24713 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24714
24715         * appdomain.c:
24716         (get_info_from_assembly_name): don't leak value.
24717
24718         * icall.c:
24719         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
24720         result.
24721
24722 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
24723
24724         * assembly.c: export mono_image_load_references ().
24725         * class.c: handle function pointers. mono_class_from_name() now
24726         supports nested type names directly.
24727
24728 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
24729
24730         * reflection.h reflection.c: Encode already created dynamic methods 
24731         and fields correctly as a DEF instead of a REF.
24732
24733         * reflection.c: Get rid of the force_ref argument to 
24734         mono_image_typedef_or_ref since it was wrong in the first place.
24735
24736         * string-icalls.c: add error checking to string constructors according
24737         to the MSDN docs.
24738
24739         * reflection.c: Emit types in the order their TypeBuilders were 
24740         created. Previously, a new table index was assigned to each type before
24741         the tables were emitted. This was wrong because the signature blob
24742         might already refer to a type by its original table index.
24743
24744 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
24745
24746         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
24747         change.
24748         
24749 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24750
24751         * Makefile.am: make assemblies dir have \ instead of / on windows.
24752
24753 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
24754
24755         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
24756         iterate over the NESTEDCLASS table using a linear search since the
24757         table is not guaranteed to be sorted by the secondary key.
24758
24759         * class.c (mono_class_create_from_typedef): fixed up call to
24760         mono_metadata_nesting_typedef.
24761         
24762 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
24763
24764         * marshal.c (mono_string_to_byvalstr): clear the memory as
24765         suggested by Jerome Laban <jlaban@wanadoo.fr>
24766
24767 2003-02-26  Dick Porter  <dick@ximian.com>
24768
24769         * process.c: Cope with padding in .rsrc blocks
24770
24771 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
24772
24773         * metadata.h: reverted the filter_len change, it breaks reflection
24774         
24775 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
24776
24777         * metadata.h: added a new field to store the filter_len
24778         
24779
24780 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
24781
24782         * reflection.c: handle custom attributes for types and members
24783         created with Reflection.Emit (bug#38422).
24784
24785 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
24786
24787         * reflection.c: define RTSpecialName automatically for constructors for
24788         compatibility with MS.NET.
24789
24790         * reflection.c (mono_reflection_create_runtime_class): initialize
24791         nested_in field of dynamically created classes.
24792
24793 2003-02-22  Martin Baulig  <martin@ximian.com>
24794
24795         * debug-mono-symfile.h: Incremented version number.
24796
24797 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
24798
24799         * object.h icall.c process.c: fix warnings.
24800
24801 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
24802
24803         * appdomain.h appdomain.c:
24804         (mono_domain_try_type_resolve): split the 
24805         name_or_tb argument into a name and a tb argument.
24806         (mono_domain_has_type_resolve): new function to check whenever the
24807         application has registered a TypeResolve event handler.
24808         
24809         * icall.c reflection.h reflection.c: move the type resolve logic into
24810         mono_reflection_get_type () so it will be invoked when 
24811         Assembly::GetType () is called.
24812
24813         * reflection.c:
24814         (mono_reflection_get_type): renamed to get_type_internal.
24815         (mono_reflection_get_type): fixed type name generation so it works 
24816         for nested types too.
24817         (mono_reflection_get_type): call has_type_resolve () to avoid the 
24818         costly type name generation if there is no resolve event handler.
24819
24820 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24821
24822         * class.c, image.c: load exported types from file references.
24823
24824 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
24825
24826         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
24827           used to cache the managed methods used to create proxies and make 
24828           remote invocation of methods.
24829         * class.h: Added in MonoVTable a flag to indicate that a class needs 
24830           to be remotely created.
24831         * object.c: Modified the method mono_class_vtable(). It now initializes 
24832           the remote flag of the vtable. Modified mono_object_new_specific(), 
24833           so now it checks the remote flag.
24834         * icall.c: Added a couple of internal methods, one for enabling instance 
24835           creation interception for a type, and one for creating objects bypassing
24836           the remote check.
24837
24838 2003-02-18  Martin Baulig  <martin@ximian.com>
24839
24840         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
24841         New interncall to get a method's metadata token.
24842
24843         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
24844         New interncall for the debugger.
24845
24846 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
24847
24848         * class.c (mono_class_setup_vtable): allocate supertype array
24849
24850 2003-02-18  Martin Baulig  <martin@ximian.com>
24851
24852         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
24853
24854 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24855
24856         * reflection.c:
24857         (assembly_name_to_aname): jump over unknown properties (i've found
24858         something like: 'type, assembly, version=xxx, custom=null, public...',
24859         so now will ignore custom=null and still get the rest of the values).
24860
24861 2003-02-17  Dick Porter  <dick@ximian.com>
24862
24863         * threads.c: Have Thread.Start() wait for a semaphore to signal
24864         that the thread has set up all its local data.  This fixes bug
24865         34323, where Abort() raced the new thread's TLS data.
24866
24867         Also removes the handle_store() call from start_wrapper, because
24868         threads are now always created suspended and there is no longer a
24869         race between the parent and child threads to store the info.
24870
24871 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
24872
24873         * image.c: explain the #- heap issue in a message, hopefully
24874         avoiding FAQs on mono-list.
24875
24876 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24877
24878         * icall.c:
24879         (GetEntryAssembly): if the domain has not invoked
24880         AppDomain.ExecuteAssembly yet, return the assembly of the default
24881         AppDomain.
24882
24883 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
24884
24885         * class.c (mono_ldtoken): make it work in dynamic assemblies.
24886
24887 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24888
24889         * metadata.c, reflection.c: simple speedup to type hash
24890         and equals code.
24891
24892 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
24893
24894         * image.c, image.h, class.c, assembly.c: move module loading
24895         to MonoImage. When loading metadata, consider alignemnet from
24896         the start of metadata, not from the metadata address in memory.
24897
24898 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
24899
24900         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
24901         AssemblyBuilder objects. Factored out custom attribute creation into
24902         a separate function.
24903         (create_custom_attr): new function to create custom attributes.
24904
24905 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
24906
24907         * Makefile.am: Got tired of typing the full pathname to pedump.
24908         Until there is another option, am installing this.
24909
24910 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
24911
24912         * class.c (class_compute_field_layout): always set field->parent 
24913         (mono_ldtoken): use mono_defaults.fieldhandle_class;
24914
24915 2003-02-11  Dick Porter  <dick@ximian.com>
24916
24917         * threads-types.h:
24918         * monitor.c: Rewrote Monitor, making lock much faster and
24919         Pulse/Wait work as specified.  Also uses much fewer handles, and only
24920         creates them as needed.
24921
24922         * exception.c: Added SynchronizationLockException
24923
24924         * threads.c: Deleted old Monitor implementation.  The new one is
24925         in a new file.
24926
24927 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24928
24929         * class.c: handled TypedReference type code. Set the correct size for
24930         class data. Setup interface_offsets for interface classes, too.
24931
24932 2003-02-09  Martin Baulig  <martin@ximian.com>
24933
24934         * debug-mono-symfile.h: Reflect latest symbol writer changes.
24935
24936 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
24937
24938         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
24939         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
24940         * object.c: fixed mono_object_get_virtual_method () for interfaces.
24941         * verify.c: check for code that runs after the end of the method.
24942
24943 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24944
24945         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
24946         "System.Math::Round2".
24947         * sysmath.h: Added Floor, Round and Round2 definitions.
24948         * sysmath.c: Modified certain functions that were not 100% compliant
24949         with MS.NET (math precision) and added the implementation of Floor,
24950         Round and Round2.
24951
24952 2003-02-07  Martin Baulig  <martin@ximian.com>
24953
24954         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
24955
24956 2003-02-07  Martin Baulig  <martin@ximian.com>
24957
24958         * debug-mono-symfile.c: Reflected latest symwriter changes.
24959         (mono_debug_create_mono_symbol_file): Removed.
24960         (mono_debug_open_mono_symbol_file): Take an argument which
24961         specifies whether to create a dynamic symbol file.
24962
24963 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
24964
24965         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
24966
24967 2003-02-05  Martin Baulig  <martin@ximian.com>
24968
24969         * reflection.c (mono_image_build_metadata): Make this public,
24970         protect it against being called multiple times, don't create
24971         resources and don't build the compressed metadata here.
24972         (mono_image_create_pefile): Do this here.
24973
24974         * icall.c
24975         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
24976
24977 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24978
24979         * socket-io.c: fixed bug #36322.
24980
24981 2003-02-06  Piers Haken <piersh@friskit.com>
24982
24983         * appdomain.[ch]:
24984         * class.h:
24985         * debug-mono-symfile.c:
24986         * icall.c:
24987         * loader.c:
24988         * mono-config.c:
24989         * monosn.c:
24990         * reflection.c:
24991         * socket-io.c: warning cleanups
24992
24993 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
24994
24995         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
24996         function. works like remoting invoke, but does a check for the Proxy first.
24997
24998 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
24999
25000         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
25001
25002 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
25003
25004         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
25005         array of pointers.
25006         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
25007         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
25008
25009         * object.c (mono_store_remote_field_new): used by the new jit
25010         instead of mono_store_remote_field
25011         (mono_load_remote_field_new): used by the new jit
25012         instead of mono_load_remote_field
25013
25014 2003-02-05  Patrik Torstensson
25015
25016         * appdomain.c: changed unload to take the domain id instead
25017         of domain
25018         
25019         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
25020
25021
25022 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25023
25024         * appdomain.c: don't look for assemblies in ApplicationBase if
25025         PrivateBinPathProbe is set.
25026
25027 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25028
25029         * object.c: make the first argument in main_args contain the absolute
25030         path to the assembly. Fixes bug #37511.
25031
25032 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25033
25034         * icall.c: get correct UTC offset for countries not using daylight
25035         time saving. Fixes bug #30030.
25036
25037 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25038
25039         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
25040         and 1 are the family).
25041
25042 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
25043
25044         * icall.c (ves_icall_InternalExecute): removed wrong assertion
25045
25046         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
25047
25048 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
25049
25050         * reflection.c: added support for SignatureHelper tokens, which is
25051         needed by the Calli opcode.
25052
25053         * reflection.h: track changes to SignatureHelper class.
25054
25055         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
25056
25057 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25058
25059         * appdomain.c: fixed loading assemblies from PrivateBinPath.
25060
25061 2003-02-03  Patrik Torstensson
25062         * appdomain.[c|h], domain.c : 
25063          - Added support for getting a domain via domain id
25064          - Support for setting and getting domain from System.AppDomain 
25065            (used in cross appdomain channel)
25066          - Added support for get/set for a MonoAppContext on a thread 
25067            (Context class in System.Runtime.Remoting.Contexts),
25068          - Removed hack in Get/SetData and ExecuteAssembly.
25069         
25070         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
25071         the managed world to get control when a proxy is created.
25072
25073         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
25074         
25075 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
25076
25077         * icall.c
25078         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
25079         Populate the codebase field as well.
25080
25081 2003-02-02  Martin Baulig  <martin@ximian.com>
25082
25083         * debug-mono-symfile.c
25084         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
25085         (mono_debug_symfile_add_method): Allow interncalls.
25086
25087 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25088
25089         * icall.c: throw parse exception if strtod fails or the string is empty.
25090
25091 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
25092
25093         * marshal.c: handle object type separately from defined
25094         class types.
25095
25096 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
25097
25098         * marshal.c: handle NATIVE_LPSTR for strings when it's
25099         explicitly specified.
25100
25101 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
25102
25103         * reflection.c, reflection.h, icall.c: setup the reflection
25104         handle cache for ModuleBuilders and AssemblyBuilders.
25105
25106 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
25107
25108         * reflection.c (reflection_methodbuilder_to_mono_method): set
25109         pinvoke flag
25110
25111 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25112
25113         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
25114
25115 2003-01-29  Dick Porter  <dick@ximian.com>
25116
25117         * threads.c: No need for the fake_thread kludge now that Thread
25118         doesn't run a class constructor
25119         
25120 2003-01-29  Dick Porter  <dick@ximian.com>
25121
25122         * threads.c: Use g_direct_hash instead of the rather bogus
25123         g_int_hash
25124
25125 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
25126
25127         * marshal.c (mono_marshal_get_native_wrapper): add check for null
25128         (fix pinvoke12.exe)
25129         (mono_marshal_get_struct_to_ptr): generate valid IL code
25130         (mono_marshal_get_ptr_to_struct): generate valid IL code
25131         (*): correctly set sig->pinvoke, we need to memdup the signature
25132         to do that
25133
25134 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
25135
25136         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
25137         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
25138
25139 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
25140
25141         * profiler.c: provide more callers information.
25142
25143 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
25144
25145         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
25146
25147         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
25148
25149         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
25150
25151 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
25152
25153         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
25154         exception instead of going into an infinite loop on dates which it 
25155         can't yet handle.
25156
25157         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
25158         out-of-range exception if needed.
25159
25160         * class.c (mono_class_setup_vtable): allow a virtual method to provide
25161         an implementation for an interface method and to override an inherited
25162         method at the same time. 
25163         Imagine a scenario when a virtual method is used to override a
25164         virtual abstract method in a parent class, and this same method 
25165         provides an implementation for an method inherited from an interface. 
25166         In this case, the interface resolution code will set im->slot, which 
25167         means that the virtual method override pass will skip this method 
25168         which means a pointer to the abstract method inherited from the parent
25169         will remain in the vtable of this non-abstract class.
25170
25171         * class.c: (mono_class_setup_vtable): continue search for a real 
25172         method if only an abstract method is found.     
25173
25174 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
25175
25176         * reflection.c: add size to encoding for ByValStr and ByValArray
25177         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
25178
25179 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
25180
25181         * class.c (mono_class_setup_vtable): pass the override info as an
25182         argument.
25183
25184         * class.c (mono_class_setup_vtable): set the slot of overriding methods
25185         correctly.
25186         
25187         * reflection.c (ensure_runtime_vtable); add support for method 
25188         overrides.
25189         
25190 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
25191
25192         * reflection.c (resolution_scope_from_image): Hack to work to work with
25193         dynamic assemblies.
25194
25195         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
25196         added a 'force_ref' argument to force this function to allways return 
25197         a TypeRef. This is needed by mono_image_get_memberref_token ().
25198         
25199 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
25200
25201         * reflection.c (mono_image_get_type_info): interfaces really don't have
25202         a parent.
25203
25204         * reflection.c (mono_image_basic_init): fill out missing fields of
25205         image structure.
25206
25207         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
25208         dynamic assemblies. This is required so dynamic assemblies show up in
25209         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
25210         Type::GetType() etc. This is consistent with MS behaviour.
25211
25212         * image.c image.h reflection.c: add newly created classes to the name 
25213         cache so mono_class_get () will find them.      
25214
25215 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
25216
25217         First part of changes to get IKVM.NET running under mono.
25218         
25219         * appdomain.h, appdomain.c: added new function 
25220         mono_domain_try_type_resolve() which will emit TypeResolve events. 
25221         This function will call AppDomain::DoTypeResolve to do the actual work.
25222
25223         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
25224         moved existing code dealing with dynamic tokens to a new function 
25225         called mono_reflection_lookup_dynamic_token (). This function will 
25226         raise TypeResolve events when appropriate. Since reflection.c is not 
25227         part of libmetadata, a new hook function called 
25228         mono_lookup_dynamic_token() is added to class.c which will call this.
25229
25230         * assembly.h assembly.c: make the invoke_load_hook function public,
25231         so it can be called for dynamic assemblies.
25232
25233         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
25234
25235         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
25236         type isn't found.
25237
25238         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
25239         MonoGHashTable, since it contains pointers to objects which the GC 
25240         needs to track.
25241
25242         * assembly.c (search_loaded): remove unused variable.
25243         
25244 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
25245
25246         * object.c: fixed issue exposed by gcc-generated IL programs
25247         that use RVA data for pointers.
25248
25249 2003-01-25  Martin Baulig  <martin@ximian.com>
25250
25251         * threads.c (start_wrapper): Moved the initialization of
25252         `start_func' above the mono_new_thread_init() call to which we
25253         pass it as argument.
25254
25255 2003-01-24  Martin Baulig  <martin@ximian.com>
25256
25257         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
25258         the MonoThread pointer.
25259
25260 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
25261
25262         * icall.c: Rename `PowImpl' to Pow.
25263
25264 2003-01-23  Dick Porter  <dick@ximian.com>
25265
25266         * threads.c (start_wrapper): Create a Thread object if needed, so
25267         the Main() thread can do the class initialisation in a subthread
25268         that has been set up to allow managed code execution.
25269
25270         Pass the thread ID instead of the MonoThread pointer to the thread
25271         start and attach callbacks.  This change is required, because the
25272         jit thread start callback must be called _before_ the Thread
25273         object can be created.
25274         
25275         (mono_thread_init): Removed much object creation code that is no
25276         longer needed.  No managed code is called from here now.
25277
25278         * object.c (mono_runtime_exec_managed_code): Create a subthread
25279         for Main, and call back to the runtime to use it.
25280         Set the exit code when Main exits.
25281
25282         * gc.c: Make sure domain finalisation happens in a subthread.
25283         Re-enable threaded GC, fixing bug 31333 (again).
25284
25285         * environment.c: System.Environment internall calls (so far just
25286         ExitCode is here, the others are still in icall.c)
25287
25288         * appdomain.c (mono_runtime_cleanup): All threads running managed
25289         code should have finished before mono_runtime_cleanup() is
25290         reached, so no need to clean up threads.
25291
25292 2003-01-22  Martin Baulig  <martin@ximian.com>
25293
25294         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
25295         `gpointer func' arguments.      
25296         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
25297         but added `MonoThread *thread' argument.
25298         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
25299
25300         * threads.c (mono_new_thread_init): Added `gpointer func' argument
25301         and pass it to the mono_thread_start_cb callback.
25302         (mono_install_thread_callbacks): New public function to install a
25303         set of callbacks which are set by the debugger.
25304         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
25305
25306 2003-01-22  Martin Baulig  <martin@ximian.com>
25307
25308         * Makefile.am: Install debug-mono-symfile.h.
25309
25310 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
25311
25312         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
25313
25314 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
25315
25316         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
25317         * class.c (mono_ptr_class_get): correctly set access levels of pointers
25318         (mono_array_class_get): correctly set access levels of arrays
25319
25320 2003-01-20      Patrik Torstensson
25321         * image.h (MonoAssemblyName): changed major, minor, build, revision
25322         from signed to unsigned.
25323
25324 2003-01-20  sean kasun <skasun@azstarnet.com>
25325
25326         * reflection.c (load_cattr_value): Now this handles
25327         MONO_TYPE_SZARRAY.  Fixes bug #35629
25328
25329 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
25330
25331         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
25332         integer value
25333
25334 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25335
25336         * decimal.c: fixed bug #26056.
25337
25338 2003-01-17  Martin Baulig  <martin@ximian.com>
25339
25340         * gc.c: Raise an ExecutionEngineException instead of using g_error().
25341
25342 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25343
25344         * exception.[ch]:
25345         (mono_get_exception_type_initialization): new function.
25346
25347         * object.c: throw a TypeInitializationException when an exception is
25348         thrown invoking the class constructor.
25349
25350 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25351
25352         * reflection.c: fixed attribute reading.
25353
25354 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25355
25356         * icall.c:
25357         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
25358         provided, look for the type in the calling assembly and then in
25359         mscorlib; if the assembly name is provided, only try that one.
25360
25361 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
25362
25363         * object.c: register the vtable before there is a chance it's
25364         queried again recursively.
25365
25366 2003-01-13  Duncan Mak  <duncan@ximian.com>
25367
25368         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
25369         gc-internal.h. 
25370         
25371 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
25372
25373         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
25374
25375 2003-01-11  Martin Baulig  <martin@ximian.com>
25376
25377         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
25378         this to 20 for the release.
25379
25380 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
25381
25382         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
25383
25384         * loader.c (mono_method_get_marshal_info): bug fix
25385
25386         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
25387         structures with explicit layout
25388
25389 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
25390
25391         * profiler.c: made the output more readable (and sorted). 
25392         Added caller information for the allocation profiler.
25393
25394 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
25395
25396         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
25397
25398 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25399
25400         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
25401         to get value types.
25402         
25403 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
25404
25405         * object.c, profiler.h, profiler.c, profiler-private.h:
25406         Added object allocation profiler.
25407
25408 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
25409
25410         * reflection.h, reflection.c: handle global methods.
25411         Compress blob entries.
25412
25413 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
25414
25415         * marshal.c: fix compilation.
25416
25417 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
25418
25419         * loader.c (mono_method_get_marshal_info): impl.
25420
25421         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
25422
25423 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25424
25425         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
25426         for reference types.
25427
25428 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
25429
25430         * loader.c: fixed off by one error in loaded parameter names.
25431
25432 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
25433
25434         * marshal.c (mono_marshal_get_icall_wrapper): like
25435         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
25436         instead of a MonoMethod.
25437
25438 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25439
25440         * decimal.c: fixed bug #36537.
25441
25442 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
25443
25444         * marshal.c: throw a missing method exception if a
25445         P/Invoke method is not found.
25446
25447 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
25448
25449         * icall.c: allow a null this for constructors.
25450
25451 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
25452
25453         * icall.c: raise the proper exceptions if the arguments to the
25454         internal Invoke are incorrect.
25455
25456 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
25457
25458         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
25459
25460 2003-01-03  Martin Baulig  <martin@ximian.com>
25461
25462         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
25463
25464 2002-12-31  Martin Baulig  <martin@ximian.com>
25465
25466         * debug-mono-symfile.c: Completely rewrote the type section.
25467         Instead of using individual malloc()ed fields, we use one big
25468         continuous memory area and offsets into this area.
25469         See the comments in the source code for details.
25470
25471 2002-12-30  Martin Baulig  <martin@ximian.com>
25472
25473         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
25474
25475 2002-12-30  Martin Baulig  <martin@ximian.com>
25476
25477         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
25478         line number table in this data blob instead of using an external
25479         pointer.
25480
25481 2002-12-28  Martin Baulig  <martin@ximian.com>
25482
25483         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
25484
25485 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
25486
25487         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
25488         as a boxed return type.
25489
25490 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
25491
25492         * appdomain.c
25493         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
25494         g_build_filename to properly get separators on the filename created.
25495
25496         * object.h: Small change, introduce MonoMarshalByRefObject to
25497         track the layout of that structure in the C# universe as we make
25498         changes there.
25499
25500 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
25501
25502         * object.c: removed assert to allow static fields on interfaces.
25503         * loader.c: a TypeSpec may be used for any type, not just arrays.
25504
25505 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
25506
25507         * class.c, class.h: added mono_class_array_element_size ().
25508         Ignore static methods in interfaces.
25509
25510 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25511
25512         * threads.c: fixed the build under cygwin.
25513
25514 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
25515
25516         * reflection.c: handle nullref constants. Allocate keys for
25517         reflection handles with the GC.
25518
25519 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
25520
25521         * threads.c, threads.h: added mono_thread_get_abort_signal()
25522         to get a suitable signal for thread abort.
25523
25524 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
25525
25526         * metadata.c: fix handling of ExportedType table.
25527
25528 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25529
25530         * icall.c: added WriteWindowsDebugString internal call.
25531
25532 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25533
25534         * reflection.h: added fields to match C# implementation.
25535
25536 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25537
25538         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
25539
25540 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
25541
25542         * gc.h, gc-internal.h: Rename header for GC internal calls to
25543         gc-internal.h from gc.h as to not clash with Boehm GC having its
25544         header installed as <gc.h> in outside include paths.
25545         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
25546         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
25547
25548 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25549
25550         * icall.c: assign minor, build and revision in FillName.
25551
25552 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
25553
25554         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
25555         Added support for running code generated by Reflection.Emit.
25556
25557 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25558
25559         * appdomain.c: check for NULL argument in LoadFrom.
25560
25561 2002-12-10  Dick Porter  <dick@ximian.com>
25562
25563         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
25564
25565 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25566
25567         * appdomain.c: fix buglet when building exe file name.  Handle full
25568         assembly name (needed after latest changes to AssemblyName).
25569         * image.c:
25570         (mono_image_close): free some hashtables.
25571
25572 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
25573
25574         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
25575         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
25576         on some systems (redhat 7.3) 
25577
25578 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
25579
25580         * threads.c: delete the critical section of a sync block,
25581         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
25582
25583 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
25584
25585         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
25586
25587 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25588
25589         * appdomain.[ch]: handle the assembly preload event to try loading the
25590         assemblies using the paths we have in the current domain.
25591
25592         * assembly.[ch]: created an assembly preload hook that is called to try
25593         loading the assembly by other means that the ones provided here.
25594
25595         * domain.c: initialize the domain search path.
25596
25597         From now on, assemblies (TODO: except corlib and System) are loaded
25598         according to these rules when using mono_assembly_load ():
25599
25600                 1. It tries to load the assembly from the ApplicationBase
25601                 of the current domain appending .dll and .exe (TODO: have to
25602                 try loading from name/name.dll and name/name.exe).
25603
25604                 2. It tries the search path specified in PrivateBinPath for the
25605                 current domain (if any).
25606
25607                 3. Previous behavior.
25608
25609 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
25610
25611         * icall.c: implemented GetInterfaceMap() related icall.
25612         * domain.c, loader.h: load MethodInfo in mono_defaults.
25613
25614 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
25615
25616         * gc.c: disable the finalizer thread for now, untill all the issues
25617         with it are resolved.
25618
25619 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
25620
25621         * string-icalls.c: handle embedded nulls in string ctor when the
25622         length is specified.
25623
25624 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
25625
25626         * class.c: look for explicit interface implementation in parent
25627         classes, too.
25628
25629 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
25630
25631         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
25632
25633 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
25634
25635         * gc.c: protect handles with a critical section.
25636
25637 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25638
25639         * icall.c:
25640         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
25641         parameters. If no assembly specified, try getting the type from all
25642         the assemblies in the current domain, else, load the assembly and get
25643         the type from it.
25644
25645 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25646
25647         * marshal.c: applied patch from Aleksey Demakov that fixes
25648         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
25649
25650 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25651
25652         * icall.c: fixed get_location.
25653
25654 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
25655
25656         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
25657         declarations to make it work with older gcc. 
25658
25659         * loader.c (mono_get_method): set signature->pinvoke for native calls
25660
25661 2002-11-20  Dick Porter  <dick@ximian.com>
25662
25663         * threads.c (mono_thread_init): Set the main thread's handle
25664
25665 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
25666
25667         * gc.c: allow compilation without GC support. Changed to match the
25668         mono coding style.
25669
25670 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
25671
25672         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
25673
25674 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
25675
25676         * reflection.c: set a public key token on the core assemblies.
25677
25678 2002-11-18  Dick Porter  <dick@ximian.com>
25679
25680         * threads.c: Split out some thread initialisation so that other
25681         files can set the start callback function.
25682
25683         * gc.c: Run finalisers in a separate thread, to avoid stack
25684         overflow.  Fixes bug 31333.
25685
25686         * appdomain.c: Set up GC finalisation thread.
25687
25688         * reflection.c: 
25689         * object.c: 
25690         * domain.c: Use gc.h macros for GC_malloc
25691         
25692 2002-11-15  Dick Porter  <dick@ximian.com>
25693
25694         * threadpool.c: 
25695         * threads.c:
25696         * appdomain.c: Removed mono_runtime_init_with_attach(),
25697         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
25698         merging the extra parameter with the existing function.  Removed
25699         unneeded code in mono_thread_attach().
25700
25701 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
25702
25703         * image.c (mono_image_loaded_by_guid): a method to get loaded
25704         images by guid. 
25705         (load_metadata_ptrs): we store the guid as string.
25706
25707 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
25708
25709         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
25710
25711         * metadata.c (mono_guid_to_string): imported method form Zoltan
25712         Varga (slightly modified)
25713
25714         * assembly.c (mono_assembly_open): load precompiled code
25715
25716         * loader.h (MonoMethod): we store the method token for use in the
25717         aot compiler. 
25718
25719 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25720
25721         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
25722         the hook function called when an assembly is loaded.
25723         
25724         * domain.c: Modified file.
25725         (mono_domain_assembly_load): removed hash table insertion of assemblies.
25726
25727         Fixes bug #33196.
25728
25729 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
25730
25731         * reflection.c: Map PEFileKind to the value expected by the WinNT
25732         image loader. 
25733
25734 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25735
25736         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
25737         Read until the buffer is filled completely.
25738
25739 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25740
25741         * icall.c: implemented MonoType.InternalGetEvent ().
25742
25743 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25744
25745         * appdomain.c: implemented InitAppDomainSetup. Delayed
25746         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
25747         the entry_assembly.
25748
25749         * assembly.c: base_dir is now an absolute path ending with
25750         G_DIR_SEPARATOR.
25751
25752         * icall.c: modified get_location according to the above changes.
25753
25754         * object.c: init AppDomain.SetupInformation for the default domain after
25755         we have the entry assembly.
25756
25757         * domain.c: when unloading a domain, setup = NULL.
25758
25759 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
25760
25761         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
25762
25763 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
25764
25765         * object.h, object.c: introduced mono_object_get_virtual_method ()
25766         to lookup the method invoked on an object when a callvirt is done on
25767         a method.
25768         * icall.c: make MethodInfo::Invoke() always do a virtual call.
25769
25770 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25771
25772         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
25773         current domain when loaded an assembly and failed to load it.
25774
25775         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
25776
25777 2002-10-31  Dick Porter  <dick@ximian.com>
25778
25779         * icall.c: 
25780         * file-io.h: 
25781         * file-io.c: Return the error status in a parameter, as the
25782         GetLastError() value has long since been blown away if we try and
25783         look it up in a subsequent internal call invocation.  Delete the
25784         GetLastError() internal call, because it's useless.
25785
25786 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
25787
25788         * class.[ch]: added cast_class to fix bug 29517
25789
25790 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
25791
25792         * marshal.c: create valid IL code in the filter clause:
25793         the new JIT is less forgiving:-)
25794
25795 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25796
25797         * icall.c: removed get_property internal call.
25798
25799 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
25800
25801         * appdomain.h domain.c: Added an ID to appdomains.
25802         
25803         * threads.c threads.h icall.c: Implement icall
25804         Thread:GetDomainID(), and remove unused icall 
25805         CurrentThreadDomain_internal.
25806
25807 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25808
25809         * icall.c: Don't recurse through the base types in GetConstructor.
25810         Fixes bug #32063. 
25811
25812 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
25813
25814         * mempool.h, mempool.c: added mono_mempool_empty() and
25815         mono_mempool_stats().
25816
25817 2002-10-23  Dick Porter  <dick@ximian.com>
25818
25819         * file-io.c: 
25820         * file-io.h: 
25821         * icall.c: Added MonoIO.GetFileType internal call
25822
25823 2002-10-17  Dick Porter  <dick@ximian.com>
25824
25825         * appdomain.c (mono_runtime_cleanup): Don't signal the async
25826         delegate semaphore before waiting for all threads to finish,
25827         because new threads can also call async delegates.  Fixes bug
25828         32004.
25829
25830         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
25831         of 3 seconds, in case another async job is queued.  (This part is
25832         needed because the bug fix reintroduced the 3s exit lag.)  This
25833         makes the mono_runtime_shutdown flag superfluous.
25834
25835 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
25836
25837         * reflection.c: include ehader size in method section headers.
25838         Really check for suplicated modules entries.
25839
25840 2002-10-17  Martin Baulig  <martin@gnome.org>
25841
25842         * debug-mono-symfile.c: Added back support for locals.
25843
25844 2002-10-14  Martin Baulig  <martin@gnome.org>
25845
25846         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
25847         MONO_TYPE_VOID.
25848
25849 2002-10-14  Martin Baulig  <martin@gnome.org>
25850
25851         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
25852         mono_class_get() instead of looking in the class cache. 
25853
25854 2002-10-13  Martin Baulig  <martin@gnome.org>
25855
25856         * debug-mono-symfile.c: Set version number to 28, include the
25857         signature in method names.
25858
25859 2002-10-13  Martin Baulig  <martin@gnome.org>
25860
25861         * debug-mono-symfile.h: Set version number to 27.
25862
25863 2002-10-11  Martin Baulig  <martin@gnome.org>
25864
25865         * gc.c: Don't register/unregister NULL pointers as disappearing links.
25866
25867 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25868
25869         * metadata.c, metadata.h: added helper function to allocate signatures.
25870
25871 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25872
25873         * icall.c: added internal call to get the location of machine.config.
25874
25875 2002-10-08  Martin Baulig  <martin@gnome.org>
25876
25877         * debug-mono-symfile.c: Ignore classes with a pending init for the
25878         moment.
25879
25880 2002-10-03  Dick Porter  <dick@ximian.com>
25881
25882         * threads.c: Freebsd pthread_t is a pointer
25883
25884 2002-10-03  Dick Porter  <dick@ximian.com>
25885
25886         * socket-io.c: Implemented GetHostName_internal
25887
25888 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25889
25890         * mono-config.c:
25891         (mono_config_parse_file): don't leak the text.
25892
25893 2002-10-02  Martin Baulig  <martin@gnome.org>
25894
25895         * debug-mono-symfile.c: Added support for methods.
25896
25897 2002-10-01  Martin Baulig  <martin@gnome.org>
25898
25899         * debug-mono-symfile.c: Don't emit methods and line numbers for
25900         the dynamic symbol file, just write the type table.  We can easily
25901         have an external helper program which creates a symbol file for an
25902         IL file.        
25903
25904 2002-10-01  Dick Porter  <dick@ximian.com>
25905
25906         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
25907         Only add the handle to the cleanup array when we're about to
25908         launch the thread.  Bug 31425 deadlocked when the test was run on
25909         mono under w32.
25910
25911 2002-10-01  Martin Baulig  <martin@gnome.org>
25912
25913         * debug-mono-symfile.c: Added support for properties.
25914
25915 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25916
25917         * reflection.c: unaligned store fix from Mark Crichton
25918         <crichton@gimp.org>.
25919
25920 2002-09-27  Martin Baulig  <martin@gnome.org>
25921
25922         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
25923         New interncall.
25924
25925 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
25926
25927         * assembly.h, assembly.c: use a sane API to hook into the assembly
25928         loading process instead of a useless special-purpouse hack
25929         (ngen needs a hook, too, for example).
25930
25931 2002-09-27  Dick Porter  <dick@ximian.com>
25932
25933         * threads.c (mono_thread_init): Call GetCurrentProcess() so
25934         io-layer can set up some process handle info.  Not needed on w32,
25935         but doesn't hurt either.
25936
25937         * process.c: Pass the program name in the second parameter to
25938         CreateProcess, so the path is searched.  Include the working
25939         directory. Implemented process name, process enumeration, and some
25940         process detail internal calls.
25941         
25942         * icall.c: Added internal calls for process lookup, and some
25943         process details
25944
25945 2002-09-26  Martin Baulig  <martin@gnome.org>
25946
25947         * assembly.c (mono_install_open_assembly_hook): New global
25948         function to install a function to be invoked each time a new
25949         assembly is loaded.
25950         (mono_assembly_open): Run this callback function if set.
25951
25952         * debug-mono-symfile.c: Put back line numbers for the dynamic
25953         symbol file and also record the .il file as source file.  This
25954         allows us to install the temporary symbol file as `file.dbg' just
25955         like a compiler-generated one.
25956
25957 2002-09-26  Nick Zigarovich <nick@chemlab.org>
25958
25959         * Corrected typo in gc.c (BOHEM vs BOEHM).
25960
25961 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25962
25963         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
25964         GetProperties. Also avoid calling g_slist_length in GetProperties and
25965         GetMethods.
25966
25967 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25968
25969         * reflection.c: avoid unaligned stores (bug spotted by
25970         Mark Crichton  <crichton@gimp.org>).
25971
25972 2002-09-25  Martin Baulig  <martin@gnome.org>
25973
25974         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
25975         instead of guint64 for addresses and added prologue/epilogue info.
25976
25977 2002-09-25  Martin Baulig  <martin@gnome.org>
25978
25979         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
25980         store line number info.  For the dynamic symbol file, we only need
25981         to provide the JIT generated dynamic line number info for the dynamic
25982         symbol file.
25983
25984 2002-09-25  Martin Baulig  <martin@gnome.org>
25985
25986         * debug-mono-symfile.h: Incremented version number.
25987
25988 2002-09-24  Martin Baulig  <martin@gnome.org>
25989
25990         * class.c (mono_debugger_class_init_func): New global function
25991         pointer variable.
25992         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
25993         call it.
25994
25995         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
25996         function.  This is called via the mono_debugger_class_init_func
25997         hook to add all types to the dynamic type table.
25998         (ves_icall_MonoDebugger_GetType): New interncall to get a class
25999         from its metadata token.
26000
26001         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
26002         New interncall for the debugger.
26003
26004 2002-09-24  Nick Drochak <ndrochak@gol.com>
26005
26006         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
26007         before using it in case it is null.
26008         
26009 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26010
26011         * metadata.c: allow custom modifiers in local var signatures
26012         (bug spotted by Zoltan Varga).
26013
26014 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26015
26016         * class.c: deal with the <Module> class that may have a NULL vtable.
26017         Eliminate warnings.
26018
26019 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26020
26021         * image.c, image.h: more strong name helpers.
26022         * monosn.c: more work: convert pem keys to cryptoapi format.
26023
26024 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26025
26026         * string-icalls.c: speedup IndexOf.
26027
26028 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26029
26030         * icall.c: updates from Zoltan.2.Varga@nokia.com.
26031
26032 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26033
26034         * icall.c: cleanup: use mono_object_domain ().
26035
26036 2002-09-23  Martin Baulig  <martin@gnome.org>
26037
26038         * debug-mono-symfile.c: Improved type support.
26039
26040 2002-09-22  Martin Baulig  <martin@gnome.org>
26041
26042         * debug-mono-symfile.c: Added support for reference types and strings.
26043
26044 2002-09-22  Martin Baulig  <martin@gnome.org>
26045
26046         * debug-mono-symfile.c: Started to work on the type table.
26047
26048 2002-09-21  Martin Baulig  <martin@gnome.org>
26049
26050         * debug-mono-symfile.c: Largely reworked the symbol table format.
26051         The symbol table is now incrementally updated each time a new
26052         method is added.  We're now also using our own magic and version
26053         so that you don't need to recompile all your classes if the
26054         dynamic table changes.
26055         (mono_debug_update_mono_symbol_file): Removed.
26056         (mono_debug_symfile_add_method): New function to add a method.
26057
26058 2002-09-21  Martin Baulig  <martin@gnome.org>
26059
26060         * icall.c
26061         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
26062         New interncall.
26063
26064         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
26065         New interncall to get a method from its metadata token.
26066
26067 2002-09-21  Martin Baulig  <martin@gnome.org>
26068
26069         * debug-mono-symfile.c: Create type table.
26070
26071 2002-09-20  Martin Baulig  <martin@gnome.org>
26072
26073         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
26074
26075 2002-09-20  Martin Baulig  <martin@gnome.org>
26076
26077         * debug-mono-symfile.c: Provide information about params and locals.
26078
26079 2002-09-20  Martin Baulig  <martin@gnome.org>
26080
26081         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
26082         New interncall.
26083
26084         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
26085         interncall to get a method from its metadata token.
26086
26087 2002-09-20  Martin Baulig  <martin@gnome.org>
26088
26089         * debug-mono-symfile.c: Added a few checks for method->header
26090         being non-NULL.  This should never happen, but for the moment
26091         let's use a g_warning() rather than a g_assert().
26092
26093 2002-09-19  Mark Crichton  <crichton@gimp.org>
26094
26095         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
26096         even if support for it isn't present.  Added an #ifdef to fix this.
26097
26098         * socket-io.c: Added checks back for Solaris support.
26099
26100 2002-09-19  Martin Baulig  <martin@gnome.org>
26101
26102         * debug-mono-symfile.c (read_string, write_string): Reflect latest
26103         changes in the symbol file format.
26104
26105 2002-09-18  Martin Baulig  <martin@gnome.org>
26106
26107         * debug-mono-symfile.c: Set version number to 21.
26108
26109 2002-09-18  Dick Porter  <dick@ximian.com>
26110
26111         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
26112         on netbsd.  Fixes bug 30051.
26113
26114 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26115
26116         * reflection.c:
26117         (set_version_from_string): little fix.
26118
26119 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26120
26121         * monosn.c, Makefile.am: added strong name utility.
26122         * reflection.h, reflection.c: implemented delayed signing,
26123         locale, version and hash id assembly attributes.
26124
26125 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26126
26127         * loader.c, metadata.c: load param attributes in signatures.
26128
26129 2002-09-16  Martin Baulig  <martin@gnome.org>
26130
26131         * debug-mono-symfile.c: Added string table with all method names.
26132
26133 2002-09-14  Martin Baulig  <martin@gnome.org>
26134
26135         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
26136         fast method lookup.
26137
26138 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
26139
26140         * reflection.c: record the public key token of referenced assemblies.
26141
26142 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26143
26144         * image.c, image.h: added functions to get the strong name and the
26145         public key of an assembly.
26146         * pedump.c: use them.
26147
26148 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
26149
26150         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
26151
26152 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
26153
26154         * marshal.c (mono_marshal_get_managed_wrapper): Added
26155         MONO_TYPE_BOOLEAN 
26156
26157 2002-09-11  Martin Baulig  <martin@gnome.org>
26158
26159         * gc.c: Call GC_unregister_disappearing_link() on all links when
26160         finalizing them, this is necessary to aviod a crash in boehm's
26161         finalize handler.
26162
26163 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26164
26165         * gc.c: handle GetTarget for finalized objects spotted and fixed by
26166         nick@chemlab.org.
26167
26168 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
26169
26170         * icall.c: implemented MonoType::Module.
26171         * reflection.c, reflection.h: mono_module_get_object () from
26172         Tomi Pakarinen <tomi.pakarinen@welho.com>.
26173
26174 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26175
26176         * icall.c: ignore overridden methods in GetMethods ().
26177         Fix for FieldInfo::SetValue().
26178         * object.c: handle float/double in runtime invoke.
26179
26180 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26181
26182         * object.c: allow a constructor to be called again on an object.
26183
26184 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26185
26186         * class.h, class.c: move field layout code to it's own function and
26187         export it. Get an interface id earlier. Move fields in MonoClass
26188         so they are more cache friendly and align the bitfields.
26189         * loader.c: temporary handle get_param_names() for a runtime method.
26190         * reflection.c, reflection.h: more code to handle runtime creation of
26191         types.
26192
26193 2002-09-09  Martin Baulig  <martin@gnome.org>
26194
26195         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
26196         signature with the pinvoke field being set for the actual call.
26197
26198 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26199
26200         * icall.c: removed some unused icalls. Start of map of glib charsets
26201         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
26202
26203 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26204
26205         * debug-helpers.c: break infinite loop (found and fixed by
26206         Holger Arnold <harnold@gmx.de>).
26207
26208 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
26209
26210         * icall.c: target may be null in create_delegate.
26211
26212 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26213
26214         * marshal.c: handle a boolean return type.
26215
26216 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26217
26218         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
26219
26220 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26221
26222         * gc.c: fix weakreferences.
26223
26224 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
26225
26226         * icall.c: added icall to get default codepage.
26227
26228 2002-09-03  Dick Porter  <dick@ximian.com>
26229
26230         * threads.h: 
26231         * threads.c: Use MonoThread instead of MonoObject where
26232         apropriate.
26233
26234         Store running thread objects in a hash table, so that we have all
26235         the info to hand when waiting for them to finish
26236         (means we don't need OpenThread() any more, so mingw builds should
26237         be fully functional again.)
26238
26239         * verify.c:
26240         * object.h: Added thread ID to MonoThread
26241
26242 2002-09-03  Martin Baulig  <martin@gnome.org>
26243
26244         * icall.c (System.Reflection.Assembly::get_location): New interncall.
26245
26246 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26247
26248         * icall.c: fixed leak in get_temp_path. Thanks lupus.
26249
26250 2002-09-03  Martin Baulig  <martin@gnome.org>
26251
26252         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
26253         argument to store the end address of the disassembled instruction.
26254
26255         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
26256         here from debug-symfile.h.
26257         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
26258         JIT into this struct.
26259         (MonoSymbolFile): Added `char *image_file' field.
26260         (MonoDebugGetMethodFunc): Removed.
26261         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
26262         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
26263         (mono_debug_find_method): New method.
26264
26265         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
26266         create a full symbol file.
26267         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
26268         and static symbol files.
26269         (mono_debug_find_method): The symbol file keeps an internal method hash,
26270         call this to get a MonoDebugMethodInfo from a MonoMethod.
26271
26272         * debug-symfile.[ch]: Removed.
26273
26274 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
26275
26276         * image.c (do_mono_image_open): Remove linker version check.
26277
26278 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
26279
26280         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
26281         wrappers for instance methods.
26282         
26283 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26284
26285         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
26286
26287 2002-08-28  Dick Porter  <dick@ximian.com>
26288
26289         * Makefile.am: Export HOST_CC for w32 builds
26290
26291 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26292
26293         * file-io.c process.c: MonoString are null terminated, no
26294         need for mono_string_to_utf16() anymore.
26295
26296 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26297
26298         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
26299
26300 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
26301
26302         * icall.c, reflection.h: speedup System.MonoType.
26303
26304 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26305
26306         * reflection.c: allow null as the value of a string argument in
26307         custom attributes constructors.
26308
26309 2002-08-27  Martin Baulig  <martin@gnome.org>
26310
26311         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
26312         `trampoline_address' field.
26313
26314 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
26315
26316         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
26317         check (fixes bug #29486) 
26318
26319 2002-08-27  Martin Baulig  <martin@gnome.org>
26320
26321         * debug-mono-symfile.c: Changed the file format in a way that allows us
26322         open it read-only and to use a specially malloced area for all the
26323         dynamic data.  We can now also generate a symbol file on-the-fly if we're
26324         debugging IL code and there is no MCS generated symbol file for it.
26325
26326 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26327
26328         * object.c: added a define for a good string and array
26329         creation speedup (not enabled by default because we need to deal with
26330         the synch stuff).
26331
26332 2002-08-26  Martin Baulig  <martin@gnome.org>
26333
26334         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
26335         function to create a dynamic symbol file.  This is used by the
26336         debugger to create a symbol file for IL code on-the-fly.
26337
26338 2002-08-26  Martin Baulig  <martin@gnome.org>
26339
26340         * loader.c (mono_lookup_pinvoke_call): Include the error message
26341         from g_module_error() in the error message.
26342
26343 2002-08-24  Martin Baulig  <martin@gnome.org>
26344
26345         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
26346         function to update the symbol file.  The symbol file is mmap()ed
26347         writable, but private.  This allows us to install the symbol file
26348         together with the assembly.
26349
26350 2002-08-24  Martin Baulig  <martin@gnome.org>
26351
26352         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
26353         but they can read the new symbol file format which mcs is now creating.
26354
26355         * debug-symfile.c (mono_debug_find_source_location): Moved to
26356         debug-mono-symfile.c; this is now operating on the new symbol file.
26357
26358 2002-08-23  Martin Baulig  <martin@gnome.org>
26359
26360         * debug-helpers.c (mono_method_desc_from_method): New function to get
26361         a MonoMethodDesc from a MonoMethod.
26362
26363 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26364
26365         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
26366         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
26367
26368 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
26369
26370         * string-icalls.[ch]: make helper methods static.
26371
26372 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26373
26374         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
26375         types to it and to SetValueInternal.
26376
26377         * object.c: Moved handle_enum label to its proper place. This was the
26378         f... bug! ;-)
26379
26380         This time i compiled mcs and gtk-sharp and they both work.
26381
26382 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26383
26384         * icall.c: reverted partially my previous patch until 
26385         object.c:set_value handles enums correcly.
26386
26387 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26388
26389         * icall.c:
26390         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
26391         (ves_icall_System_Environment_get_MachineName): removed warning when
26392         compiling under cygwin.
26393
26394 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26395
26396         * object.c: fixed field_get_value() for reference types.
26397
26398 2002-08-22  Dick Porter  <dick@ximian.com>
26399
26400         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
26401         Don't free a buffer while it's still needed.  Patch from Jonathan
26402         Liger <Jonathan.liger@wanadoo.fr>
26403
26404 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
26405
26406         * icall.c (ves_icall_System_Environment_get_Platform): Add new
26407         internal call.
26408
26409 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
26410
26411         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
26412         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
26413
26414         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
26415         we call unmanaged code which throws exceptions.
26416
26417 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26418
26419         * appdomain.h: added per-domain entry_assembly.
26420         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
26421         arguments.
26422         * icall.c: Assembly::GetEntryAssembly icall.
26423         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
26424         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
26425
26426 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26427
26428         * appdomain.h, gc.c: added mono_domain_finalize ().
26429
26430 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26431
26432         * object.c:
26433         (mono_print_unhandled_exception): changed g_warning by g_printerr
26434         because g_log has a 1024 characters limit (yeah, i got a big stack
26435         trace). Don't print exception name, that should be in ToString 
26436         returned string.
26437
26438 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26439
26440         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
26441         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
26442
26443 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26444
26445         * object.c:
26446         (mono_print_unhandled_exception): after previous commit, i realized
26447         that MS calls ToString on the exception. I changed this function to
26448         do that. This way we get stack_trace for free.
26449
26450 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26451
26452         * object.c:
26453         (mono_print_unhandled_exception): invoke Message property instead of
26454         getting 'message' field from Exception. Don't allocate memory for
26455         'trace' and 'message' if not needed.
26456
26457 2002-08-18  Dick Porter  <dick@ximian.com>
26458
26459         * unicode.c: Fix asserts to match Encoder.cs checks
26460
26461 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26462
26463         * marshal.c: fix unaligned store issue and a few wrong
26464         opcode argument types.
26465
26466 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26467
26468         * icall.c: added GetUninitializedObjectInternal internal call.
26469
26470 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
26471
26472         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
26473         to the right domain.
26474
26475 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
26476
26477         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
26478
26479         * class.c (class_compute_field_layout): set blittable to false for Strings
26480
26481         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
26482
26483 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26484
26485         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
26486         first chunk of code to create types at runtime. Code to
26487         handle ReflectedType/DeclaringType. Make reflection handles
26488         domain specific.
26489
26490 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
26491
26492         * class.c: set correct name in arrays.
26493
26494 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
26495
26496         * appdomain.c (mono_domain_transfer_object): make it work with
26497         valuetypes. bug fixes.
26498
26499 2002-08-12  Dick Porter  <dick@ximian.com>
26500
26501         * object.h: Rename some parameters to avoid c++ keywords (Patch
26502         from Joseph Wenninger <kde@jowenn.at>)
26503
26504 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
26505
26506         * icall.c: added icall to implement Assembly.GetFile*.
26507
26508 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26509
26510         * reflection.h, reflection.c: code to embed managed resources.
26511
26512 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26513
26514         * class.c: move all the type size stuff into
26515         class_compute_field_layout().
26516
26517 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26518
26519         * class.c: ensure enums have always the correct instance size.
26520         * unicode.c: remove wrong assert.
26521
26522 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26523
26524         * assembly.c: fix mem corruption issue.
26525         * image.h, image.c: added mono_image_get_resource () to access
26526         managed resources.
26527         * icall.c: implemented Assembly.EntryPoint property and some
26528         Managed Resources related internalcalls.
26529
26530
26531 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26532
26533         * image.c, image.h: impemented mono_image_get_entry_point ().
26534         * appdomain.c: use mono_image_get_entry_point.
26535
26536 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26537
26538         * reflection.c: support the object type argument when loading
26539         custom attributes.
26540
26541 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
26542
26543         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
26544         String as return type.
26545
26546 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
26547
26548         * reflection.c: fix encoding of named args for custom attrs to match
26549         the ms implementation. Read them back when instantiating custom
26550         attributes.
26551
26552 2002-08-02  Radek Doulik  <rodo@ximian.com>
26553
26554         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
26555         by Dietmar as quick fix
26556         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
26557         16 as stack size, used on more places as quick fix before Dietmar
26558         will fix it properly
26559
26560 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26561
26562         * object.h, object.c: added accessors for fields and properties.
26563
26564 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26565
26566         * class.c, class.h: made mono_class_get_field_from_name ()
26567         loop on parent types.
26568         Added mono_class_get_property_from_name ().
26569
26570 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26571
26572         * class.c, class.h: move the code to setup the type vtable in its own
26573         function so that it can be reused also for types created at runtime.
26574         Eliminate the "class" identifier from the header file.
26575         * reflection.c: setup the vtable for enums so that we can create
26576         objects for use in SetConstant ().
26577
26578 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
26579
26580         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
26581         instead of the delegate itself as this pointer (bug #28383)
26582
26583 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
26584
26585         * marshal.c (mono_marshal_get_managed_wrapper): added return type
26586         conversions.
26587
26588 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26589
26590         * loader.c: don't set the pinvoke bit on icalls.
26591
26592 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
26593
26594         * debug-helpers.c (mono_method_full_name): only print a number to
26595         indicate wrapper type (so that the output is more readable in traces).
26596
26597 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
26598
26599         * class.c (mono_class_init): include method override patch from Paolo
26600
26601 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
26602
26603         * icall.c: fixed GetTypeCode().
26604
26605 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
26606
26607         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
26608         use real delegate invoke function to make it work with multicast
26609         delegates (fix bug# 28291).
26610
26611 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26612
26613         * object.c: load constant strings.
26614
26615 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26616
26617         * reflection.c: no magic numbers.
26618         * tabledefs.h: security action enum.
26619
26620 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26621
26622         * assembly.c: fix possible memory corruption.
26623
26624 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26625
26626         * reflection.h, reflection.c: added support for linking resources.
26627         * verify.c: check we have an updated corlib.
26628
26629 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
26630
26631         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
26632         string arrays.
26633         (mono_marshal_string_array): null terminate unmanaged string arrays.
26634         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
26635
26636 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26637
26638         * icall.c: Type.GetType () can now return also types from the
26639         calling assembly.
26640
26641 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
26642
26643         * loader.h, loader.c: stack walking support.
26644         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
26645         GetCallingAssembly.
26646
26647 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
26648
26649         * marshal.c: added optimisations for blittable types 
26650
26651         * class.c (mono_array_class_get): do not set blittable attribute on arrays
26652         (mono_class_setup_mono_type): set blittable attribute for single
26653         and double.
26654
26655         * marshal.c (mono_string_utf8_to_builder): impl.
26656         (mono_string_builder_to_utf8): impl.
26657         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
26658
26659 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
26660
26661         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
26662         (mono_marshal_get_managed_wrapper): impl. byref types
26663
26664 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26665
26666         * icall.c:
26667         (search_method): don't display debug message. 
26668
26669 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
26670
26671         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
26672
26673 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
26674
26675         * appdomain.c: set the missing filename when throwing exception.
26676
26677 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
26678
26679         * metadata.c (mono_type_size): code cleanup
26680         (mono_type_stack_size): removed some test code
26681
26682 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
26683
26684         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
26685         mono_get_exception_file_not_found now.
26686
26687         * exception.c (mono_exception_from_name_two_strings): New version
26688         that will call a constructor with two string arguments. 
26689         (mono_get_exception_file_not_found): New helper routine, used to
26690         report file-not-found errors.
26691
26692 2002-07-20  Dick Porter  <dick@ximian.com>
26693
26694         * process.h:
26695         * process.c: Pass file handles to CreateProcess
26696         
26697         * icall.c:
26698         * file-io.h:
26699         * file-io.c: Implemented CreatePipe
26700
26701 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
26702
26703         * metadata.c (mono_get_param_info): set alignment for value types
26704
26705 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26706
26707         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
26708         Constify mono_domain_assembly_open().
26709         * loader.c: handle null namespace in icalls.
26710
26711 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
26712
26713         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
26714         (emit_str_to_ptr_conv): marshal object as structs
26715
26716         * metadata.c (mono_type_to_unmanaged): marshal object as structs
26717
26718         * marshal.c (mono_marshal_get_runtime_invoke): support value types
26719
26720 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
26721
26722         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
26723         (mono_marshal_get_native_wrapper): we an now return value types
26724
26725 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26726
26727         * verify.c: more checks implemented.
26728
26729 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
26730
26731         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
26732         (fix bug #27695)
26733         (mono_marshal_get_native_wrapper): allow byref arguments
26734         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
26735         impl. PtrToStringXXX methods
26736         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
26737         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
26738         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
26739         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
26740         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
26741
26742 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26743
26744         * reflection.c: fix buglet in parsing an assembly name.
26745
26746 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
26747
26748         * marshal.c (emit_ptr_to_str_conv): first impl.
26749
26750 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26751
26752         * object.c, class.h: cache the vtable in the class as suggested by
26753         vargaz@freemail.hu (Zoltan Varga).
26754
26755 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26756
26757         * class.h, loader.c: added mono_field_from_token().
26758         * verify.c: first cut of type checking code.
26759
26760 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
26761
26762         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
26763
26764 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
26765
26766         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
26767         (fix bug #27782)
26768         (mono_marshal_get_remoting_invoke): impl.
26769         (mono_delegate_begin_invoke): impl.
26770         (mono_mb_emit_save_args): impl.
26771         (mono_delegate_end_invoke): impl.
26772         (mono_marshal_get_delegate_begin_invoke):
26773         (mono_marshal_get_delegate_end_invoke):
26774         (mono_marshal_get_delegate_invoke): generate a special name for
26775         those methods (including the signature) and associate them whith
26776         the delegate class. 
26777
26778 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
26779
26780         * reflection.[ch]: 
26781         (mono_reflection_type_from_name): now it has a MonoImage parameter
26782         which is used as the default image to search the type in. If the image
26783         is NULL or getting the type from it fails, it defaults to corlib.
26784
26785         * icall.c: changed 1 call to mono_reflection_type_from_name to match
26786         new parameter.
26787
26788 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26789
26790         * reflection.c: update the parameter table index.
26791
26792 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26793
26794         * domain.c: don't include the mark byte in the string hash.
26795
26796 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26797
26798         * icall.cs: icall for Type.GetTypeCode ().
26799         * verify: a couple of fixes and disabled local initialization checks.
26800
26801 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
26802
26803         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
26804
26805         * debug-helpers.c (mono_method_full_name): print the type of the
26806         runtime wrapper
26807
26808         * metadata.c (mono_signature_hash): a hash function for signatures
26809         (mono_signature_hash): better hash algorithm
26810
26811         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
26812
26813         * debug-helpers.c (mono_method_full_name): this can now generate
26814         method names with signatures
26815
26816         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
26817         method dont have this pointers.
26818
26819 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26820
26821         * reflection.c: fixup typebuilder tokens.
26822         * image.c: fix buglet.
26823         * marshal.h: remove whitespace.
26824         * metadata.h, metadata.c: reinstate code that was removed.
26825         * verify.c: handle catch directives and fix another couple of bugs.
26826
26827 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
26828
26829         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
26830         (mono_marshal_get_native_wrapper): make it comp. with the old code
26831         (mono_marshal_get_native_wrapper): support boolean
26832         (mono_marshal_get_managed_wrapper): support more types
26833
26834 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
26835
26836         * class.c (class_compute_field_layout): compute class->blittable attribute.
26837
26838 2002-07-09  Dick Porter  <dick@ximian.com>
26839
26840         * threads.c: Make the thread cleaning up cope with threads that
26841         call ExitThread()
26842
26843 2002-07-08  Radek Doulik  <rodo@ximian.com>
26844
26845         * reflection.c (method_encode_code): use non-translated values to
26846         compute finally_start, this fixes exception handling on ppc, yay!
26847
26848         * decimal.h (struct signscale): fix endianess
26849
26850 2002-07-07  Radek Doulik  <rodo@ximian.com>
26851
26852         * reflection.c: swap box_val and not val
26853
26854 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26855
26856         * reflection.c, reflection.h: handle full assembly info in type name.
26857         Handle Type arguments when loading custom attributes.
26858         * icall.c: updated to use new mono_reflection_type_from_name () method.
26859
26860 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26861
26862         * loader.c:
26863         (method_from_memberref): also print assembly name when method not found.
26864
26865 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26866
26867         * icall.c:
26868         (ves_icall_TypeGetProperties): fixed bug #27473. 
26869
26870 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26871
26872         * reflection.c: display image name and token when cannot find the
26873         .ctor for an attribute.
26874
26875 2002-07-05  Martin Baulig  <martin@gnome.org>
26876
26877         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26878
26879 2002-07-04  Dick Porter  <dick@ximian.com>
26880
26881         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
26882         compile on mingw.  This will cause mingw builds to not wait for
26883         subthreads to terminate after the main thread does.  I've lodged a
26884         bug with the mingw developers for them to wrap OpenThread().
26885
26886 2002-07-03  Dick Porter  <dick@ximian.com>
26887
26888         * threads.c: Store thread IDs instead of handles, because
26889         GetCurrentThread() returns a pseudohandle and therefore stores
26890         useless values.  mono_thread_cleanup() continues checking the
26891         array of threads until it is empty, to cope with subthreads
26892         spawning new threads after the main thread has finished.
26893
26894         * profiler.h:
26895         * profiler.c:
26896         * profiler-private.h: Pass the thread ID to thread profiler
26897         functions, instead of a handle
26898
26899 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26900
26901         * verify.c: fixes to make it more usable.
26902         * pedump.c: added --verify code to verify IL code in an assembly.
26903
26904 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26905
26906         * reflection.c: turn errors into warnings to allow compiling corlib.
26907
26908 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
26909
26910         * reflection.c: add special cases to compile corlib.
26911
26912 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26913
26914         * reflection.c: handle properties with only a set method.
26915
26916 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26917
26918         * opcodes.h: add enum with opcodes in opval order.
26919
26920 2002-07-01  Dick Porter  <dick@ximian.com>
26921         
26922         * object.h:
26923         * object.c (mono_runtime_run_main): Removed unneeded argument
26924
26925 2002-06-28  Martin Baulig  <martin@gnome.org>
26926
26927         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26928
26929 2002-06-27  Dick Porter  <dick@ximian.com>
26930
26931         * threads.c: Store the handle in both the parent thread and in the
26932         subthread, to minimise the time between starting a new thread and
26933         storing its ID.
26934
26935 2002-06-26  Dick Porter  <dick@ximian.com>
26936
26937         * appdomain.c (mono_runtime_cleanup): Close the socket library
26938         after all the threads have finished, not before
26939
26940 2002-06-26  Martin Baulig  <martin@gnome.org>
26941
26942         * debug-symfile.c (mono_debug_find_source_location): Added
26943         `guint32 *line_number' argument.  If it's not NULL, store the line number
26944         there and return the file name without the line number.
26945
26946 2002-06-25  Dick Porter  <dick@ximian.com>
26947
26948         * icall.c:
26949         * process.h:
26950         * process.c: Process forking and other support functions
26951
26952 2002-06-25  Dick Porter  <dick@ximian.com>
26953
26954         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
26955         things dont happen when the image is closed.
26956         (mono_image_lookup_resource): Walk the resource section looking
26957         for a particular entry
26958
26959         * cil-coff.h: PE resource section decoding
26960
26961 2002-06-25  Dick Porter  <dick@ximian.com>
26962         
26963         * assembly.h:
26964         * assembly.c: 
26965         (mono_assembly_foreach): Accessor functions to walk the list of
26966         loaded assemblies
26967         (mono_assembly_set_main):
26968         (mono_assembly_get_main): Process methods need to know which
26969         assembly is the "main" one
26970
26971         * object.c (mono_runtime_run_main): Record the main assembly
26972
26973         * debug-helpers.c: Fix typo
26974
26975 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
26976
26977         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
26978         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
26979
26980 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26981
26982         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
26983
26984 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
26985
26986         * image.c (do_mono_image_open): Initialize reference count,
26987         otherwise we leak the MonoImage.
26988
26989 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26990
26991         * reflection.c: small tweak to handle self-hosting.
26992
26993 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26994
26995         * reflection.c: fix type name parse code.
26996
26997 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26998
26999         * reflection.c: break out of the loop.
27000         * image.c: special case corlib.
27001
27002 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27003
27004         * reflection.c: add all the custom attrs at the end to ensure the
27005         ctors have been properly initialized when the attributes are defined
27006         in the current assembly.
27007
27008 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
27009
27010         * reflection.c: handle correctly multiple-nested types.
27011
27012 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
27013
27014         * row-indexes.h: fix typos.
27015         * reflection.c: adjust for typos and fix method_def_or_ref
27016         encoding in MethodImpl table.
27017
27018 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27019
27020         * reflection.c: fix entry point patching (thanks Serge!).
27021
27022 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
27023
27024         * verify.c: add check for System.Exception
27025
27026 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
27027
27028         * image.c, class.c: minifix for code just c&p'ed.
27029         * reflection.c: warning fix.
27030         * object.h, loader.h, domain.c: load also StringBuilder.
27031
27032 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
27033
27034         * marshal.h, marshal.c: some support code to handle complex marshaling.
27035
27036 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27037
27038         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
27039         Better signatures with vtable error dump.
27040
27041 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
27042
27043         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
27044
27045 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
27046
27047         * icall.c (ves_icall_Type_GetField): impl.
27048
27049 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27050
27051         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
27052         to retrieve a marshal description blob for a field or param.
27053
27054 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
27055
27056         * reflection.h, reflection.c: change order of nested type emission
27057         to avoid table corruption. The NestedTypes table is sorted.
27058         * icall.c: change order of GetConstructor results to workaround mcs bug.
27059
27060 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27061
27062         * reflection.h, reflection.c: handle field and param marshal
27063         information.
27064
27065 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
27066
27067         * icall.c, marshal.c marshal.h: more Marshal class implementation.
27068
27069 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
27070
27071         * reflection.c: fix call convention.
27072
27073 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
27074
27075         * reflection.h, reflection.c: mono_image_get_memberref_token()
27076         takes a type instead of a class, now. Added
27077         mono_image_get_array_token() to create tokens for the special
27078         multi-dim array methods.
27079
27080 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
27081
27082         * assembly.c: handle modules (no assembly table). Split
27083         loading references in its own function.
27084         * class.c: handle moduleref resolution scope.
27085         * image.c, image.h: cache module name in image.
27086
27087 2002-06-07  Martin Baulig  <martin@gnome.org>
27088
27089         * reflection.c (mono_image_get_type_info): Only add a class layout entry
27090         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
27091
27092 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
27093
27094         * icall.c: more signature fixes that used uint instead of int.
27095
27096 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27097
27098         * reflection.c: fixed signature of field refs.
27099
27100 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27101
27102         * class.c, reflection.c: handle typerefs of nested types
27103         (both on read and when writing files).
27104
27105 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
27106
27107         * icall.c: fix method signatures that tried to workaround the previous
27108         typo, d'oh!
27109
27110 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
27111
27112         * debug-helpers.c: fix typo.
27113
27114 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
27115
27116         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
27117         rewrote the PE/COFF writing code (our programs are understood by the
27118         ms runtime, now).
27119
27120 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
27121
27122         * gc.c, gc.h, icall.c: weakreference support.
27123
27124 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
27125
27126         * Makefile.am, mono-config.c: use $(sysconfdir).
27127
27128 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27129
27130         * icall.c: changed default precision of Double.ToString() to 15.
27131         Fixed memory leak. Unified with Single.ToString.
27132
27133 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
27134
27135         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
27136
27137 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
27138
27139         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
27140         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
27141         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
27142         and myself.
27143
27144 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27145
27146         * debug-symfile.c, sysmath.c: yet more compilation fixes.
27147
27148 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27149
27150         * reflection.c, socket-io.c: more compilation fixes.
27151
27152 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27153
27154         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
27155         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
27156         unicode.c: warning and compiler compatibility fixes.
27157
27158 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27159
27160         * class.h, metadata.c: fixed warnings/compilation errors.
27161
27162 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
27163
27164         * Makefile.am, mono-config.c, mono-config.h: configuration file
27165         support routines.
27166         * loader.c, loader.h: make Dll mapping configurable at runtime in the
27167         config file. Export methods to insert and lookup mappings.
27168
27169 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
27170
27171         * reflection.c: handle types and boxed objects in custom attr
27172         constructors.
27173
27174 2002-05-30  Martin Baulig  <martin@gnome.org>
27175
27176         * debug-symfile.c
27177         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
27178
27179 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
27180
27181         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
27182         to lookup the implmap row for a P/Invoke method.
27183         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
27184         P/Invoke method from the runtime on an as needed basis.
27185
27186 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
27187
27188         * metadata.c (mono_metadata_parse_signature): impl.
27189
27190 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27191
27192         * class.c: handle .pack directive.
27193
27194 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
27195
27196         * object.c: initialize static fields with RVA data.
27197
27198 2002-05-25  Martin Baulig  <martin@gnome.org>
27199
27200         * debug-symfile.c
27201         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
27202
27203 2002-05-24  Martin Baulig  <martin@gnome.org>
27204
27205         * debug-symfile.c
27206         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
27207         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
27208         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
27209
27210 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27211
27212         * object.c: special case string ctros in invoke.
27213         * gc.c: silly whitespace changes.
27214
27215 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
27216
27217         * threadpool.[ch]: impl. a threadpool that can
27218         be used by mint and mono.
27219
27220 2002-05-22  Martin Baulig  <martin@gnome.org>
27221
27222         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
27223         The first argument is now a `MonoReflectionModuleBuilder *', the return
27224         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
27225         `methods' field to get the method builder.  The `token' argument is the
27226         unfixed token.
27227
27228         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
27229         invalid characters instead of g_assert_not_reached()ing.  This seems
27230         to be the behaviour of mscorlib.
27231
27232 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
27233
27234         * object.c (mono_runtime_invoke_array): applied patch from Rachel
27235         Hestilow to fix bug #25104
27236
27237 2002-05-21  Martin Baulig  <martin@gnome.org>
27238
27239         * debug-symfile.c (mono_debug_find_source_location): New function.
27240         Looks up an IL offset in the line number table and returns the source
27241         location as a string.
27242
27243 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27244
27245         * icall.c:
27246         (mono_double_ToStringImpl): changed %f by %g until we have something
27247         better.
27248
27249 2002-05-21  Nick Drochak  <ndrochak@gol.com>
27250
27251         * icall.c : Use different name for Math.Pow's icall.  Needed to check
27252         parameters first in C#.
27253
27254 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27255
27256         * icall.c, reflection.h: added icall to get info about an event.
27257
27258 2002-05-20  Radek Doulik  <rodo@ximian.com>
27259
27260         * object.c (mono_value_box): don't use memcpy for boxing on BIG
27261         endian
27262         (mono_value_box): don't use memcpy for small sizes on
27263         architectures with unaligned access
27264
27265 2002-05-20  Martin Baulig  <martin@gnome.org>
27266
27267         * reflection.c (mono_reflection_setup_internal_class): Don't crash
27268         if `tb->parent == NULL'.
27269         (mono_reflection_create_internal_class): New function.  This is
27270         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
27271         for enum types.
27272
27273         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
27274         New interncall.
27275
27276 2002-05-19  Martin Baulig  <martin@gnome.org>
27277
27278         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
27279         argument to get the length, don't default to the array length.
27280
27281 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
27282
27283         * assembly.c (mono_assembly_setrootdir): New function used to
27284         override the MONO_ASSEMBLIES directory.
27285
27286 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27287
27288         * icall.c: ValueType_GetHashCode() initialize local var.
27289
27290 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27291
27292         * reflection.c: sort custom attributes table.
27293
27294 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27295
27296         * reflection.c: support named args in custom attributes (write support).
27297
27298 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
27299
27300         * reflection.c: fix finally position calculation.
27301
27302 2002-05-15  Radek Doulik  <rodo@ximian.com>
27303
27304         * reflection.c: fixed endianess at many places
27305
27306         * icall.c (ves_icall_InitializeArray): comment out debug msg
27307
27308 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
27309
27310         * object.c (mono_unhandled_exception): new function to handle
27311         unhandled exceptions.
27312         (mono_unhandled_exception): call the UnhandledException event.
27313         (mono_runtime_delegate_invoke): impl.
27314
27315 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
27316
27317         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
27318         returns the RVA, not the direct pointer to the data. Handle the case
27319         when the class size is fixed.
27320
27321 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
27322
27323         * reflection.c: fix some endianess issues.
27324
27325 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
27326
27327         * object.c (mono_runtime_invoke): is now able to catch exceptions.
27328
27329         * threads.c (mono_thread_init): added a callback which is invoked
27330         at thread start.
27331
27332 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
27333         
27334         * icall.c: make GetHashCode return non-negative values.
27335
27336 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
27337
27338         * object.c, icall.c, gc.c: revert to address-based hashcode.
27339
27340 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
27341
27342         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
27343
27344 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27345
27346         * icall.c, class.c: special case <Module>.
27347
27348 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
27349
27350         * icall.c: fix bug in GetNow().
27351
27352 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
27353
27354         * object.c (mono_runtime_class_init): make sure that we call all
27355         static class constructors.
27356
27357 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
27358
27359         * reflection.c: sort methodsemantics table.
27360
27361 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
27362
27363         * reflection.h, reflection.c: honour init locals setting.
27364
27365 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
27366
27367         * icall.c: copied Double ToStringImpl for Single ToStringImpl
27368
27369 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
27370
27371         * reflection.c: support ContructorBuilders in attribute blob creation.
27372
27373 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27374
27375         * reflection.c: some changes to build a binary that can be run
27376         directly in windows.
27377
27378 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
27379
27380         * loader.c: print a big message when an icall can't be found.
27381
27382 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27383
27384         * string-icalls.c: fix bug 24248.
27385
27386 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
27387
27388         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
27389         icall.c, reflection.h: separate assembly loading by pathname and by
27390         assembly name. Use the MONO_PATH env var to search for assemblies.
27391
27392 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
27393
27394         * assembly.c, image.h: add some support for assemblies
27395         with multiple modules.
27396         * class.c, class.h: export mono_class_from_typeref().
27397         * loader.c: remove duplicated code and use mono_class_from_typeref(),
27398         instead.
27399
27400 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
27401
27402         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
27403         documentation says (the ECMA one is correct).
27404
27405 2002-05-02  Dick Porter  <dick@ximian.com>
27406
27407         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
27408         Don't name the synchronisation mutex.
27409
27410 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
27411
27412         * rand.c
27413         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
27414         Make the prototypes match.
27415         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
27416         Same.
27417
27418         * icall.c
27419         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
27420         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
27421         all systems have tm.tm_zone, so use strftime() with %Z to print
27422         the timezone abreviation into a temp string.
27423
27424         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
27425         rather than mono_array_addr() on a MonoString on Big Endian
27426         machines.
27427
27428 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
27429
27430         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
27431         fix bug 24041
27432
27433 2002-04-30  Dick Porter  <dick@ximian.com>
27434
27435         * socket-io.c: Cope with SOCKET being an integer rather than a
27436         pointer now.
27437
27438         * threads.c: Added Thread_free_internal, to deal with thread
27439         handle cleanup.  Moved calls to handle_store() and handle_remove()
27440         to start_wrapper(), so each can only be called once.  Allocate
27441         synchronisation blocks with GC_malloc(), and use GC finalisation
27442         to close the handles.
27443
27444         * icall.c: added System.Threading.Thread::Thread_free_internal
27445
27446 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27447
27448         * icall.c: support Environment.Exit, CommandLineArgs().
27449
27450 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
27451
27452         * object.c, object.h: added mono_runtime_run_main () and
27453         mono_runtime_get_main_args () for use in System.Environment.
27454
27455 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
27456
27457         * gc.c: fix thinko, enable actual finalization since the jit is now
27458         fixed.
27459
27460 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27461
27462         * gc.c, object.c: take into account that an object may be offset wrt the address
27463         returned by GC_malloc().
27464
27465 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
27466
27467         * image.c: handle files without entries in the assembly table (modules).
27468
27469 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
27470
27471         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
27472         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
27473         allowed to be null when it's System.Object class setup.
27474
27475 2002-04-27  Martin Baulig  <martin@gnome.org>
27476
27477         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
27478         if `tb->parent == NULL' rather than crashing.
27479
27480 2002-04-28  Nick Drochak  <ndrochak@gol.com>
27481
27482         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
27483         calling acos() where asin() should have been called.
27484
27485 2002-04-26  Martin Baulig  <martin@gnome.org>
27486
27487         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
27488         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
27489         there's a subdirectory called `System', but we don't want to read that
27490         subdirectory as an assembly.
27491
27492 2002-04-25  Martin Baulig  <martin@gnome.org>
27493
27494         * debug-symfile.c: Reflect latest MonoString changes.
27495
27496 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27497
27498         * rand.c, rand.h: instance method icalls need to have an explicit
27499         this pointer as first argument in the C implementation.
27500
27501 2002-04-25  Nick Drochak <ndrochak@gol.com>
27502
27503         * icall.c: Fix typo in map for GetNonZeroBytes
27504
27505 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27506
27507         * string-icalls.c : String does now passes unit tests without any 
27508         errors, the following changes has been made:
27509         
27510         Implemented replace methods.
27511         Renaming of methods to (try) follow the standard.
27512         Fixed compare ordinal
27513         Made all memory allocated directly to function instead of via icall function.
27514         Small performance fix in is_in_array function
27515                         
27516  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
27517
27518         c (mono_string_Internal_ctor_charp_int_int):
27519         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
27520         sindex < 0, throw ArgumentOutOfRangeException instead of
27521         ArgumentNullException.
27522
27523         Added new check for length == 0, however
27524         I need to make it return String.Empty from the C code.
27525         
27526         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
27527         that calculate the length for us here.
27528         
27529         (mono_string_Internal_ctor_sbytep_int_int): Replaced
27530         mono_string_new_utf16 with mono_string_new, since value is utf8.
27531
27532 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27533
27534         * object.c: register the object for finalization if needed.
27535         Allocate one more char in the string for the terminating 0 char.
27536
27537 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27538
27539         * class.c, class.h, image.c: check if a type implemenst a destructor.
27540         Use the proper key for array class lookups.
27541         * icall.c: register the icalls in the System.GC class.
27542         * gc.c, gc.h: GC-related functions and icalls.
27543
27544 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27545
27546         * icall.c:
27547         * socket-io.c:
27548         * unicode.c: free some strings gotten from mono_string_to_utf8 and
27549         changed a couple of free () by g_free ().
27550
27551         * decimal.c: one-liner in the comments for decimal2string ().
27552
27553 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27554
27555         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
27556
27557 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27558
27559         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
27560         * object.c (mono_runtime_invoke_array) : handle null in params
27561
27562 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27563
27564         * string-icalls.c: fixed bug in split (one off bug)
27565
27566 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27567
27568         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
27569         * icalls.c: added String::Equals as internal method
27570
27571 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27572
27573         * threads.c: fixed bug in the double interlocked functions
27574
27575 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
27576
27577         * threads.c: implemented all of the new interlocked icalls.
27578         * string-icalls.c: fix a bug in insert.
27579         * icalls.c: added the icalls for interlocked, removed old string functions.
27580         
27581 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27582
27583         * loader.c: fix off-by-one error when reading argument names.
27584
27585 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27586
27587         * profiler.c: win32 counter implementation (untested).
27588         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
27589         (the latter needs testing and more complete impl. from win32 folks).
27590
27591 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
27592
27593         * object.c: mono_array_new_full workaround mono_array_class_get
27594         problem.
27595
27596 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27597
27598         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
27599         * object.h (mono_string_chars): Changed casting type.
27600
27601 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27602
27603         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
27604                            method signatures to use gunichar2 instead of gint16.
27605
27606 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
27607
27608         * object.h, object.c: domain-specific versions of mono_object_new and
27609         mono_array_new.
27610
27611 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
27612
27613         * object.c: changed String layout
27614
27615         * string-icalls.c (mono_string_Internal_ctor_chara): added
27616         internal string constructors.
27617
27618 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
27619
27620         * threads.c: pass 'this' to the thread start routine.
27621
27622 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27623
27624         * string-icalls.c: fix IndexOf and LastIndexOf. Now
27625         InternalCompareStr don't call twice mono_string_cmp_char for the last
27626         character. Improved performance in mono_string_cmp_char.
27627
27628 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
27629
27630         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
27631         code into its own library: libmonoruntime.
27632
27633 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
27634
27635         * object.h, object.c: changed array format so that szarrays do not
27636         require a bounds structure.
27637         * icall.c, appdomain.c: support for new szarray format.
27638
27639 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
27640
27641         * metadata.c: compare also the retuns type when comparing signatures:
27642         we didn't do this as an optimization since really overloaded methods
27643         must differ also in the arguments, but this doesn't work with
27644         low-level IL code (or when using explicit conversion operators: see
27645         bug#23498 for an example).
27646
27647 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
27648
27649         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
27650
27651 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
27652
27653         * icall.c: make MonoType::GetElementType its own icall.
27654
27655 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27656
27657         * icall.c: remove MonoMethod_get_Name().
27658         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
27659         object.
27660
27661 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27662
27663         * string-icalls.c: optimized a few methods.
27664
27665 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27666
27667         * icall.c: added all new string internal calls
27668         * string-icalls.c: added, new string internal call implementation.
27669         * object.c: added mono_string_new_size for allocating a string a size
27670
27671 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
27672
27673         * object.c (mono_object_isinst): use the same code as in the
27674         optimized x86 version.
27675
27676 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27677
27678         * profiler.c: TSC-based timer code (faster and more accurate).
27679         Not hooked up in configure, yet (set USE_X86TSC to 1).
27680
27681 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
27682
27683         * profiler.c, profiler.h: track time spent compiling methods.
27684         * threads.c: track thread creation/destruction.
27685
27686 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
27687
27688         * profiler.c, profiler.h, profiler-private.h: profiling interface
27689         and sample implementation. Moved here so that it can be used also by
27690         the jit.
27691
27692 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
27693
27694         * reflection.c, reflection.h: keep types and other handles separate in
27695         the hash tables for referred tokens. Add guid for modules.
27696
27697 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
27698
27699         * assembly.c: fix bugs found with valgrind.
27700         * metadata.h, metadata.c: added mono_metadata_guid_heap().
27701
27702 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
27703
27704         * threads: added icall support for getting current domain for
27705                    the thread.
27706  
27707 2002-04-13  Martin Baulig  <martin@gnome.org>
27708
27709         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
27710         (MonoDebugVarInfo): Added `index' field for register based addresses.
27711         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
27712         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
27713         `MonoDebugVarInfo *params' and `guint32 this_offset' with
27714         `MonoDebugVarInfo *this_var'.
27715
27716         * debug-symfile.c (relocate_variable): New static function to write
27717         a location description for a local variable or method parameter.
27718
27719 2002-04-12  Martin Baulig  <martin@gnome.org>
27720
27721         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
27722         stack offset and begin/end scope address of a local variable.
27723         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
27724         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
27725         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
27726
27727         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
27728         Added new relocation types for start/end scope of a local variable.
27729
27730 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27731
27732         * object.h: add mono_object_domain() macro.
27733         * reflection.c: handle typespecs.
27734         * icall.c: MonoMethod::get_Name() implementation.
27735
27736 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27737
27738         * icall.c: String::GetHashCode() icall implementation.
27739
27740 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27741
27742         * icall.c: String::IndexOfAny icall.
27743         * object.c, object.h: make array->max_length more useful.
27744         Intrduced mono_object_class() and mono_string_length() macros.
27745
27746 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27747
27748         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
27749         instead of g_unichar_isdigit.
27750
27751 2002-04-11  Nick Drochak  <ndrochak@gol.com>
27752
27753         * icall.c: Implement a simple Double.ToString().
27754
27755 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27756
27757         * appdomain.h: only io-layer.h is supposed to be included.
27758         * icall.c: explicitly import environ. Fix warning.
27759
27760 2002-04-10  Nick Drochak  <ndrochak@gol.com>
27761
27762         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
27763                 return true even if it's not Daylight Savings time.
27764                 Only return false for the case where the function isn't
27765                 implemented for a plaform (read Windows).
27766
27767 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27768
27769         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
27770         data with a mutex.
27771
27772 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
27773
27774         * mempool.c (mono_mempool_alloc): only use g_malloc when
27775         absolutely necessary.
27776
27777 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
27778
27779         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
27780
27781         * class.c (mono_class_vtable): use domain mempool to allocate vtable
27782         (mono_class_proxy_vtable): use domain mempool
27783
27784 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
27785
27786         * appdomain.h, appdomain.c: split initialization that requires the
27787         execution engine support into mono_runtime_init().
27788
27789 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
27790
27791         * class.c (mono_class_init): don't include vtable inside MonoClass
27792         to save some memory, gather some statistics.
27793         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
27794
27795 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27796
27797         * icall.c: internalcall implementation for ValueType.Equals().
27798
27799 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
27800
27801         * object.c (mono_message_init): moved 
27802         (mono_runtime_exec_main): new arch. independent impl.
27803         (mono_runtime_invoke_array): new method - like
27804         mono_runtime_invoke, but you can pass an array of objects.
27805         (mono_remoting_invoke): new arch. independent impl.
27806         (mono_message_invoke): new arch. independent impl.
27807         (mono_runtime_class_init): new arch. independent impl.
27808         (mono_runtime_object_init): new arch. independent impl.
27809
27810 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27811
27812         * metadata.c, object.c, reflection.c: documented the exported
27813         functions.
27814
27815 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
27816
27817         * icall.c: simpler code to pass the assembly builder data to corlib.
27818         Implement GetNestedTypes() internalcall.
27819
27820 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27821
27822         * class.c: warn if a type can't be loaded.
27823
27824 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
27825
27826         * image.h: typedef MonoImageOpenStatus
27827         * types.h: removed unused file
27828         
27829 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
27830
27831         * icall.c: Enum_ToObject accepts enum value arguments.
27832
27833 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27834
27835         * class.c: move initialization of properties, events and nested
27836         classes, so that they happen for interfaces, too.
27837
27838 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27839
27840         * icall.c: cleanup some ugly casts in Array_SetValue*.
27841
27842 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27843
27844         * icall.c: the values array fro enums is of the correct type, now.
27845         Implement (correctly) getFullName instead of assQualifiedName for
27846         MonoType.
27847         * reflection.h, reflection.c: added mono_type_get_name ().
27848
27849 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27850
27851         * assembly.c, image.h: for each MonoImage, record from wich assembly
27852         it was loaded.
27853         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
27854         Make Type.Assembly work.
27855
27856 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
27857
27858         * debug-symfile.h: use char* instead of gpointer to avoid
27859         unnecessary casts.
27860
27861         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
27862
27863         * icall.c (ves_icall_InternalExecute): impl. FielSetter
27864         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
27865
27866 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
27867
27868         * icall.c (mono_message_init): impl. (code cleanup)
27869         (ves_icall_InternalExecute): impl. FieldGetter
27870
27871         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
27872         defined we call all (non-static)methods through the vtable. 
27873
27874 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
27875
27876         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
27877         finalizer even though the memory is still referenced (and the chunk of
27878         memory is not freed).
27879
27880 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27881
27882         * assembly.c: fix brokeness.
27883
27884 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
27885
27886         * class.c: kill some warnings. Check explicit interface method
27887         implementation also without considering the namespace.
27888         Load also literal strings in static class data.
27889
27890 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
27891
27892         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
27893         (default_assembly_name_resolver): Make the resolver take the
27894         "base" directory where the assembly was originally defined, so we
27895         can load DLLs that are in the same directory as the assembly that
27896         is being referenced.
27897
27898 2002-03-28  Dick Porter  <dick@ximian.com>
27899
27900         * file-io.h: 
27901         * file-io.c:
27902         * socket-io.c: 
27903         * unicode.h: 
27904         * unicode.c: Warning cleanups
27905
27906 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
27907
27908         * object.h, reflection.h: use the correct type instead of MonoObject.
27909
27910 2002-03-28  Martin Baulig  <martin@gnome.org>
27911
27912         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
27913         (mono_debug_update_symbol_file): Initialize classes if necessary.
27914
27915 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27916
27917         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
27918         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
27919
27920 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
27921
27922         * assembly.h: fix function prototype.
27923         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
27924         * mono-endian.h: use const cast.
27925
27926 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27927
27928         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
27929
27930 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27931
27932         * loader.c: don't assert when a typeref can't be loaded, give
27933         a chance to the runtime to trow an exception instead.
27934         * loader.h: fix warning.
27935
27936 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27937
27938         * class.c (mono_class_proxy_vtable): added proxy support
27939
27940 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
27941
27942         * icall.c: removed last of PAL calls, added System.Environment
27943         * file-io.h, file-io.c: MonoIO implementation
27944         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
27945
27946 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27947
27948         * appdomain.c: do not use the byte marker in ldstr table lookup.
27949         * debug-helpers.c: allow two ':' to separate class and method name.
27950         * object.c: allocate arrays bounds with the GC, too.
27951         * verify: add a few more checks.
27952
27953 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
27954
27955         * reflection.c: output also literal strings. Allocate parameter data
27956         with GC_malloc() (thanks, Martin, for catching this!).
27957
27958 2002-03-26  Martin Baulig  <martin@gnome.org>
27959
27960         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
27961         include the `this' offset in the `param_offsets'.
27962
27963 2002-03-25  Martin Baulig  <martin@gnome.org>
27964
27965         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
27966         mono_debug_get_class() function to get the classes. Added new
27967         relocation types for arrays and strings.
27968         (mono_debug_get_class): New static function to search in all
27969         referenced assemblies for a metadata token.
27970
27971         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
27972
27973 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27974
27975         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
27976         hold gc-allocated objects. Make the string heap a stream like the
27977         others. Removed duplicated code when writing stream info.
27978         Added asserts to catch possible buffer overflows. Set the sorted map
27979         for tables that need sorting. Added some documentation.
27980
27981 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
27982
27983         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
27984         for interned strings and vtables.
27985
27986 2002-03-24  Martin Baulig  <martin@gnome.org>
27987
27988         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
27989         it in the array since it was created with g_slist_prepend().
27990
27991 2002-03-24  Martin Baulig  <martin@gnome.org>
27992
27993         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
27994         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
27995         (mono_debug_method_from_token): Renamed to
27996         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
27997         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
27998
27999         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
28000         relocation types.
28001
28002         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
28003
28004 2002-03-24  Martin Baulig  <martin@gnome.org>
28005
28006         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
28007         (mono_debug_method_from_token): New func.
28008
28009         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
28010         New interncall, calls mono_debug_local_type_from_signature().
28011         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
28012         calls mono_debug_method_from_token().
28013
28014 2002-03-23  Martin Baulig  <martin@gnome.org>
28015
28016         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
28017         specifies the number of bytes to be converted, not the array size.
28018         Return the number of chars, not the number of bytes.
28019         (ves_icall_iconv_get_chars): The `byteCount' argument
28020         specifies the number of bytes to be converted, not the array size.
28021
28022 2002-03-23  Martin Baulig  <martin@gnome.org>
28023
28024         * reflection.h (MonoReflectionSigHelper): New type.
28025
28026         * reflection.c (mono_reflection_sighelper_get_signature_local),
28027         (mono_reflection_sighelper_get_signature_local): New functions.
28028
28029         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
28030         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
28031         interncalls.
28032
28033 2002-03-23  Martin Baulig  <martin@gnome.org>
28034
28035         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
28036         is_writeable is set.
28037         (mono_raw_buffer_update): New function to write the modified map
28038         back to disk.
28039
28040         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
28041
28042         * debug-symfile.c (mono_debug_update_symbol_file): Call
28043         mono_raw_buffer_update() when done writing.
28044
28045 2002-03-23  Martin Baulig  <martin@gnome.org>
28046
28047         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
28048
28049         * debug-symfile.c: Added support for arguments and local variables.
28050
28051 2002-03-23  Dick Porter  <dick@ximian.com>
28052
28053         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
28054         protected by ifdefs, hence breaking the w32 build.
28055
28056 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28057
28058         * object.c: implement is_interned() the right way.
28059
28060 2002-03-21  Martin Baulig  <martin@gnome.org>
28061
28062         * debug-symfile.[ch]: New files to handle debugging information
28063         files. There's also support to dynamically update these symbol
28064         files to include machine dependent information.
28065
28066 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
28067
28068         * threads.c (mono_thread_create): new function to create thread
28069         from C
28070
28071 2002-03-20  Martin Baulig  <martin@gnome.org>
28072
28073         * icall.c (ves_icall_InternalInvoke): Create a new object if the
28074         method is a constructor.
28075         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
28076         points to ves_icall_InternalInvoke().
28077
28078 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
28079
28080         * file-io.c: Flush shouldn't throw exceptions.
28081
28082 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
28083
28084         * file-io.c: FileStream flush support; FileSetLength now
28085         restores file pointer.
28086
28087 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
28088
28089         * class.c: set image for pointer classes.
28090
28091 2002/03/19  Nick Drochak <ndrochak@gol.com>
28092
28093         * sysmath.c: Forgot one.
28094
28095 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
28096
28097         * sysmath.c: Avoid redefining existing names.
28098
28099 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
28100
28101         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
28102         handled by runtime as icall rather than dllimport from libm.so
28103         * file-io.c, file-io.h: fixed handle argument type.
28104
28105 2002-03-18  Dick Porter  <dick@ximian.com>
28106
28107         * reflection.c (mono_image_get_type_info): rename interface to
28108         iface, because of "#define interface struct" on windows.
28109
28110 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
28111
28112         * class.c, class.h: rename and export mono_ptr_class_get().
28113         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
28114         * reflection.c, reflection.h, icall.c: better/saner type name
28115         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
28116         method signatures.
28117
28118 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
28119
28120         * class.c (mono_class_init): removed hardcoded GHC_SLOT
28121
28122         * icall.c (ves_icall_InternalInvoke): impl.
28123
28124 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
28125
28126         * reflection.c: output the interface map table, too.
28127
28128 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
28129
28130         * class.c (class_compute_field_layout): separate computation of 
28131         static field layout
28132
28133 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
28134
28135         * icall.c: added System.Buffer support.
28136         * file-io.c: moved file icalls from PAL to FileStream.
28137
28138 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
28139
28140         * icall.c (ves_icall_System_Object_GetHashCode): impl.
28141
28142 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
28143
28144         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
28145
28146 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
28147
28148         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
28149
28150 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
28151
28152         * debug-helpers.{c,h}: moved here from monograph some useful functions
28153         to locate a method by name/signature in a class or image. Included
28154         also a small and flexible IL disassembler.
28155
28156 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
28157
28158         * reflection.c: fixup tokens in methods with small header size, too.
28159
28160 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
28161
28162         * object.c (mono_string_to_utf8): remove assert(!error), instead
28163         print a warning. 
28164
28165 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
28166
28167         * icall.c: update to the new mono_Array_class_get interface.
28168
28169 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
28170
28171         * appdomain.c, object.c: Boehm-GC enable.
28172         * icall.c: make get_data_chunk() support split data requests.
28173         Ensure a class is initialized in more cases. Return only the first
28174         property found in GetProperties() or the compiler gets confused. 
28175         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
28176         * reflection.h, reflection.c: add fixup mechanism for field and method
28177         tokens. Initialize assembly->typeref in a single place. Output
28178         properties after events. Support custom attributes for events, too.
28179         Typo fix for paramter custom attrs.
28180
28181 2002-03-07  Martin Baulig  <martin@gnome.org>
28182
28183         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
28184
28185 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
28186
28187         * class.c (mono_array_class_get): fix. for multi. dim. arrays
28188
28189 2002-03-06  Martin Baulig  <martin@gnome.org>
28190
28191         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
28192         non-zero lower bounds. See testcases #F10-#F13.
28193
28194 2002-03-05  Martin Baulig  <martin@gnome.org>
28195
28196         * exception.c (mono_get_exception_argument_out_of_range): New exception.
28197
28198         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
28199         ves_icall_System_Array_GetValue(), only calculate the absolute array position
28200         here.
28201         (ves_icall_System_Array_SetValue): Likewise.
28202         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
28203         as argument and does the actual work. This function is used when copying a
28204         multi-dimensional array.
28205         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
28206         now do all the widening conversions of value types.
28207         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
28208
28209 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28210
28211         * class.c: remove some magic numbers and use the smbolic names,
28212         instead. Added init_events() to load event info at class init time.
28213         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
28214         and mono_metadata_methods_from_event().
28215         * reflection.h, reflection.c: added support for writing out the evnets
28216         related information.
28217
28218 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
28219
28220         * reflection.h, icall.c: use a different method (GetInterfaces)
28221         to gather interface info and add isbyref, isprimitive and
28222         ispointer to the ves_icall_get_type_info() return value.
28223
28224 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
28225
28226         * class.h: stared adding support for events.
28227         * icall.c: split find_members implementation. Added debug icall to get
28228         the address of an object.
28229         * reflection.c: handle TypeBuilders in mono_type_get_object().
28230
28231 2002-03-01  Martin Baulig  <martin@gnome.org>
28232
28233         * icall.c (ves_icall_System_Array_GetLength): This must throw an
28234         ArgumentOutOfRangeException(), not an ArgumentException().
28235         (ves_icall_System_Array_GetLowerBound): Likewise.
28236         (ves_icall_System_Array_GetValue): Improved argument checking.
28237         (ves_icall_System_Array_SetValue): Improved argument checking.
28238
28239 2002-03-01  Martin Baulig  <martin@gnome.org>
28240
28241         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
28242         called with invalid arguments rather than just dying with g_assert().
28243         (ves_icall_System_Array_SetValue): Likewise.
28244         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
28245         raise a NotImplementedException instead.
28246         (ves_icall_System_Array_GetLength): Added argument checking.
28247         (ves_icall_System_Array_GetLowerBound): Added argument checking.
28248
28249 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
28250
28251         * object.h (mono_assert): new macros mono_assert and
28252         mono_assert_not_reached
28253
28254 2002-02-28  Martin Baulig  <martin@gnome.org>
28255
28256         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
28257         and "System::String::IsInterned" to "System::String::_IsInterned".
28258
28259 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
28260
28261         * icall.c: remove hacks for typebuilder. Added icall to create a
28262         modified type from a tybebuilder.
28263         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
28264         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
28265         to create a backing MonoClass for a TypeBuilder.
28266
28267 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28268
28269         * class.c, class.h: more refactoring of class init.
28270         Export mono_class_setup_mono_type() and mono_class_setup_parent().
28271
28272 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
28273
28274         * marshal.c, marshal.h: start of marshaling interface.
28275
28276 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
28277
28278         * icall.c: fix order in assembly qualified name icall.
28279
28280 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
28281
28282         * class.c: do not free str, since we store it in the hash table.
28283         * reflection.h: add label field to MonoILExceptionInfo.
28284         * reflection.c: handle references to more than one assembly. Handle
28285         case when there isn't a module created in the assembly.
28286
28287 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
28288
28289         * class.c: Fix typo. Start refactoring of class init code.
28290
28291 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
28292
28293         * appdomain.c: exit with 1 on error.
28294         * class.c: we already have the name in MonoClassField.
28295         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
28296         MonoStreamHeader instead of an offset of image->raw_metadata.
28297
28298 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
28299
28300         * appdomain.c (mono_init): Be even more descriptive about the error.
28301
28302 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
28303
28304         * appdomain.c: give the user an informative message when corlib can't
28305         be loaded.
28306
28307 2002-02-26  Martin Baulig  <martin@gnome.org>
28308
28309         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28310         New icall to get the time zone data.
28311
28312 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28313
28314         * reflection.c: set virtual and raw size of section correctly.
28315         * threads.c: transfer domain information to newly created threads.
28316
28317 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
28318
28319         * class.c: when instancing a class in a domain, load the default
28320         vaules for static fields from the constant table. Fix System.Enum to
28321         not be an enum.
28322         * icall.c: implement Object::GetType() internalcall. Implemented
28323         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
28324         Fixed checking of binding flags in find_members().
28325         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
28326         * reflection.c: handle enumerations when writing to the constant
28327         table. Use a different object cache for types.
28328
28329
28330 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
28331
28332         * object.c (mono_object_isinst): fix for arrays
28333
28334         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
28335
28336 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
28337
28338         * object.c: don't use mprotect ()  and fix intern pool hash table
28339         lookup for big endian systems.
28340
28341 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
28342
28343         * icall.c: change type_is_subtype_of () signature.
28344
28345 2002-02-21  Mark Crichton  <crichton@gimp.org>
28346
28347         * rand.c, rand.h: Added random number generator for
28348         System.Security.Cryptography classes.
28349
28350         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
28351
28352         * icall.c: Added System.Security.Cryptography calls.
28353
28354 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
28355
28356         * class.c, icall.c, metadata.c: better support for pointer types.
28357         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
28358         * reflection.c: Add support for getting custom attrs for properties
28359         and simplify some code.
28360
28361 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
28362
28363         * icall.c: change getToken () and add custom attribute GetBlob()helper
28364         method.
28365         * reflection.h: add custom attrs array to the reflection builder structures.
28366         * reflection.c: encode and emit custom attributes for all the relevant
28367         reflection objects. Cache fieldref and methodref tokens. Change
28368         mono_image_create_token() interface to take a MonoDynamicAssembly.
28369         More complete custom attributes decoder. Load custom attributes for
28370         Assembly, Field, Method and Constructor objects, too. Make the
28371         returned array an Attribute[] one, not object[]. Added
28372         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
28373         custom attribute constructor.
28374
28375 2002-02-20  Dick Porter  <dick@ximian.com>
28376
28377         * icall.c:
28378         * rawbuffer.c:
28379         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
28380         problem code out for now).
28381
28382 2002-02-19  Radek Doulik  <rodo@ximian.com>
28383
28384         * object.c (mono_ldstr): use hash table to avoid multiple swapping
28385
28386 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
28387
28388         * icall.c: register the GetCustomAttributes method.
28389         * object.c, object.h: add mono_string_new_len ().
28390         * reflection.h, reflection.c: added mono_runtime_invoke(),
28391         mono_install_runtime_invoke(). Added
28392         mono_reflection_get_custom_attrs () to load custom attributes and
28393         create the attribute objects.
28394
28395 2002-02-19  Dick Porter  <dick@ximian.com>
28396         * threads-dummy-types.c:
28397         * threads-dummy-types.h:
28398         * threads-dummy.c:
28399         * threads-dummy.h:
28400         * threads-pthread-types.c:
28401         * threads-pthread-types.h:
28402         * threads-pthread.c:
28403         * threads-pthread.h:  Deleted obsolete files
28404
28405 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
28406
28407         * class.c (mono_class_vtable): runtime init the class when we
28408         allocate static class data.
28409
28410         * icall.c (ves_icall_System_Array_SetValue): check for null values.
28411
28412         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
28413         and String - but we will need generic marshalling support in the
28414         future. 
28415         (mono_init): set the domain name in a ms compatible way
28416
28417         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
28418         String[].
28419
28420 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
28421
28422         * object.c (mono_array_clone): use alloca() instead of g_malloc  
28423         for sizes
28424
28425         * appdomain.c (mono_domain_unload): impl.
28426
28427 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
28428
28429         * appdomain.c, object.c: fix intern pool implementation.
28430         * class.c: fix alignment code.
28431
28432 2002-02-16  Radek Doulik  <rodo@ximian.com>
28433
28434         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
28435         and s2 > s1, just copy lower bytes to be compatible with little
28436         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
28437         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
28438
28439         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
28440         force big_endian to be 1 for big endian machines 
28441         (ves_icall_iconv_new_decoder): ditto
28442
28443 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
28444
28445         * socket-io.c (convert_sockopt_level_and_name): If the system
28446         doesn't define SOL_IP or SOL_TCP, get them by hand using
28447         getprotobyname() and caching the values (because this could be a
28448         slow operation).
28449         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
28450         Use the appropriate struct when the system does support it. Ie,
28451         not all systems have struct ip_mreqn so use struct ip_mreq when
28452         appropriate.
28453
28454 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
28455
28456         * reflection.c: handle finally clauses.
28457
28458 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
28459
28460         * socket-io.c: use g_snprintf() instead of snprintf.
28461
28462 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
28463
28464         * reflection.c (mono_param_get_objects): Cast second argument to
28465         mono_method_get_param_names to a const char** to silence the
28466         compiler warning.
28467
28468         * appdomain.c (mono_domain_assembly_open): Put parens around the
28469         truth statement in the for-loop.
28470
28471         * unicode.c (iconv_convert): Got rid of a compiler warning about
28472         int i being unused when the system has a new iconv.
28473         (iconv_get_length): Same.
28474
28475         * image.c (load_class_names): Cast the second argument to
28476         g_hash_table_insert() to char* to hush compiler warnings about the
28477         arg being a const.
28478         (mono_image_open): Same here.
28479
28480         * socket-io.c: Don't conditionally include sys/filio.h or
28481         sys/sockio.h here anymore since we now get them from
28482         io-layer/io-layer.h
28483         (inet_pton): If the system doesn't support inet_aton, implement
28484         using inet_addr and also #define INADDR_NONE if it isn't defined
28485         by the system.
28486
28487 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
28488
28489         * metadata.c, metadata.h: added function to get packing and size info
28490         of a typedef.
28491         * reflection.h, reflection.c: handle field RVA data. Save info about
28492         the table layout if needed. Assign typedef indexes to all the types
28493         before dumping the info about them to avoid forward reference problems.
28494
28495 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
28496
28497         * socket-io.c (convert_sockopt_level_and_name): ifdef
28498         SO_ACCEPTCONN because it is not defined on my system (old debian)
28499
28500 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
28501
28502         * opcode.c: use stddef.h to get NULL.
28503
28504 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
28505
28506         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
28507         for FIONBIO, FIONREAD and SIOCATMARK.
28508         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
28509         define INADDR_NONE and besides, inet_addr() is deprecated and
28510         should not be used. Use inet_pton() instead - it also has the
28511         added bonus that it can easily handle IPv6 addresses as well.
28512         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
28513
28514 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
28515
28516         * decimal.c: remove _MSC_VER conditional.
28517
28518 2002-02-13  Dick Porter  <dick@ximian.com>
28519
28520         * socket-io.c: 
28521         * icall.c: Internal calls for Blocking, Select, Shutdown,
28522         GetSocketOption and SetSocketOption
28523
28524 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28525
28526         * assembly.cs: better resolver: use it instead of some kludgy
28527         code.
28528
28529 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
28530
28531         * reflection.c: the best way to speed-up the compiler is to avoid
28532         infinite loops.
28533
28534 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
28535
28536         * class.c (mono_class_vtable): changed the object layout
28537         (obj->vtable->class). 
28538         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
28539
28540 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28541
28542         * assembly.c: look for assemblies in the assembly dir, too.
28543
28544 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
28545
28546         * class.c: fix thinko in mono_class_from_type().
28547
28548 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28549
28550         * exception.h, exception.c: added TypeLoadException.
28551         * object.h, object.c: added mono_array_clone ().
28552         * icall.c: handle throwOnError in AssemblyGetType().
28553         Added Array.Clone().
28554         * opcode.h, opcode.c: use a single value for the opcode val.
28555         Compile fix for non-gcc compilers.
28556
28557 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
28558
28559         * opcodes.c, opcodes.h: export interesting info about opcodes.
28560
28561 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
28562
28563         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
28564         icalls. 
28565
28566         * class.c (class_compute_field_layout): set element_class for enums
28567         (mono_class_create_from_typedef): set element_class for normal classes
28568
28569         * icall.c (ves_icall_System_Enum_get_value): impl.
28570
28571         * class.c (mono_class_create_from_typedef): do not set valuetype
28572         flag for System.ValueType and System.Enum
28573
28574 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
28575
28576         * unicode.c (iconv_convert): fix big endian problem.
28577
28578 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
28579
28580         * class.c: add asserts if we are ever going to scribble over memory.
28581         * socket-io.c: not all systems have AF_IRDA defined.
28582
28583 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
28584
28585         * class.c (class_compute_field_layout): do not consider static
28586         fields to compute alignment
28587
28588 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
28589
28590         * appdomain.c (mono_appdomain_get): impl.
28591         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
28592
28593 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
28594
28595         * icall.c: ignore "file://" prefix when loading an assembly.
28596
28597 2002-01-23  Dick Porter  <dick@ximian.com>
28598
28599         * socket-io.c:
28600         * icall.c:
28601         * Makefile.am: Added socket support
28602
28603 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
28604
28605         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
28606         code back.  This should return the assemblies that are loaded by
28607         the runtime on behalf of an application domain. 
28608
28609         The current implementation is still broken, it just returns every
28610         assembly loaded, but until we get real applications domain this
28611         will do.
28612
28613 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
28614
28615         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
28616         AppDomain object.
28617
28618 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
28619
28620         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
28621         the mono_class_from_name lookup.
28622         (ves_icall_get_parameter_info): ditto.
28623         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
28624         method.
28625         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
28626
28627 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
28628
28629         * class.c: load also nested classes on class init.
28630         System.ValueType instance methods gets passed boxed
28631         values, unless methods in derived classed that get a pointer to the
28632         data.
28633         * icall.c: use better name parsing code in GetType().
28634         * image.c, image.h: add mono_image_loaded ().
28635         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
28636         * reflection.c, reflection.h: added mono_reflection_parse_type().
28637
28638 2002-01-22  Veronica De Santis <veron78@interfree.it>
28639
28640         * icall.c : Added mapping of internal calls for Manual and Auto reset events
28641         * threads.c : Added the implementation of internal calls for events
28642         * threads.h : Added prototypes of internal calls for events
28643         
28644 2002-01-21  Radek Doulik  <rodo@ximian.com>
28645
28646         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
28647
28648 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
28649
28650         * class.c (mono_class_init): set min_align to 1 (instead of 0)
28651         (mono_class_value_size): use min_align
28652
28653 2002-01-20  Dick Porter  <dick@ximian.com>
28654
28655         * threads.h:
28656         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
28657         so it compiles on w32.
28658
28659 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
28660
28661         * metadata.c (mono_type_stack_size): impl.
28662
28663         * class.c (mono_class_get_field): impl. memberref token
28664
28665 2002-01-16 Veronica De Santis <veron78@@interfree.it>
28666
28667         * icall.h : Added the internal calls mapping for CreateMutex_internal
28668                     and ReleaseMutex_internal.
28669         * threads.h : Added the prototype of mutexes internal calls.
28670         * threads.c : Added the implementations of mutexes internal calls.
28671
28672 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
28673
28674         * metaparse.h: removed unused file.
28675         * reflection.c, reflection.h: added stream_data_align () function 
28676         to align data in streams and keep stream aligned. Add support for
28677         exception support in method headers.
28678
28679 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
28680
28681         * unicode.c: make iconv_convert () return the number of bytess written
28682         in the output buffer.
28683
28684 2002-01-15  Dick Porter  <dick@ximian.com>
28685         * threads.c: Make the runtime's idea of infinite timeouts coincide
28686         with the class library's
28687
28688         Fix a particularly egregious bug in mono_thread_cleanup(). That
28689         code was so utterly bogus it must have been written on a Monday.
28690
28691 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
28692
28693         * reflection.h: add subtypes field to TypeBuilder.
28694         * reflection.c: encode constants for literal fields.
28695         Handle subtypes. Fix user string token (and add a zero byte)
28696         at the end.
28697         
28698 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
28699
28700         * class.c (mono_class_init): bug fix: assign slot numbers for
28701         abstract methods.
28702
28703 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
28704
28705         * reflection.c: don't try to output a code RVA for abstract methods.
28706         Small fixes for method header format. Output parameter info to the
28707         ParamDef table. Save method overriding info to MethodImpl table.
28708         Fix property support. Allow typedef.extends to be a type in the
28709         building assembly.
28710         * verify.c: fix off-by-one error.
28711
28712 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
28713
28714         * class.c: fix mono_class_from_mono_type () for szarray types.
28715         Remove unused cache check in mono_class_from_type_spec().
28716         * icall.c: *type_from_name () functions handle simple arrays and byref.
28717         * reflection.c: handle byref and szarray types. Handle methods without
28718         body (gets P/Invoke compilation working). Handle types and fields in
28719         get_token ().
28720         * reflection.h: add rank to MonoTypeInfo.
28721
28722 2002-01-10  Dick Porter  <dick@ximian.com>
28723
28724         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
28725         internal calls
28726
28727 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
28728
28729         * icall.c: initialize class in type_from_handle ().
28730         Loop also in parent classes for get_method ().
28731         * reflection.c: properly encode class and valuetype types.
28732         Start on encoding TypeBuilder types. Handle fieldrefs.
28733         Use correct length when registering a user string.
28734         Handle ConstructorBuilder and MonoMethod in get_token ().
28735         Make mono_type_get_object () aware of cached types.
28736         * object.c: back out change to mono_string_new ().
28737
28738 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
28739         * object.c: mono_string_new should return a NULL when the string 
28740         passed in is NULL -- not try to deference it.
28741         
28742 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
28743
28744         * icall.c: hack to make IsSubType work for TypeBuilders.
28745         * reflection.c: emit constructors before methods.
28746         Retrieve param names in mono_param_get_objects().
28747
28748 2002/01/05  Nick Drochak  <ndrochak@gol.com>
28749
28750         * Makefile.am: fix list of headers and sources so automake 1.5
28751         doesn't complain. Removed \# at end of list.
28752
28753 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
28754
28755         * reflection.c: get token for a method ref. Set return type of
28756         constructor to void.
28757         * loader.c: debug message.
28758         * class.c: typo fix.
28759
28760 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
28761
28762         * icall.c: fix array init with rank > 1. FindMembers
28763         loops in parent class as well.
28764         * image.c: do not insert nested types in name cache.
28765         * reflection.c: warning fix.
28766         * reflection.h: add override method (for interface impl).
28767
28768 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
28769
28770         * metadata.c: fix customattr decoding.
28771
28772 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
28773
28774         * rawbuffer.cs: Added native Win32 implementation, avoids using
28775         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
28776
28777 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
28778
28779         * class.c: make the low-level routines handle the cache.
28780
28781 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
28782
28783         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
28784
28785 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
28786
28787         * class.c: fix mono_array_element_size() for objects.
28788         * class.h, class.c: add properties to MonoClass and load them
28789         at init time.
28790         * icall.c: check with isinst() when assigning a value to an array
28791         instead of requiring the classes to match exactly.
28792         Implemented icall for System.Type::GetType().
28793         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
28794         enums. Handle bindingflags when looking for methods and fields.
28795         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
28796         and mono_metadata_methods_from_property().
28797         * reflection.h, reflection.c: added structures for propreties,
28798         parameters and enums. Implemented mono_property_get_object() and
28799         mono_param_get_objects().
28800
28801 2001-12-18  Dick Porter  <dick@ximian.com>
28802
28803         * file-io.c: Use mono_string_to_utf16() instead of
28804         mono_string_chars()
28805
28806         * object.c: Added mono_string_to_utf16(), which copies the non
28807         NULL-terminated MonoString into a new double-null-terminated
28808         buffer.
28809
28810 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
28811
28812         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
28813
28814 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
28815
28816         * file-io.c: raise exceptions if handle is invalid.
28817
28818 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
28819
28820         * assembly.c: yet another check for mscorlib.
28821         * class.c, class.h: load nesting info for classes.
28822         * icall.c: many new functions to support the Reflection classes.
28823         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
28824         * reflection.h, reflection.c: mono_image_create_token(),
28825         mono_assembly_get_object(), mono_type_get_object(),
28826         mono_method_get_object(), mono_field_get_object(): methods to return
28827         objects that parallel the C representation of assemblies, types,
28828         methods, fields.
28829
28830 2001-12-11  Dick Porter  <dick@ximian.com>
28831
28832         * icall.c:
28833         * file-io.c: Internal calls for file IO.
28834
28835 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
28836
28837         * tabledefs.h: missing FileAttributes.
28838         * verify.h, verify.c: use is_valid_string () to simplify and check for
28839         valid strings more correctly. Fix warnings and speeling.
28840         Check more tables: Filed, File, ModuleRef, StandAloneSig.
28841         Check code: branches, maxstack, method calls.
28842
28843 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
28844
28845         * object.c (mono_object_allocate): removed static, so that the jit
28846         can allocate value types.
28847
28848         * icall.c (ves_icall_System_DateTime_GetNow): impl.
28849
28850 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28851
28852         * class.c: init enum types right away and register the
28853         token->MonoClass map in mono_class_create_from_typedef ().
28854         * verify.h, verify.c: first cut of the verifier.
28855         * pedump.c: add --verify switch to verify metadata tables.
28856         * tabledefs.h: add some missing enums.
28857
28858 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
28859
28860         * class.c (mono_install_runtime_class_init): impl.
28861         (mono_class_init): renamed mono_class_metadata_init to
28862         mono_class_init, also removed the metadata_inited flag
28863
28864         * object.c (mono_object_isinst): use faster algorithm
28865
28866 2001-11-30  Radek Doulik  <rodo@ximian.com>
28867
28868         * mono-endian.h: reverted last change
28869         added function prototypes
28870
28871         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
28872         add mono-endian.c back
28873
28874         * mono-endian.c: returned back, as Paolo pointed out, it's needed
28875         for unaligned access, I've mistaked it with endianess. I am
28876         sorry.
28877         (mono_read16): fix reverted endianess
28878         (mono_read64): ditto
28879         (mono_read32): ditto
28880
28881 2001-11-30  Dick Porter  <dick@ximian.com>
28882
28883         * exception.c: Implement mono_exception_from_name()
28884
28885 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28886
28887         * metadata.h, metadata.c: remove params_size and locals_size and their
28888         calculation from the metadata code: they are only usefult to the
28889         interp.
28890
28891 2001-11-29  Radek Doulik  <rodo@ximian.com>
28892
28893         * object.c (mono_ldstr): swap bytes here, it's probably not the
28894         best place, but works for me now, I'll redo it once I know mono
28895         better, also note that I add PROT_WRITE and don't reset back, also
28896         note that it's only affects big endians, so x86 should be OK
28897
28898         * mono-endian.h (read16): use just glib macros for both endians
28899
28900         * mono-endian.c: removed as glib macros are used in in
28901         mono-endian.h so we don't need to care about endianess for read
28902         macros as glib does that for us already
28903
28904 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
28905
28906         * class.h, class.h: take minimum alignment into consideration so
28907         that the fields of a class remain aligned also when in an array.
28908
28909 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28910
28911         * loader.h, loader.c: add mono_method_get_param_names().
28912         * class.c: 0-init class fields.
28913
28914 2001-11-26  Dick Porter  <dick@ximian.com>
28915
28916         * icall.c:
28917         * threads-types.h:
28918         * threads.c: New file that handles System.Threading on all platforms
28919
28920         * object.c: 
28921         * object.h: Remove the synchronisation struct from MonoObject,
28922         replace it with a pointer that gets initialised on demand
28923
28924         * Makefile.am: Replace all the system-specific threading code with
28925         a single file that uses the new wrapper library
28926
28927 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
28928
28929         * class.c, class.h: add mono_install_trampoline() so that the runtime
28930         can register a function to create a trampoline: removes the ugly
28931         requirement that a runtime needed to export arch_create_jit_trampoline.
28932         * object.h, object.c: added mono_install_handler() so that the runtime
28933         can install an handler for exceptions generated in C code (with
28934         mono_raise_exception()). Added C struct for System.Delegate.
28935         * pedump.c: removed arch_create_jit_trampoline.
28936         * reflection.c: some cleanups to allow registering user strings and
28937         later getting a token for methodrefs and fieldrefs before the assembly
28938         is built.
28939         * row-indexes.h: updates and fixes from the new ECMA specs.
28940
28941 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
28942
28943         * class.h, class.c: add enum_basetype field to MonoClass.
28944         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
28945         to get index in the constant table reated to a field, param or
28946         property.
28947         * reflection.h, reflection.c: handle constructors. Set public-key and
28948         version number of the built assembly to 0.
28949         * row-indexes.h: update from new ECMA spec.
28950
28951 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28952
28953         * class.h, class.c: add a max_interface_id to MonoClass.
28954         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
28955         since it's used to do that. Added mono_type_type_from_obj().
28956         Make GetType() return NULL instead of segfaulting if the type was not
28957         found. Handle simple arrays in assQualifiedName.
28958         * object.h: add a struct to represent an Exception.
28959         * reflection.c: output call convention in method signature.
28960         Add code to support P/Invoke methods and fixed offsets for fields.
28961
28962 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
28963
28964         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
28965         the value.
28966         * icall.c: use mono_array_addr instead of array->vector: fixes the
28967         reflection image writing.
28968         * reflection.c: init call convention byte to 0 in method signature.
28969         Encode the property signature. Don't output property-related methods
28970         twice. Really process the properties for a type (don't cast a field to
28971         a property, my mom always told me that).
28972         Fix 64 bit issues in pointer alignment in a different and more
28973         readable way.
28974
28975 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
28976
28977         * loader.h: Removed type class from MonoDefaults, added monotype
28978
28979         * loader.c: Loaded MonoType, removed loading of Type
28980
28981         * icall.c (my_mono_new_object): Now returns a System.MonoType,
28982         and fills in System.Type._impl with a RuntimeTypeHandle rather
28983         than the actual MonoClass *
28984
28985         (ves_icall_type_from_handle): change from type_class to
28986         monotype_class
28987
28988         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
28989         implemented
28990
28991         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
28992         implemented
28993
28994         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
28995
28996         (ves_icall_System_Reflection_Assembly_GetType): implemented
28997
28998         (ves_icall_System_MonoType_assQualifiedName): implemented
28999
29000         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
29001
29002 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
29003
29004         * assembly.c (mono_assembly_open): Implement a cache for the
29005         assemblies. 
29006
29007         (mono_assembly_close): only destroy the assembly when the last
29008         reference is gone.
29009         
29010 2001-11-09  Dick Porter  <dick@ximian.com>
29011
29012         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
29013
29014 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
29015
29016         * class.c (mono_class_metadata_init): bug fix: compute the right slot
29017
29018 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
29019
29020         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
29021         from Martin Weindel.
29022         * object.h: add mono_string_chars ().
29023
29024 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
29025
29026         * reflection.c (build_compressed_metadata): Eliminates warnings
29027         and uses 64-bit clean code.
29028
29029         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
29030         (mono_type_equal): Change signature to eliminate warnings.
29031
29032 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
29033
29034         * icall.c, loader.c: remove the internalcall array constructors.
29035         Changes to match the new MonoArray structure.
29036         * object.h, object.c: an array object doesn't allocate an extra
29037         vector. Add mono_array_new_full () to create jagged arrays easily.
29038
29039 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
29040
29041         * metadata.h, metadata.c: add mono_metadata_field_info () to
29042         retreive all the info about a field from vairous tables.
29043         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
29044         * class.h, class.c: augment MonoClassField with more info.
29045         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
29046         policy and load a field's RVA if needed.
29047
29048 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
29049
29050         * class.c (mono_class_metadata_init): create a trampoline for all
29051         virtual functions instead of actually compiling them.
29052
29053 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
29054
29055         * class.h, class.c: include name in MonoClassField.
29056         * class.c: fix fundamental type of System.Object and System.String.
29057         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
29058         tokens in ldtoken.
29059         * icall.c: remove internalcalls for the Reflection stuff that is now
29060         done in C# code.
29061         * loader.c: mono_field_from_memberref () implementation.
29062         * mono-endian.c: thinko (s/struct/union/g).
29063         * object.c, object.h: make the mono_string_* prototypes actually use
29064         MonoString instead of MonoObject.
29065         * reflection.c, reflection.h: updates for changes in the reflection
29066         code in corlib: we use C structures that map to the actual C# classes.
29067         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
29068         fat method header if needed and use the info from the ILGenerator for
29069         methods. Handle fields in types. Misc fixes.
29070
29071 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
29072
29073         * class.c (mono_class_metadata_init): bug fix: always allocate
29074         space for static class data
29075
29076 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
29077
29078         * class.c (mono_compute_relative_numbering): use relative
29079         numbering to support fast runtime type checks.
29080
29081 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
29082
29083         * class.c (mono_class_create_from_typeref): added debugging output
29084         to print class name when MonoDummy is returned instead of real class
29085
29086 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
29087
29088         * class.c (mono_class_metadata_init): interface offset table now
29089         contains pointers into the vtable - this is more efficient for the jit
29090
29091 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
29092
29093         * class.c (mono_class_metadata_init): use a temporary vtable (the
29094         old algorithm only worked for the interpreter, but not for the jit)
29095
29096 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
29097
29098         * loader.c (method_from_memberref): use mono_class_get to get the
29099         class of an array instead of using System.Array directly.
29100         (mono_get_method): also add MEMBERREF methods to the method cache
29101         which usefull for arrays.
29102
29103 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
29104
29105         * pedump.c (arch_compile_method): added to compute vtable entry
29106
29107         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
29108         number of interfaces.
29109         
29110         * class.h: merged MonoArrayClass into MonoClass
29111
29112         * class.c (mono_class_create_from_typedef): compute the vtable size and
29113         allocate space to include the vtable inside MonoClass
29114         (mono_class_metadata_init): initialize the vtable
29115
29116 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
29117
29118         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
29119         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
29120         * image.c: endian fixes by Laurent Rioux.
29121         * object.h, object.c: rename MonoStringObject to MonoString and
29122         MonoArrayObject to MonoArray. Change some function names to conform to
29123         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
29124         guint16* as first argument, so don't use char*.
29125         Provide macros to do the interesting things on arrays in a portable way.
29126         * threads-pthread.c: updates for the API changes and #include <sched.h>
29127         (required for sched_yield()).
29128         * icall.c: updates for the API changes above.
29129         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
29130         platforms that need them.
29131
29132 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
29133
29134         * class.c: set the correct type for all the fundamental
29135         type when loading the class.
29136
29137 2001-10-05  Dick Porter  <dick@ximian.com>
29138
29139         * threads-pthread.c (pthread_mutex_timedlock): Simple
29140         compatibility version for C libraries that lack this call.
29141
29142 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
29143
29144         * class.c: MonoTypes stored in MonoClass are stored as
29145         fundamental MonoTypes when the class represents a
29146         fundamental type (System.Int32, ...).
29147         The TypeHandle return by ldtoken is a MonoType*.
29148         * icall.c: ves_icall_get_data_chunk () write out all the
29149         PE/COFF stuff. Implement ves_icall_define_method (),
29150         ves_icall_set_method_body (), ves_icall_type_from_handle ().
29151         * image.c: properly skip unknown streams.
29152         * loader.h, loader.c: add type_class to mono_defaults.
29153         * metadata.c, metadata.h: export compute_size () as
29154         mono_metadata_compute_size () with a better interface.
29155         Typo and C&P fixes.
29156         * pedump.c: don't try to print the entry point RVA if there is no entry point.
29157         * reflection.c, reflection.h: many cleanups, fixes, output method
29158         signatures and headers, typedef and typeref info, compress the metadata
29159         tables, output all the heap streams, cli header etc.
29160         * row-indexes.h: typo fixes.
29161
29162 2001-10-04  Dick Porter  <dick@ximian.com>
29163
29164         * object.h: Add a synchronisation mutex struct to MonoObject
29165
29166         * object.c (mono_new_object): Initialise the object
29167         synchronisation mutexes
29168
29169         * icall.c: System.Threading.Monitor internal calls
29170         
29171         * threads-pthread.h:
29172         * threads-pthread.c: System.Threading.Monitor internal calls
29173
29174         * threads-types.h: New file, includes the system-specific thread
29175         structures
29176         
29177         * threads-pthread-types.h:
29178         * threads-pthread-types.c: New files, handle pthread-specific
29179         synchronisation types
29180
29181         * threads-dummy-types.h: 
29182         * threads-dummy-types.c: New files of dummy support for
29183         thread-specific types
29184
29185         * metadata.c:
29186         * image.c:
29187         * pedump.c: include mono-endian.h not endian.h
29188         
29189         * Makefile.am: More threads files.
29190         Name mono-endian.h not endian.h
29191
29192 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
29193
29194         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
29195         stuff and implement a few more bits.
29196         * icall.c: a field needs to be dereferenced twice. Do not use the same
29197         name for two variables in the same scope.
29198         * image.c, image.h: cleanups.
29199
29200 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
29201
29202         * class.c (mono_class_metadata_init): bug fix: compute the right size
29203
29204 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
29205
29206         * icall.c: implemented some of the Reflection internalcalls.
29207         * image.c, image.h: start writing out the PE/COFF image.
29208         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
29209         that does the reverse than decode_blob_size ().
29210         * object.c: use mono_metadata_encode_value (). Move here
29211         temporary implementation of mono_string_to_utf8 ().
29212         * rawbuffer.c: make malloc_map static.
29213
29214 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
29215
29216         * metadata.c: fix type comparison for arrays.
29217         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
29218         Added a couple of new classes to monodefaults.
29219         * icall.c: added a couple of Reflection-related internalcalls.
29220         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
29221         Added a byval_arg MonoType to MonoClass.
29222
29223 2001-09-28  Dick Porter  <dick@ximian.com>
29224
29225         * icall.c:
29226         * threads-pthread.h: 
29227         * threads-pthread.c: Implemented internal calls for
29228         LocalDataStoreSlot operations.  Applied mutexes around all shared
29229         data.  Reworked the thread creation and Start() operations to
29230         avoid a race condition.
29231         
29232         * threads-dummy.h:
29233         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
29234
29235 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
29236
29237         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
29238
29239 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
29240
29241         * class.c, loader.c: warn and return NULL instead of erroring out.
29242         * icall.c: added System.AppDomain::getCurDomain().
29243         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
29244
29245 2001-09-25  Dick Porter  <dick@ximian.com>
29246
29247         * threads-pthread.h:
29248         * threads-pthread.c: Implemented timed thread joining and added
29249         System.Threading.Thread::Join_internal internal call
29250
29251         * icall.c: Added System.Threading.Thread::Join_internal internal call
29252
29253         * threads-dummy.h:
29254         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
29255
29256 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
29257
29258         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
29259         mono_string_intern () to implement the semantics of the ldstr opcode
29260         and the interning of System.Strings.
29261         * icall.c: provide hooks to make String::IsIntern and String::Intern
29262         internalcalls.
29263
29264 2001-09-23  Dick Porter  <dick@ximian.com>
29265
29266         * threads-dummy.c: 
29267         * threads-dummy.h: New files of dummy threading routines
29268
29269         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
29270         support code based on system specifics
29271
29272         Rename PTHREAD_LIBS to THREAD_LIBS
29273         
29274 2001-09-23  Dick Porter  <dick@ximian.com>
29275
29276         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
29277         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
29278         internal calls.
29279         (mono_thread_init): Set up a Thread object instance to return when
29280         the main thread calls Thread.CurrentThread
29281         (mono_thread_cleanup): Wait for all subthreads to exit
29282
29283         * icall.c: New internal calls for System.Threading.Thread::Sleep
29284         (including Schedule) and CurrentThread
29285
29286         * threads.h: New file, to insulate thread-specific stuff from the
29287         rest of the code
29288
29289 2001-09-21  Dick Porter  <dick@ximian.com>
29290
29291         * threads-pthread.h: 
29292         * threads-pthread.c: New file, for handling pthreads-style
29293         threading support.  Start() now starts a new thread and executes
29294         the ThreadStart delegate instance.
29295
29296         * icall.c: Added the internalcall for
29297         System.Threading.Thread::Start_internal
29298
29299         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
29300
29301 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
29302
29303         * loader.c: work around the different signatures for delegates
29304         constructors csc generates in compiled code vs the ones compiled in mscorlib.
29305
29306 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
29307
29308         * class.h, class.c: add mono_class_get_field_from_name ().
29309         * *: Fix C comments and other ANSI C issues.
29310
29311 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
29312
29313         * endian.h, assembly.c: fix some endianness issues.
29314
29315 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
29316
29317         * loader.h, load.c: add delegate_class to mono_defaults.
29318         Handle runtime provided methods in mono_get_method ().
29319
29320 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
29321
29322         * loader.c (mono_get_method): use pinvoke for internal call
29323
29324         * icall.c: use pinvoke for internal call
29325
29326         * loader.c (method_from_memberref): set the method name
29327
29328 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
29329
29330         * metadata.c: help the compiler generate better code for
29331         mono_class_from_mono_type ().
29332
29333 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
29334
29335         * class.c (mono_class_metadata_init): delayed computing of the
29336         class size to mono_class_metadata_init ()
29337
29338 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
29339
29340         * class.c, class.h: add an interfaces member to MonoClass.
29341         * image.c, image.h: add assembly_name field to MonoImage
29342         from the assembly table.
29343         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
29344
29345 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
29346
29347         * class.c: Handle Array in mono_class_from_mono_type ().
29348         * metadata.c, pedump.c: some endian fixes.
29349
29350 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
29351
29352         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
29353         * metadata.c: fix small problem introduced with the latest commit.
29354
29355 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
29356
29357         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
29358         We don't need a MonoMetadata pointer anymore to compare signatures in
29359         mono_metadata_signature_equal (), update callers.
29360         Reduced memory usage an number of allocations for MonoMethodHeader and
29361         MonoMethodSignature.
29362
29363 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
29364
29365         * metadata.c: added compare for szarray.
29366
29367 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
29368
29369         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
29370         and add a couple more types to it and mono_defaults. Give an hint on
29371         classes that need implementing in our corlib and are referenced
29372         in mscorlib.
29373
29374 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
29375
29376         * class.h, class.c: keep track if a class is also an Enum.
29377         * loader.c: Implement a couple more types for use in libffi
29378         marshalling. Gives better diagnostics when failing to dlopen
29379         a library. Set method->klass for P/Invoke methods, too.
29380
29381 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
29382
29383         * class.c, class.h: add a MonoType this_arg to MonoClass that
29384         represents a pointer to an object of the class' type that
29385         can be used by the interpreter and later the type cache.
29386         Add best guess alignment info for valuetype objects.
29387
29388 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
29389
29390         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
29391         into MonoType: one less level of indirection and allocation and
29392         simplifies quite a bit of code. Added cache for MonoTypes that are
29393         used frequently, so that we don't need to allocate them all the time.
29394
29395 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
29396
29397         * class.c (mono_class_create_from_typedef): System.Enum is also a
29398         value type, although it does not derive from System.ValueType
29399         (maybe a bug in the ms compiler?)
29400
29401         * metadata.c (mono_type_size): return the right size for value types
29402
29403         * loader.c (mono_get_method): only initialize method header if not abstract
29404
29405         * class.c (mono_class_from_mono_type): use mono_default values. 
29406
29407 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
29408
29409         * *: use MonoClass pointers instead of <type_tokens>
29410         
29411         * class.h: new flag: metadata_inited.
29412
29413         * class.c (mono_class_metadata_init): impl.
29414         (mono_class_instance_size): impl.
29415         (mono_class_data_size): impl.
29416
29417 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
29418
29419         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
29420         MonoClass now has the name and name_space fields. 
29421         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
29422         mono_get_method () takes and optional MonoClass as argument.
29423         Removed mono_typedef_from_name() and added mono_class_token_from_name()
29424         instead that takes advantage of a map from class names to typedef
29425         tokens in MonoImage.
29426
29427 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
29428
29429         * metadata.c: zero is not a valid alignment boundary.
29430         Merge MONO_TYPE_VOID in default decoding code.
29431
29432 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
29433
29434         * image.h: merged MonoMetadata into MonoImage
29435
29436         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
29437         identify the type of elements.
29438
29439 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
29440
29441         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
29442         * cil-coff.h: split MonoMSDOSHeader and add size info.
29443         * image.c: add some consistency checks.
29444         * metadata.c: fix row size computation: one programmer
29445         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
29446         add explanation for the locator routine.
29447         Fix decoding of size in method header.
29448         
29449 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
29450
29451         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
29452         (g_concat_dir_and_file): Bring g_concat_dir_and_file
29453         function from gnome-libs.  This uses the right path separator
29454         based on the OS, and also works around a bug in some systems where
29455         a double slash is not allowed. 
29456         (default_assembly_name_resolver): Use g_concat_dir_and_file
29457         (mono_assembly_open): ditto.
29458
29459 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
29460
29461         * metadata.c (mono_metadata_signature_equal): impl.
29462
29463         * *: void is now a realy MonoType (instead of using NULL)
29464         
29465         * metadata.c (do_mono_metadata_parse_type): use
29466         mono_metadata_parse_type to parse void value.
29467
29468 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
29469
29470         * metadata.c, metadata.h: in the signature and method header store
29471         only the space required for holding the loca vars and incoming arguments.
29472
29473 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
29474
29475         * metadata.c (do_mono_metadata_parse_type): treat void like any
29476         other type (instead of assigning NULL);
29477
29478 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
29479
29480         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
29481
29482 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
29483
29484         * image.c (do_mono_image_open): added a cache for arrays.
29485
29486 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
29487
29488         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
29489         decode a single column from a row in a metadata table and changes
29490         to take advantage of it in the typedef locator (gives a nice speed up).
29491         Store offset info for function params.
29492
29493 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
29494
29495         * image.h (MONO_IMAGE_IS_CORLIB): removed 
29496
29497 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
29498
29499         * assembly.c: how could mono_assembly_close () had ever worked?
29500         * metadata.c, metadata.h: provide offset info for local vars.
29501         Implement mono_type_size () to take care of alignment as well
29502         as size (it was mono_field_type_size in cli/class.c before).
29503
29504 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
29505
29506         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
29507
29508         * assembly.h (CORLIB_NAME): set to corlib.dll
29509
29510         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
29511
29512 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
29513
29514         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
29515         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
29516         tokentype.h: massive namespace cleanup.
29517
29518 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
29519
29520         * metadata.h, metadata.c: decode exception clauses when parsing method header.
29521
29522 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
29523
29524         * metadata.c (mono_metadata_free_type): added check for type !=
29525         NULL (void) before calling mono_metadata_free_type()
29526
29527 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
29528
29529         * metadata.h, row_indexes.h: added header with enumerations to use
29530         to index in the columns from tables in metadata and to decode coded
29531         tokens: we should start using this instead of embedding magic numbers
29532         all over the code.
29533
29534 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
29535
29536         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
29537         Move metadata_t info from cli_image_info_t to MonoImage, where
29538         it's easily accessible. Changed all the uses accordingly.
29539         Added the method and class caches to MonoImage.
29540         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
29541         and mono_metadata_decode_value () signature to be more consistent
29542         with the other parse functions (and simplify code). Taken advantage
29543         of zero-length array allocation with GCC. Removed reduntant (and
29544         wrong) MonoFieldType struct and use MonoParam instead. Changed
29545         mono_metadata_parse_field_type () to use common code for parsing.
29546         Added mono_metadata_typedef_from_field () and
29547         mono_metadata_typedef_from_method () to lookup a typedef index from a
29548         field or method token.
29549         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
29550
29551 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
29552
29553         * metadata.c (mono_metadata_parse_field_type): Implement. 
29554         (do_mono_metadata_parse_type): Split engine from
29555         mono_metadata_parse_type, so that we can create smaller structures
29556         for things that just have one pointer to the MonoType (look at
29557         the MonoFieldType)
29558
29559 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
29560
29561         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
29562         as Jan Gray found out, it is incorrect. 
29563
29564 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
29565
29566         * assembly.c: Implement asssembly loading.  This loads an image
29567         and loads all the referenced assemblies.  Come to think of it, we
29568         could always do lazy loading of the assemblies. 
29569
29570         * image.c (mono_image_open): Keep loaded images in a hashtable.
29571
29572         * image.h (MonoImage): Add reference count.
29573
29574 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
29575
29576         * assembly.c (mono_assembly_open): Keep track of the file name in
29577         case the assembly has no ASSEMBLY table.
29578
29579         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
29580         from get.c here.
29581
29582 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
29583
29584         * metadata.c, metadata.h: decode local vars in method header
29585         parse function. Change callers accordingly.
29586
29587 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
29588
29589         * metadata.h, cil-coff.h: protect against multiple inclusion.
29590         Added some new structures to hold information decoded from metadata:
29591         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
29592         and relevant decoding/free functions.
29593         * metadata.c: implement decoding functions. Add warning for out of bounds
29594         index in mono_metadata_locate(). Implement mono_get_method () to retreive
29595         all the info about a method signature and invocation. Remove check on
29596         uninitialized local var in parse_mh() and fix memory leak.
29597
29598 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
29599
29600         * metadata.h: More macros.
29601
29602         * tokentype.h: New file.
29603
29604 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
29605
29606         * assembly.c: added a consistency check and initialize
29607         some structures with g_new0().
29608         * metadata.c: fixed a couple more bugs in table size computation
29609         and add other checks for out-of bound access to metadata.
29610
29611 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
29612
29613         * metatada.c: fix bugs computing table sizes. Spew a
29614         warning when index in string heap is out of bounds.
29615
29616 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
29617
29618         * metadata.h: Add a couple of macros to manipulate tokens. 
29619
29620 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
29621
29622         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
29623         cli_section_tables).
29624
29625 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
29626
29627         * metadata.c (mono_metadata_user_string): New function, provides
29628         access to the UserString heap. 
29629
29630 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
29631
29632         * metadata.c: Add inline documentation.
29633
29634 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
29635
29636         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
29637         files. 
29638
29639 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
29640
29641         * typeattr.h: New file, TypeAttribute flags. 
29642
29643 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
29644
29645         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
29646         mono_assembly_ensure_section): Section loading code.
29647         (load_section_tables): Load the sections.
29648
29649         * mono/metadata/metadata.c (mono_metadata_locate_token,
29650         mono_metadata_locate): Functions to locate the information
29651         definition given a token or a table and an index.
29652         (mono_metadata_compute_table_bases): New.
29653         (compute_size): New function to compute the sizes of the various
29654         tables.
29655
29656         * mono/metadata/metadata.h: Finish listing the different index
29657         types. 
29658
29659         * mono/metadata/pedump.c: Improve to dump new information.
29660
29661 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
29662
29663         * mono/metadata/metadata.c: Entered all the tables matching
29664         Beta2. 
29665
29666         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
29667
29668
29669
29670